Commit 672f007d authored by David S. Miller's avatar David S. Miller
Browse files

inetpeer: Add inet_getpeer_v6()



Now that all of the infrastructure is in place, we can add
the ipv6 shorthand for peer creation.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 021e9299
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@
#include <linux/init.h>
#include <linux/jiffies.h>
#include <linux/spinlock.h>
#include <net/ipv6.h>
#include <asm/atomic.h>

typedef struct {
@@ -61,6 +62,15 @@ static inline struct inet_peer *inet_getpeer_v4(__be32 v4daddr, int create)
	return inet_getpeer(&daddr, create);
}

static inline struct inet_peer *inet_getpeer_v6(struct in6_addr *v6daddr, int create)
{
	inet_peer_address_t daddr;

	ipv6_addr_copy((struct in6_addr *)daddr.a6, v6daddr);
	daddr.family = AF_INET6;
	return inet_getpeer(&daddr, create);
}

/* can be called from BH context or outside */
extern void inet_putpeer(struct inet_peer *p);