diff options
author | Hiroaki SHIMODA <shimoda.hiroaki@gmail.com> | 2012-04-13 03:34:44 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-13 14:00:44 -0400 |
commit | dcd2ba92e842eec0d0372415fa26f1c411f5530d (patch) | |
tree | aa68fbb0372897b0af17357d9d13ae717d8c11d9 /net/core/neighbour.c | |
parent | 447167bf565a474ff0cfb0f41d54936937479e97 (diff) |
neighbour: Make neigh_table_init_no_netlink() static.
neigh_table_init_no_netlink() is only used in net/core/neighbour.c file.
Signed-off-by: Hiroaki SHIMODA <shimoda.hiroaki@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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index ac71765d6fd0..2d3e6fcdc9c9 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
@@ -1500,7 +1500,7 @@ static void neigh_parms_destroy(struct neigh_parms *parms) | |||
1500 | 1500 | ||
1501 | static struct lock_class_key neigh_table_proxy_queue_class; | 1501 | static struct lock_class_key neigh_table_proxy_queue_class; |
1502 | 1502 | ||
1503 | void neigh_table_init_no_netlink(struct neigh_table *tbl) | 1503 | static void neigh_table_init_no_netlink(struct neigh_table *tbl) |
1504 | { | 1504 | { |
1505 | unsigned long now = jiffies; | 1505 | unsigned long now = jiffies; |
1506 | unsigned long phsize; | 1506 | unsigned long phsize; |
@@ -1538,7 +1538,6 @@ void neigh_table_init_no_netlink(struct neigh_table *tbl) | |||
1538 | tbl->last_flush = now; | 1538 | tbl->last_flush = now; |
1539 | tbl->last_rand = now + tbl->parms.reachable_time * 20; | 1539 | tbl->last_rand = now + tbl->parms.reachable_time * 20; |
1540 | } | 1540 | } |
1541 | EXPORT_SYMBOL(neigh_table_init_no_netlink); | ||
1542 | 1541 | ||
1543 | void neigh_table_init(struct neigh_table *tbl) | 1542 | void neigh_table_init(struct neigh_table *tbl) |
1544 | { | 1543 | { |