diff options
Diffstat (limited to 'net')
-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) | |||
1424 | panic("cannot create neighbour cache statistics"); | 1424 | panic("cannot create neighbour cache statistics"); |
1425 | 1425 | ||
1426 | #ifdef CONFIG_PROC_FS | 1426 | #ifdef CONFIG_PROC_FS |
1427 | tbl->pde = proc_create_data(tbl->id, 0, init_net.proc_net_stat, | 1427 | if (!proc_create_data(tbl->id, 0, init_net.proc_net_stat, |
1428 | &neigh_stat_seq_fops, tbl); | 1428 | &neigh_stat_seq_fops, tbl)) |
1429 | if (!tbl->pde) | ||
1430 | panic("cannot create neighbour proc dir entry"); | 1429 | panic("cannot create neighbour proc dir entry"); |
1431 | #endif | 1430 | #endif |
1432 | 1431 | ||