summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorWang Chen <wangchen@cn.fujitsu.com>2008-02-28 14:10:51 -0800
committerDavid S. Miller <davem@davemloft.net>2008-02-28 14:10:51 -0800
commit46ecf0b994715589b9f5f620beca4d6aaaa02028 (patch)
treea71bf1165412f79145fe49648d1e7eaba374975e /net
parent7e0218099832d954d107f48de9e81bd521e16f24 (diff)
downloadlinux-3.10-46ecf0b994715589b9f5f620beca4d6aaaa02028.tar.gz
linux-3.10-46ecf0b994715589b9f5f620beca4d6aaaa02028.tar.bz2
linux-3.10-46ecf0b994715589b9f5f620beca4d6aaaa02028.zip
[NEIGHBOUR]: Use proc_create() to setup ->proc_fops first
Use proc_create() to make sure that ->proc_fops be setup before gluing PDE to main tree. Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/core/neighbour.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index 2328acbd16c..aef01533dfb 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -1389,10 +1389,10 @@ void neigh_table_init_no_netlink(struct neigh_table *tbl)
panic("cannot create neighbour cache statistics");
#ifdef CONFIG_PROC_FS
- tbl->pde = create_proc_entry(tbl->id, 0, init_net.proc_net_stat);
+ tbl->pde = proc_create(tbl->id, 0, init_net.proc_net_stat,
+ &neigh_stat_seq_fops);
if (!tbl->pde)
panic("cannot create neighbour proc dir entry");
- tbl->pde->proc_fops = &neigh_stat_seq_fops;
tbl->pde->data = tbl;
#endif