From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Howells Subject: [PATCH 05/18] [PATCH] BLOCK: Don't call block_sync_page() from AFS [try #3] Date: Fri, 25 Aug 2006 15:49:27 +0100 Message-ID: <20060825144927.30722.8247.stgit@warthog.cambridge.redhat.com> References: <20060825144916.30722.90944.stgit@warthog.cambridge.redhat.com> Content-Type: text/plain; charset=utf-8; format=fixed Content-Transfer-Encoding: 8bit Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, dhowells@redhat.com Return-path: Received: from mx1.redhat.com ([66.187.233.31]:14977 "EHLO mx1.redhat.com") by vger.kernel.org with ESMTP id S1030207AbWHYOtm (ORCPT ); Fri, 25 Aug 2006 10:49:42 -0400 To: axboe@kernel.dk In-Reply-To: <20060825144916.30722.90944.stgit@warthog.cambridge.redhat.com> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: David Howells The AFS filesystem specifies block_sync_page() as its sync_page address op, which needs to be checked, and so is commented out for the moment. Signed-Off-By: David Howells --- fs/afs/file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/afs/file.c b/fs/afs/file.c index 67d6634..e1ba855 100644 --- a/fs/afs/file.c +++ b/fs/afs/file.c @@ -37,7 +37,7 @@ struct inode_operations afs_file_inode_o const struct address_space_operations afs_fs_aops = { .readpage = afs_file_readpage, - .sync_page = block_sync_page, +// .sync_page = block_sync_page, .set_page_dirty = __set_page_dirty_nobuffers, .releasepage = afs_file_releasepage, .invalidatepage = afs_file_invalidatepage,