aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inetpeer.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-06-09 16:32:41 -0700
committerDavid S. Miller <davem@davemloft.net>2012-06-09 16:32:41 -0700
commit56a6b248eb345c1948ee60bf426de1ff7dd81509 (patch)
tree84748cfc069b11d6800b50e6ee71fa742a364c7b /net/ipv4/inetpeer.c
parentinet: Initialize per-netns inetpeer roots in net/ipv{4,6}/route.c (diff)
downloadlinux-dev-56a6b248eb345c1948ee60bf426de1ff7dd81509.tar.xz
linux-dev-56a6b248eb345c1948ee60bf426de1ff7dd81509.zip
inet: Consolidate inetpeer_invalidate_tree() interfaces.
We only need one interface for this operation, since we always know which inetpeer root we want to flush. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inetpeer.c')
-rw-r--r--net/ipv4/inetpeer.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c
index d0d72f89b279..9d89a381f0e1 100644
--- a/net/ipv4/inetpeer.c
+++ b/net/ipv4/inetpeer.c
@@ -564,7 +564,7 @@ static void inetpeer_inval_rcu(struct rcu_head *head)
schedule_delayed_work(&gc_work, gc_delay);
}
-void __inetpeer_invalidate_tree(struct inet_peer_base *base)
+void inetpeer_invalidate_tree(struct inet_peer_base *base)
{
struct inet_peer *old, *new, *prev;
@@ -585,12 +585,4 @@ void __inetpeer_invalidate_tree(struct inet_peer_base *base)
out:
write_sequnlock_bh(&base->lock);
}
-EXPORT_SYMBOL(__inetpeer_invalidate_tree);
-
-void inetpeer_invalidate_tree(struct net *net, int family)
-{
- struct inet_peer_base *base = family_to_base(net, family);
-
- __inetpeer_invalidate_tree(base);
-}
EXPORT_SYMBOL(inetpeer_invalidate_tree);