diff options
author | Nick Piggin <npiggin@suse.de> | 2007-10-16 04:25:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:42:55 -0400 |
commit | 800d15a53e7d14fa26495b7b95d3bfe7877dd69d (patch) | |
tree | 09a59e32043f1b601b73ad6105e7634679337884 /fs/sysfs/inode.c | |
parent | 674b892ede247ef4fb8d00918f02e29c32b9bbaf (diff) |
implement simple fs aops
Implement new aops for some of the simpler filesystems.
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/sysfs/inode.c')
-rw-r--r-- | fs/sysfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/sysfs/inode.c b/fs/sysfs/inode.c index 9236635111f4..c4ef945d39c8 100644 --- a/fs/sysfs/inode.c +++ b/fs/sysfs/inode.c | |||
@@ -24,8 +24,8 @@ extern struct super_block * sysfs_sb; | |||
24 | 24 | ||
25 | static const struct address_space_operations sysfs_aops = { | 25 | static const struct address_space_operations sysfs_aops = { |
26 | .readpage = simple_readpage, | 26 | .readpage = simple_readpage, |
27 | .prepare_write = simple_prepare_write, | 27 | .write_begin = simple_write_begin, |
28 | .commit_write = simple_commit_write | 28 | .write_end = simple_write_end, |
29 | }; | 29 | }; |
30 | 30 | ||
31 | static struct backing_dev_info sysfs_backing_dev_info = { | 31 | static struct backing_dev_info sysfs_backing_dev_info = { |