diff options
| author | Alexey Dobriyan <adobriyan@gmail.com> | 2011-11-21 03:39:03 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-11-22 16:43:32 -0500 | 
| commit | 4e3fd7a06dc20b2d8ec6892233ad2012968fe7b6 (patch) | |
| tree | da3fbec7672ac6b967dfa31cec6c88f468a57fa2 /include/net/ipv6.h | |
| parent | 40ba84993d66469d336099c5af74c3da5b73e28d (diff) | |
| download | olio-linux-3.10-4e3fd7a06dc20b2d8ec6892233ad2012968fe7b6.tar.xz olio-linux-3.10-4e3fd7a06dc20b2d8ec6892233ad2012968fe7b6.zip  | |
net: remove ipv6_addr_copy()
C assignment can handle struct in6_addr copying.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ipv6.h')
| -rw-r--r-- | include/net/ipv6.h | 5 | 
1 files changed, 0 insertions, 5 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 3f0258d2ef0..f35188e002d 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -309,11 +309,6 @@ ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m,  		  ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3]));  } -static inline void ipv6_addr_copy(struct in6_addr *a1, const struct in6_addr *a2) -{ -	memcpy(a1, a2, sizeof(struct in6_addr)); -} -  static inline void ipv6_addr_prefix(struct in6_addr *pfx,   				    const struct in6_addr *addr,  				    int plen)  |