From: David Howells Date: Tue, 29 Aug 2006 18:06:03 +0000 (+0100) Subject: [PATCH] BLOCK: Don't call block_sync_page() from AFS [try #6] X-Git-Tag: v2.6.19-rc1~640^2~19 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;ds=sidebyside;h=65e6f5bc8149165efb9d7bdbd142bb837d5edfeb;p=safe%2Fjmp%2Flinux-2.6 [PATCH] BLOCK: Don't call block_sync_page() from AFS [try #6] The AFS filesystem no longer needs to override its sync_page() op. Signed-Off-By: David Howells Signed-off-by: Jens Axboe --- diff --git a/fs/afs/file.c b/fs/afs/file.c index 67d6634..0226456 100644 --- a/fs/afs/file.c +++ b/fs/afs/file.c @@ -37,7 +37,6 @@ struct inode_operations afs_file_inode_operations = { const struct address_space_operations afs_fs_aops = { .readpage = afs_file_readpage, - .sync_page = block_sync_page, .set_page_dirty = __set_page_dirty_nobuffers, .releasepage = afs_file_releasepage, .invalidatepage = afs_file_invalidatepage,