Commit 9c4a29de authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Linus Torvalds

[PATCH] make filemap_fdatawrite_range() static

The patch below marks filemap_fdatawrite_range static, it's not used
outside mm/filemap.c.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6763e3e8
...@@ -191,12 +191,11 @@ int filemap_fdatawrite(struct address_space *mapping) ...@@ -191,12 +191,11 @@ int filemap_fdatawrite(struct address_space *mapping)
} }
EXPORT_SYMBOL(filemap_fdatawrite); EXPORT_SYMBOL(filemap_fdatawrite);
int filemap_fdatawrite_range(struct address_space *mapping, static int filemap_fdatawrite_range(struct address_space *mapping,
loff_t start, loff_t end) loff_t start, loff_t end)
{ {
return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL); return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
} }
EXPORT_SYMBOL(filemap_fdatawrite_range);
/* /*
* This is a mostly non-blocking flush. Not suitable for data-integrity * This is a mostly non-blocking flush. Not suitable for data-integrity
......
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