diff options
| author | Nick Piggin <[email protected]> | 2008-10-29 14:00:55 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2008-10-30 11:38:45 -0700 |
| commit | 4e02ed4b4a2fae34aae766a5bb93ae235f60adb8 (patch) | |
| tree | bddfb61b7cc4a4007ae176ccb1ace5740b61da8d /include/linux | |
| parent | 9b913735e53ab0da4a792bac0de8e178cc13dcfb (diff) | |
fs: remove prepare_write/commit_write
Nothing uses prepare_write or commit_write. Remove them from the tree
completely.
[[email protected]: schedule simple_prepare_write() for unexporting]
Signed-off-by: Nick Piggin <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fs.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 5b248d61430c..0dcdd9458f4b 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -489,13 +489,6 @@ struct address_space_operations { int (*readpages)(struct file *filp, struct address_space *mapping, struct list_head *pages, unsigned nr_pages); - /* - * ext3 requires that a successful prepare_write() call be followed - * by a commit_write() call - they must be balanced - */ - int (*prepare_write)(struct file *, struct page *, unsigned, unsigned); - int (*commit_write)(struct file *, struct page *, unsigned, unsigned); - int (*write_begin)(struct file *, struct address_space *mapping, loff_t pos, unsigned len, unsigned flags, struct page **pagep, void **fsdata); |