aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2012-03-09 10:26:22 -0500
committerFengguang Wu <fengguang.wu@intel.com>2012-03-21 03:27:08 -0400
commit697e6fed9fc620eb6c79ebcfe6865b66773c0221 (patch)
treed0fd15a889d49ce7ccdc71fa9942fb88a29bfd96 /fs
parentf469ec9c5b95dfed60d5d628e1a8cecfc1f92d7a (diff)
writeback: Remove outdated comment
The comment is hopelessly outdated and misplaced. We no longer have 'bdi' part of writeback work, the comment about blockdev super is outdated, comment about throttling as well. Information about list handling is in more detail at queue_io(). So just move the bit about older_than_this to close to move_expired_inodes() and remove the rest. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/fs-writeback.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
index f60297ba4912..be84e28d62af 100644
--- a/fs/fs-writeback.c
+++ b/fs/fs-writeback.c
@@ -256,7 +256,8 @@ static bool inode_dirtied_after(struct inode *inode, unsigned long t)
256} 256}
257 257
258/* 258/*
259 * Move expired dirty inodes from @delaying_queue to @dispatch_queue. 259 * Move expired (dirtied after work->older_than_this) dirty inodes from
260 * @delaying_queue to @dispatch_queue.
260 */ 261 */
261static int move_expired_inodes(struct list_head *delaying_queue, 262static int move_expired_inodes(struct list_head *delaying_queue,
262 struct list_head *dispatch_queue, 263 struct list_head *dispatch_queue,
@@ -1148,23 +1149,6 @@ out_unlock_inode:
1148} 1149}
1149EXPORT_SYMBOL(__mark_inode_dirty); 1150EXPORT_SYMBOL(__mark_inode_dirty);
1150 1151
1151/*
1152 * Write out a superblock's list of dirty inodes. A wait will be performed
1153 * upon no inodes, all inodes or the final one, depending upon sync_mode.
1154 *
1155 * If older_than_this is non-NULL, then only write out inodes which
1156 * had their first dirtying at a time earlier than *older_than_this.
1157 *
1158 * If `bdi' is non-zero then we're being asked to writeback a specific queue.
1159 * This function assumes that the blockdev superblock's inodes are backed by
1160 * a variety of queues, so all inodes are searched. For other superblocks,
1161 * assume that all inodes are backed by the same queue.
1162 *
1163 * The inodes to be written are parked on bdi->b_io. They are moved back onto
1164 * bdi->b_dirty as they are selected for writing. This way, none can be missed
1165 * on the writer throttling path, and we get decent balancing between many
1166 * throttled threads: we don't want them all piling up on inode_sync_wait.
1167 */
1168static void wait_sb_inodes(struct super_block *sb) 1152static void wait_sb_inodes(struct super_block *sb)
1169{ 1153{
1170 struct inode *inode, *old_inode = NULL; 1154 struct inode *inode, *old_inode = NULL;