diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-11-11 16:47:44 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-11 16:47:44 -0800 |
commit | 9b739ba5e66c96938fbc07a4dbd9da5b81eac56f (patch) | |
tree | 7a9fe83f69aac8b870144ee90a2b6071a3f96165 /net/core/neighbour.c | |
parent | 7e452baf6b96b5aeba097afd91501d33d390cc97 (diff) | |
download | linux-stable-9b739ba5e66c96938fbc07a4dbd9da5b81eac56f.tar.gz linux-stable-9b739ba5e66c96938fbc07a4dbd9da5b81eac56f.tar.bz2 linux-stable-9b739ba5e66c96938fbc07a4dbd9da5b81eac56f.zip |
net: remove struct neigh_table::pde
->pde isn't actually needed, since name is stashed in ->id.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/neighbour.c')
-rw-r--r-- | net/core/neighbour.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index d9bbe010e0ee..500c2430007c 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -1424,9 +1424,8 @@ void neigh_table_init_no_netlink(struct neigh_table *tbl) panic("cannot create neighbour cache statistics"); #ifdef CONFIG_PROC_FS - tbl->pde = proc_create_data(tbl->id, 0, init_net.proc_net_stat, - &neigh_stat_seq_fops, tbl); - if (!tbl->pde) + if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat, + &neigh_stat_seq_fops, tbl)) panic("cannot create neighbour proc dir entry"); #endif |