diff options
Diffstat (limited to 'net/core/dev.c')
| -rw-r--r-- | net/core/dev.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 1932d351ed7c..f2f81ef5bbd6 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
| @@ -4518,11 +4518,12 @@ static int __net_init dev_proc_net_init(struct net *net) | |||
| 4518 | { | 4518 | { |
| 4519 | int rc = -ENOMEM; | 4519 | int rc = -ENOMEM; |
| 4520 | 4520 | ||
| 4521 | if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops)) | 4521 | if (!proc_create("dev", S_IRUGO, net->proc_net, &dev_seq_fops)) |
| 4522 | goto out; | 4522 | goto out; |
| 4523 | if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops)) | 4523 | if (!proc_create("softnet_stat", S_IRUGO, net->proc_net, |
| 4524 | &softnet_seq_fops)) | ||
| 4524 | goto out_dev; | 4525 | goto out_dev; |
| 4525 | if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops)) | 4526 | if (!proc_create("ptype", S_IRUGO, net->proc_net, &ptype_seq_fops)) |
| 4526 | goto out_softnet; | 4527 | goto out_softnet; |
| 4527 | 4528 | ||
| 4528 | if (wext_proc_init(net)) | 4529 | if (wext_proc_init(net)) |
