aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/root.c')
-rw-r--r--fs/proc/root.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c
index e5e2bfa7a03b..a9000e9cfee5 100644
--- a/fs/proc/root.c
+++ b/fs/proc/root.c
@@ -90,19 +90,20 @@ static struct file_system_type proc_fs_type = {
90 90
91void __init proc_root_init(void) 91void __init proc_root_init(void)
92{ 92{
93 struct vfsmount *mnt;
93 int err; 94 int err;
94 95
95 proc_init_inodecache(); 96 proc_init_inodecache();
96 err = register_filesystem(&proc_fs_type); 97 err = register_filesystem(&proc_fs_type);
97 if (err) 98 if (err)
98 return; 99 return;
99 proc_mnt = kern_mount_data(&proc_fs_type, &init_pid_ns); 100 mnt = kern_mount_data(&proc_fs_type, &init_pid_ns);
100 if (IS_ERR(proc_mnt)) { 101 if (IS_ERR(mnt)) {
101 unregister_filesystem(&proc_fs_type); 102 unregister_filesystem(&proc_fs_type);
102 return; 103 return;
103 } 104 }
104 105
105 init_pid_ns.proc_mnt = proc_mnt; 106 init_pid_ns.proc_mnt = mnt;
106 proc_symlink("mounts", NULL, "self/mounts"); 107 proc_symlink("mounts", NULL, "self/mounts");
107 108
108 proc_net_init(); 109 proc_net_init();