diff options
author | Vladimir Saveliev | 2007-10-16 10:25:14 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-10-16 18:42:56 +0200 |
commit | ba9d8cec6c7165e440f9b2413a0464cf3c12fb25 (patch) | |
tree | 7fc05b10cdd18da51fce987b3323754ecdc53973 /fs/reiserfs/ioctl.c | |
parent | reiserfs: use generic write (diff) | |
download | kernel-qcow2-linux-ba9d8cec6c7165e440f9b2413a0464cf3c12fb25.tar.gz kernel-qcow2-linux-ba9d8cec6c7165e440f9b2413a0464cf3c12fb25.tar.xz kernel-qcow2-linux-ba9d8cec6c7165e440f9b2413a0464cf3c12fb25.zip |
reiserfs: convert to new aops
Convert reiserfs to new aops
Signed-off-by: Vladimir Saveliev <vs@namesys.com>
Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs/ioctl.c')
-rw-r--r-- | fs/reiserfs/ioctl.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/reiserfs/ioctl.c b/fs/reiserfs/ioctl.c index 11a0fcc2d402..c438a8f83f26 100644 --- a/fs/reiserfs/ioctl.c +++ b/fs/reiserfs/ioctl.c @@ -128,6 +128,10 @@ long reiserfs_compat_ioctl(struct file *file, unsigned int cmd, } #endif +int reiserfs_commit_write(struct file *f, struct page *page, + unsigned from, unsigned to); +int reiserfs_prepare_write(struct file *f, struct page *page, + unsigned from, unsigned to); /* ** reiserfs_unpack ** Function try to convert tail from direct item into indirect. @@ -175,15 +179,13 @@ static int reiserfs_unpack(struct inode *inode, struct file *filp) if (!page) { goto out; } - retval = - mapping->a_ops->prepare_write(NULL, page, write_from, write_from); + retval = reiserfs_prepare_write(NULL, page, write_from, write_from); if (retval) goto out_unlock; /* conversion can change page contents, must flush */ flush_dcache_page(page); - retval = - mapping->a_ops->commit_write(NULL, page, write_from, write_from); + retval = reiserfs_commit_write(NULL, page, write_from, write_from); REISERFS_I(inode)->i_flags |= i_nopack_mask; out_unlock: |