summaryrefslogtreecommitdiffstats
path: root/fs/afs/file.c
diff options
context:
space:
mode:
authorNick Piggin2008-10-16 07:04:32 +0200
committerLinus Torvalds2008-10-16 20:21:48 +0200
commit15b4650e55e06d2cc05115767551cd3ace875431 (patch)
tree5542e01b8651140b707b6b9ebe81acb6e6ca41b3 /fs/afs/file.c
parentedac i5000: fix thermal issues (diff)
downloadkernel-qcow2-linux-15b4650e55e06d2cc05115767551cd3ace875431.tar.gz
kernel-qcow2-linux-15b4650e55e06d2cc05115767551cd3ace875431.tar.xz
kernel-qcow2-linux-15b4650e55e06d2cc05115767551cd3ace875431.zip
afs: convert to new aops
Cannot assume writes will fully complete, so this conversion goes the easy way and always brings the page uptodate before the write. [dhowells@redhat.com: style tweaks] Signed-off-by: Nick Piggin <npiggin@suse.de> Acked-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/afs/file.c')
-rw-r--r--fs/afs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/afs/file.c b/fs/afs/file.c
index 525f7c56e068..a3901769a96c 100644
--- a/fs/afs/file.c
+++ b/fs/afs/file.c
@@ -50,8 +50,8 @@ const struct address_space_operations afs_fs_aops = {
.launder_page = afs_launder_page,
.releasepage = afs_releasepage,
.invalidatepage = afs_invalidatepage,
- .prepare_write = afs_prepare_write,
- .commit_write = afs_commit_write,
+ .write_begin = afs_write_begin,
+ .write_end = afs_write_end,
.writepage = afs_writepage,
.writepages = afs_writepages,
};