diff options
author | Dave Chinner <dchinner@redhat.com> | 2010-06-08 20:37:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-06-08 21:12:44 -0400 |
commit | 254c8c2dbf0e06a560a5814eb90cb628adb2de66 (patch) | |
tree | 6bcd10add0b85cf43cad8e72b6d4525c5a63b264 /fs/xfs | |
parent | 0b5649278e39a068aaf91399941bab1b4a4a3cc2 (diff) |
xfs: remove nr_to_write writeback windup.
Now that the background flush code has been fixed, we shouldn't need to
silently multiply the wbc->nr_to_write to get good writeback. Remove
that code.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_aops.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c index a0fa3bf0d1bb..34640d6dbdcb 100644 --- a/fs/xfs/linux-2.6/xfs_aops.c +++ b/fs/xfs/linux-2.6/xfs_aops.c | |||
@@ -1381,14 +1381,6 @@ xfs_vm_writepage( | |||
1381 | if (!page_has_buffers(page)) | 1381 | if (!page_has_buffers(page)) |
1382 | create_empty_buffers(page, 1 << inode->i_blkbits, 0); | 1382 | create_empty_buffers(page, 1 << inode->i_blkbits, 0); |
1383 | 1383 | ||
1384 | |||
1385 | /* | ||
1386 | * VM calculation for nr_to_write seems off. Bump it way | ||
1387 | * up, this gets simple streaming writes zippy again. | ||
1388 | * To be reviewed again after Jens' writeback changes. | ||
1389 | */ | ||
1390 | wbc->nr_to_write *= 4; | ||
1391 | |||
1392 | /* | 1384 | /* |
1393 | * Convert delayed allocate, unwritten or unmapped space | 1385 | * Convert delayed allocate, unwritten or unmapped space |
1394 | * to real space and flush out to disk. | 1386 | * to real space and flush out to disk. |