[XFS] Remove unused wbc parameter from xfs_start_page_writeback()

SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31057a

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
This commit is contained in:
Denys Vlasenko 2008-05-19 16:34:11 +10:00 committed by Niv Sardi
parent 4f0e8a9816
commit b41759cf11
1 changed files with 2 additions and 3 deletions

View File

@ -409,7 +409,6 @@ xfs_start_buffer_writeback(
STATIC void STATIC void
xfs_start_page_writeback( xfs_start_page_writeback(
struct page *page, struct page *page,
struct writeback_control *wbc,
int clear_dirty, int clear_dirty,
int buffers) int buffers)
{ {
@ -858,7 +857,7 @@ xfs_convert_page(
done = 1; done = 1;
} }
} }
xfs_start_page_writeback(page, wbc, !page_dirty, count); xfs_start_page_writeback(page, !page_dirty, count);
} }
return done; return done;
@ -1130,7 +1129,7 @@ xfs_page_state_convert(
SetPageUptodate(page); SetPageUptodate(page);
if (startio) if (startio)
xfs_start_page_writeback(page, wbc, 1, count); xfs_start_page_writeback(page, 1, count);
if (ioend && iomap_valid) { if (ioend && iomap_valid) {
offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >> offset = (iomap.iomap_offset + iomap.iomap_bsize - 1) >>