diff options
author | David S. Miller <davem@davemloft.net> | 2010-11-30 12:27:11 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-30 12:27:11 -0800 |
commit | b3419363808f2481b24a817f491878e1795db4c7 (patch) | |
tree | 76cfa3c55d6798a9bf25d200778dc212841f6cb0 /net/ipv4 | |
parent | 672f007d65f50468a4a1e55825fe58e5b035324d (diff) | |
download | op-kernel-dev-b3419363808f2481b24a817f491878e1795db4c7.zip op-kernel-dev-b3419363808f2481b24a817f491878e1795db4c7.tar.gz |
ipv6: Add infrastructure to bind inet_peer objects to routes.
They are only allowed on cached ipv6 routes.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/inetpeer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c index 1c1335b..f95b89f 100644 --- a/net/ipv4/inetpeer.c +++ b/net/ipv4/inetpeer.c @@ -532,6 +532,7 @@ static int compute_total(void) { return v4_peers.total + v6_peers.total; } +EXPORT_SYMBOL_GPL(inet_getpeer); /* Called with local BH disabled. */ static void peer_check_expire(unsigned long dummy) @@ -577,3 +578,4 @@ void inet_putpeer(struct inet_peer *p) local_bh_enable(); } +EXPORT_SYMBOL_GPL(inet_putpeer); |