From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Piggin Subject: [patch 28/44] bfs convert to new aops Date: Tue, 24 Apr 2007 11:24:14 +1000 Message-ID: <20070424013437.075253000@suse.de> References: <20070424012346.696840000@suse.de> Cc: Linux Filesystems , Mark Fasheh , tigran@aivazian.fsnet.co.uk To: Andrew Morton Return-path: Received: from ns2.suse.de ([195.135.220.15]:50575 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161615AbXDXFVF (ORCPT ); Tue, 24 Apr 2007 01:21:05 -0400 Content-Disposition: inline; filename=fs-bfs-aops.patch Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Cc: tigran@aivazian.fsnet.co.uk Cc: Linux Filesystems Signed-off-by: Nick Piggin fs/bfs/file.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) Index: linux-2.6/fs/bfs/file.c =================================================================== --- linux-2.6.orig/fs/bfs/file.c +++ linux-2.6/fs/bfs/file.c @@ -145,9 +145,13 @@ static int bfs_readpage(struct file *fil return block_read_full_page(page, bfs_get_block); } -static int bfs_prepare_write(struct file *file, struct page *page, unsigned from, unsigned to) +static int bfs_write_begin(struct file *file, struct address_space *mapping, + loff_t pos, unsigned len, unsigned flags, + struct page **pagep, void **fsdata) { - return block_prepare_write(page, from, to, bfs_get_block); + *pagep = NULL; + return block_write_begin(file, mapping, pos, len, flags, + pagep, fsdata, bfs_get_block); } static sector_t bfs_bmap(struct address_space *mapping, sector_t block) @@ -159,8 +163,8 @@ const struct address_space_operations bf .readpage = bfs_readpage, .writepage = bfs_writepage, .sync_page = block_sync_page, - .prepare_write = bfs_prepare_write, - .commit_write = generic_commit_write, + .write_begin = bfs_write_begin, + .write_end = generic_write_end, .bmap = bfs_bmap, }; --