aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/proc/proc_net.c17
-rw-r--r--include/linux/proc_fs.h2
-rw-r--r--net/atm/proc.c4
3 files changed, 17 insertions, 6 deletions
diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c
index cfc4f6c072f1..4823c9677fac 100644
--- a/fs/proc/proc_net.c
+++ b/fs/proc/proc_net.c
@@ -96,6 +96,17 @@ static struct proc_dir_entry *proc_net_shadow(struct task_struct *task,
96 return task->nsproxy->net_ns->proc_net; 96 return task->nsproxy->net_ns->proc_net;
97} 97}
98 98
99struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
100 struct proc_dir_entry *parent)
101{
102 struct proc_dir_entry *pde;
103 pde = proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
104 if (pde != NULL)
105 pde->data = net;
106 return pde;
107}
108EXPORT_SYMBOL_GPL(proc_net_mkdir);
109
99static __net_init int proc_net_ns_init(struct net *net) 110static __net_init int proc_net_ns_init(struct net *net)
100{ 111{
101 struct proc_dir_entry *root, *netd, *net_statd; 112 struct proc_dir_entry *root, *netd, *net_statd;
@@ -107,18 +118,16 @@ static __net_init int proc_net_ns_init(struct net *net)
107 goto out; 118 goto out;
108 119
109 err = -EEXIST; 120 err = -EEXIST;
110 netd = proc_mkdir("net", root); 121 netd = proc_net_mkdir(net, "net", root);
111 if (!netd) 122 if (!netd)
112 goto free_root; 123 goto free_root;
113 124
114 err = -EEXIST; 125 err = -EEXIST;
115 net_statd = proc_mkdir("stat", netd); 126 net_statd = proc_net_mkdir(net, "stat", netd);
116 if (!net_statd) 127 if (!net_statd)
117 goto free_net; 128 goto free_net;
118 129
119 root->data = net; 130 root->data = net;
120 netd->data = net;
121 net_statd->data = net;
122 131
123 net->proc_net_root = root; 132 net->proc_net_root = root;
124 net->proc_net = netd; 133 net->proc_net = netd;
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h
index a5316829215b..8f92546b403d 100644
--- a/include/linux/proc_fs.h
+++ b/include/linux/proc_fs.h
@@ -201,6 +201,8 @@ static inline struct proc_dir_entry *create_proc_info_entry(const char *name,
201extern struct proc_dir_entry *proc_net_fops_create(struct net *net, 201extern struct proc_dir_entry *proc_net_fops_create(struct net *net,
202 const char *name, mode_t mode, const struct file_operations *fops); 202 const char *name, mode_t mode, const struct file_operations *fops);
203extern void proc_net_remove(struct net *net, const char *name); 203extern void proc_net_remove(struct net *net, const char *name);
204extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
205 struct proc_dir_entry *parent);
204 206
205#else 207#else
206 208
diff --git a/net/atm/proc.c b/net/atm/proc.c
index 5d9d5ffba145..565e75e62ca4 100644
--- a/net/atm/proc.c
+++ b/net/atm/proc.c
@@ -476,7 +476,7 @@ static void atm_proc_dirs_remove(void)
476 if (e->dirent) 476 if (e->dirent)
477 remove_proc_entry(e->name, atm_proc_root); 477 remove_proc_entry(e->name, atm_proc_root);
478 } 478 }
479 remove_proc_entry("atm", init_net.proc_net); 479 proc_net_remove(&init_net, "atm");
480} 480}
481 481
482int __init atm_proc_init(void) 482int __init atm_proc_init(void)
@@ -484,7 +484,7 @@ int __init atm_proc_init(void)
484 static struct atm_proc_entry *e; 484 static struct atm_proc_entry *e;
485 int ret; 485 int ret;
486 486
487 atm_proc_root = proc_mkdir("atm", init_net.proc_net); 487 atm_proc_root = proc_net_mkdir(&init_net, "atm", init_net.proc_net);
488 if (!atm_proc_root) 488 if (!atm_proc_root)
489 goto err_out; 489 goto err_out;
490 for (e = atm_proc_ents; e->name; e++) { 490 for (e = atm_proc_ents; e->name; e++) {