diff options
author | Denis Cheng <crquan@gmail.com> | 2007-10-17 02:26:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:49 -0400 |
commit | 74bf17cffc32511c7c6d70fe7f376b92662e186e (patch) | |
tree | e770b056d4a83f847a04fc92e119aa607ec0edaf /fs/namespace.c | |
parent | 1d99493b3a68e40e56459ea3565d4402fb6e5f3a (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 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index ddbda13c2d31..07daa7972591 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1791,7 +1791,7 @@ static void __init init_mount_tree(void) | |||
1791 | set_fs_root(current->fs, ns->root, ns->root->mnt_root); | 1791 | set_fs_root(current->fs, ns->root, ns->root->mnt_root); |
1792 | } | 1792 | } |
1793 | 1793 | ||
1794 | void __init mnt_init(unsigned long mempages) | 1794 | void __init mnt_init(void) |
1795 | { | 1795 | { |
1796 | struct list_head *d; | 1796 | struct list_head *d; |
1797 | unsigned int nr_hash; | 1797 | unsigned int nr_hash; |