diff options
| author | Richard Kennedy <[email protected]> | 2010-05-24 21:32:38 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2010-05-25 15:07:00 +0000 |
| commit | 58a9d3d8db06ca2ec31f64ec49ab0aeb89971b85 (patch) | |
| tree | 70c695b6473d4d25b32a2946e053742f6c49755e /fs/fs-writeback.c | |
| parent | mm: introduce free_pages_prepare() (diff) | |
| download | kernel-58a9d3d8db06ca2ec31f64ec49ab0aeb89971b85.tar.gz kernel-58a9d3d8db06ca2ec31f64ec49ab0aeb89971b85.zip | |
fs-writeback: check sync bit earlier in inode_wait_for_writeback
When wb_writeback() hasn't written anything it will re-acquire the inode
lock before calling inode_wait_for_writeback.
This change tests the sync bit first so that is doesn't need to drop &
re-acquire the lock if the inode became available while wb_writeback() was
waiting to get the lock.
Signed-off-by: Richard Kennedy <[email protected]>
Cc: Alexander Viro <[email protected]>
Cc: Jens Axboe <[email protected]>
Cc: Wu Fengguang <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/fs-writeback.c')
| -rw-r--r-- | fs/fs-writeback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 5c4161f1fd9a..ea8592b90696 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -409,11 +409,11 @@ static void inode_wait_for_writeback(struct inode *inode) wait_queue_head_t *wqh; wqh = bit_waitqueue(&inode->i_state, __I_SYNC); - do { + while (inode->i_state & I_SYNC) { spin_unlock(&inode_lock); __wait_on_bit(wqh, &wq, inode_wait, TASK_UNINTERRUPTIBLE); spin_lock(&inode_lock); - } while (inode->i_state & I_SYNC); + } } /* |
