aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2006-06-09 09:34:16 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-06-09 09:34:16 -0400
commit1f5ce9e93aa96a867f195ed45f6f77935175f12e (patch)
treecaa9b6635990f69d47c1729524bd127e968b23f5 /mm
parentbb4a58bf46473e3e83d84054bbc110db3a0f85e4 (diff)
VFS: Unexport do_kern_mount() and clean up simple_pin_fs()
Replace all module uses with the new vfs_kern_mount() interface, and fix up simple_pin_fs(). Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'mm')
-rw-r--r--mm/shmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/shmem.c b/mm/shmem.c
index 4c5e68e4e9ae..8184342440f0 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -2261,7 +2261,7 @@ static int __init init_tmpfs(void)
2261#ifdef CONFIG_TMPFS 2261#ifdef CONFIG_TMPFS
2262 devfs_mk_dir("shm"); 2262 devfs_mk_dir("shm");
2263#endif 2263#endif
2264 shm_mnt = do_kern_mount(tmpfs_fs_type.name, MS_NOUSER, 2264 shm_mnt = vfs_kern_mount(&tmpfs_fs_type, MS_NOUSER,
2265 tmpfs_fs_type.name, NULL); 2265 tmpfs_fs_type.name, NULL);
2266 if (IS_ERR(shm_mnt)) { 2266 if (IS_ERR(shm_mnt)) {
2267 error = PTR_ERR(shm_mnt); 2267 error = PTR_ERR(shm_mnt);