aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorDenis Cheng <crquan@gmail.com>2007-10-17 02:26:30 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-17 11:42:49 -0400
commit74bf17cffc32511c7c6d70fe7f376b92662e186e (patch)
treee770b056d4a83f847a04fc92e119aa607ec0edaf /include/linux/fs.h
parent1d99493b3a68e40e56459ea3565d4402fb6e5f3a (diff)
fs: remove the unused mempages parameter
Since the mempages parameter is actually not used, they should be removed. Now there is only files_init use the mempages parameter, files_init(mempages); but I don't think the adaptation to mempages in files_init is really useful; and if files_init also changed to the prototype void (*func)(void), the wrapper vfs_caches_init would also not need the mempages parameter. Signed-off-by: Denis Cheng <crquan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 8b3580d0664e..73f0bdbe436a 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -300,9 +300,9 @@ struct kstatfs;
300struct vm_area_struct; 300struct vm_area_struct;
301struct vfsmount; 301struct vfsmount;
302 302
303extern void __init inode_init(unsigned long); 303extern void __init inode_init(void);
304extern void __init inode_init_early(void); 304extern void __init inode_init_early(void);
305extern void __init mnt_init(unsigned long); 305extern void __init mnt_init(void);
306extern void __init files_init(unsigned long); 306extern void __init files_init(unsigned long);
307 307
308struct buffer_head; 308struct buffer_head;