Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78751
b: refs/heads/master
c: e5d69b9
h: refs/heads/master
i:
  78749: e8b2957
  78747: 4b4447e
  78743: 5f942ed
  78735: 3642027
  78719: 62cc4c7
v: v3
  • Loading branch information
Denis V. Lunev authored and David S. Miller committed Jan 28, 2008
1 parent 21550e4 commit a4ac478
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8cced9eff1d413c28efac9c5ac5a75793c9251cf
refs/heads/master: e5d69b9f4a6ce17f0d09595da45e37b870fee5ae
17 changes: 13 additions & 4 deletions trunk/fs/proc/proc_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,17 @@ static struct proc_dir_entry *proc_net_shadow(struct task_struct *task,
return task->nsproxy->net_ns->proc_net;
}

struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
struct proc_dir_entry *parent)
{
struct proc_dir_entry *pde;
pde = proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
if (pde != NULL)
pde->data = net;
return pde;
}
EXPORT_SYMBOL_GPL(proc_net_mkdir);

static __net_init int proc_net_ns_init(struct net *net)
{
struct proc_dir_entry *root, *netd, *net_statd;
Expand All @@ -107,18 +118,16 @@ static __net_init int proc_net_ns_init(struct net *net)
goto out;

err = -EEXIST;
netd = proc_mkdir("net", root);
netd = proc_net_mkdir(net, "net", root);
if (!netd)
goto free_root;

err = -EEXIST;
net_statd = proc_mkdir("stat", netd);
net_statd = proc_net_mkdir(net, "stat", netd);
if (!net_statd)
goto free_net;

root->data = net;
netd->data = net;
net_statd->data = net;

net->proc_net_root = root;
net->proc_net = netd;
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/proc_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ static inline struct proc_dir_entry *create_proc_info_entry(const char *name,
extern struct proc_dir_entry *proc_net_fops_create(struct net *net,
const char *name, mode_t mode, const struct file_operations *fops);
extern void proc_net_remove(struct net *net, const char *name);
extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
struct proc_dir_entry *parent);

#else

Expand Down
4 changes: 2 additions & 2 deletions trunk/net/atm/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,15 +476,15 @@ static void atm_proc_dirs_remove(void)
if (e->dirent)
remove_proc_entry(e->name, atm_proc_root);
}
remove_proc_entry("atm", init_net.proc_net);
proc_net_remove(&init_net, "atm");
}

int __init atm_proc_init(void)
{
static struct atm_proc_entry *e;
int ret;

atm_proc_root = proc_mkdir("atm", init_net.proc_net);
atm_proc_root = proc_net_mkdir(&init_net, "atm", init_net.proc_net);
if (!atm_proc_root)
goto err_out;
for (e = atm_proc_ents; e->name; e++) {
Expand Down

0 comments on commit a4ac478

Please sign in to comment.