Commit 4a239427 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

make fs/libfs.c:simple_commit_write() static

simple_commit_write() can now become static.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ba2a631b
...@@ -371,7 +371,7 @@ int simple_write_begin(struct file *file, struct address_space *mapping, ...@@ -371,7 +371,7 @@ int simple_write_begin(struct file *file, struct address_space *mapping,
return simple_prepare_write(file, page, from, from+len); return simple_prepare_write(file, page, from, from+len);
} }
int simple_commit_write(struct file *file, struct page *page, static int simple_commit_write(struct file *file, struct page *page,
unsigned from, unsigned to) unsigned from, unsigned to)
{ {
struct inode *inode = page->mapping->host; struct inode *inode = page->mapping->host;
...@@ -686,7 +686,6 @@ EXPORT_SYMBOL(generic_read_dir); ...@@ -686,7 +686,6 @@ EXPORT_SYMBOL(generic_read_dir);
EXPORT_SYMBOL(get_sb_pseudo); EXPORT_SYMBOL(get_sb_pseudo);
EXPORT_SYMBOL(simple_write_begin); EXPORT_SYMBOL(simple_write_begin);
EXPORT_SYMBOL(simple_write_end); EXPORT_SYMBOL(simple_write_end);
EXPORT_SYMBOL(simple_commit_write);
EXPORT_SYMBOL(simple_dir_inode_operations); EXPORT_SYMBOL(simple_dir_inode_operations);
EXPORT_SYMBOL(simple_dir_operations); EXPORT_SYMBOL(simple_dir_operations);
EXPORT_SYMBOL(simple_empty); EXPORT_SYMBOL(simple_empty);
......
...@@ -1886,8 +1886,6 @@ extern int simple_empty(struct dentry *); ...@@ -1886,8 +1886,6 @@ extern int simple_empty(struct dentry *);
extern int simple_readpage(struct file *file, struct page *page); extern int simple_readpage(struct file *file, struct page *page);
extern int simple_prepare_write(struct file *file, struct page *page, extern int simple_prepare_write(struct file *file, struct page *page,
unsigned offset, unsigned to); unsigned offset, unsigned to);
extern int simple_commit_write(struct file *file, struct page *page,
unsigned offset, unsigned to);
extern int simple_write_begin(struct file *file, struct address_space *mapping, extern int simple_write_begin(struct file *file, struct address_space *mapping,
loff_t pos, unsigned len, unsigned flags, loff_t pos, unsigned len, unsigned flags,
struct page **pagep, void **fsdata); struct page **pagep, void **fsdata);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment