提交 eedcbba5 编写于 作者: N Nick Piggin 提交者: Linus Torvalds

bfs: convert to new aops

Signed-off-by: NNick Piggin <npiggin@suse.de>
Cc: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 d6091b72
...@@ -145,9 +145,13 @@ static int bfs_readpage(struct file *file, struct page *page) ...@@ -145,9 +145,13 @@ static int bfs_readpage(struct file *file, struct page *page)
return block_read_full_page(page, bfs_get_block); 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) static sector_t bfs_bmap(struct address_space *mapping, sector_t block)
...@@ -159,8 +163,8 @@ const struct address_space_operations bfs_aops = { ...@@ -159,8 +163,8 @@ const struct address_space_operations bfs_aops = {
.readpage = bfs_readpage, .readpage = bfs_readpage,
.writepage = bfs_writepage, .writepage = bfs_writepage,
.sync_page = block_sync_page, .sync_page = block_sync_page,
.prepare_write = bfs_prepare_write, .write_begin = bfs_write_begin,
.commit_write = generic_commit_write, .write_end = generic_write_end,
.bmap = bfs_bmap, .bmap = bfs_bmap,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册