diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-09-23 13:37:09 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-09-25 12:08:25 -0400 |
commit | 5b0830cb9085f4b69f9d57d7f3aaff322ffbec26 (patch) | |
tree | 10040eb359269d4cd05487790b758144a69e8e39 /fs/fs-writeback.c | |
parent | 71fd05a887e0f3f6bfff76ff81b33776177d0606 (diff) |
writeback: get rid to incorrect references to pdflush in comments
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'fs/fs-writeback.c')
-rw-r--r-- | fs/fs-writeback.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 15e375bf93e6..15944f754e15 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -320,7 +320,7 @@ static bool inode_dirtied_after(struct inode *inode, unsigned long t) | |||
320 | * For inodes being constantly redirtied, dirtied_when can get stuck. | 320 | * For inodes being constantly redirtied, dirtied_when can get stuck. |
321 | * It _appears_ to be in the future, but is actually in distant past. | 321 | * It _appears_ to be in the future, but is actually in distant past. |
322 | * This test is necessary to prevent such wrapped-around relative times | 322 | * This test is necessary to prevent such wrapped-around relative times |
323 | * from permanently stopping the whole pdflush writeback. | 323 | * from permanently stopping the whole bdi writeback. |
324 | */ | 324 | */ |
325 | ret = ret && time_before_eq(inode->dirtied_when, jiffies); | 325 | ret = ret && time_before_eq(inode->dirtied_when, jiffies); |
326 | #endif | 326 | #endif |
@@ -1085,9 +1085,6 @@ EXPORT_SYMBOL(__mark_inode_dirty); | |||
1085 | * If older_than_this is non-NULL, then only write out inodes which | 1085 | * If older_than_this is non-NULL, then only write out inodes which |
1086 | * had their first dirtying at a time earlier than *older_than_this. | 1086 | * had their first dirtying at a time earlier than *older_than_this. |
1087 | * | 1087 | * |
1088 | * If we're a pdlfush thread, then implement pdflush collision avoidance | ||
1089 | * against the entire list. | ||
1090 | * | ||
1091 | * If `bdi' is non-zero then we're being asked to writeback a specific queue. | 1088 | * If `bdi' is non-zero then we're being asked to writeback a specific queue. |
1092 | * This function assumes that the blockdev superblock's inodes are backed by | 1089 | * This function assumes that the blockdev superblock's inodes are backed by |
1093 | * a variety of queues, so all inodes are searched. For other superblocks, | 1090 | * a variety of queues, so all inodes are searched. For other superblocks, |