[PATCH 40/45] writeback: requeue_io_wait() on I_SYNC locked inode

From: Wu Fengguang
Date: Wed Oct 07 2009 - 04:09:52 EST


Use requeue_io_wait() if inode is being synced by others.
This queue won't be busy retried, so avoids busy loops.

Cc: Jan Kara <jack@xxxxxxx>
Cc: Michael Rubin <mrubin@xxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Signed-off-by: Fengguang Wu <wfg@xxxxxxxxxxxxxxxx>
---
fs/fs-writeback.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

--- linux.orig/fs/fs-writeback.c 2009-10-07 14:32:51.000000000 +0800
+++ linux/fs/fs-writeback.c 2009-10-07 14:32:52.000000000 +0800
@@ -526,14 +526,14 @@ writeback_single_inode(struct inode *ino
if (inode->i_state & I_SYNC) {
/*
* If this inode is locked for writeback and we are not doing
- * writeback-for-data-integrity, move it to b_more_io so that
- * writeback can proceed with the other inodes on s_io.
+ * writeback-for-data-integrity, move it to b_more_io_wait so
+ * that writeback can proceed with the other inodes on b_io.
*
* We'll have another go at writing back this inode when we
* completed a full scan of b_io.
*/
if (!wait) {
- requeue_io(inode);
+ requeue_io_wait(inode);
return 0;
}



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/