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 /net/ipv6/exthdrs.c | |
| 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 'net/ipv6/exthdrs.c')
| -rw-r--r-- | net/ipv6/exthdrs.c | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index bf22a225f42..3d641b6e9b0 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c @@ -243,9 +243,9 @@ static int ipv6_dest_hao(struct sk_buff *skb, int optoff)  	if (skb->ip_summed == CHECKSUM_COMPLETE)  		skb->ip_summed = CHECKSUM_NONE; -	ipv6_addr_copy(&tmp_addr, &ipv6h->saddr); -	ipv6_addr_copy(&ipv6h->saddr, &hao->addr); -	ipv6_addr_copy(&hao->addr, &tmp_addr); +	tmp_addr = ipv6h->saddr; +	ipv6h->saddr = hao->addr; +	hao->addr = tmp_addr;  	if (skb->tstamp.tv64 == 0)  		__net_timestamp(skb); @@ -461,9 +461,9 @@ looped_back:  		return -1;  	} -	ipv6_addr_copy(&daddr, addr); -	ipv6_addr_copy(addr, &ipv6_hdr(skb)->daddr); -	ipv6_addr_copy(&ipv6_hdr(skb)->daddr, &daddr); +	daddr = *addr; +	*addr = ipv6_hdr(skb)->daddr; +	ipv6_hdr(skb)->daddr = daddr;  	skb_dst_drop(skb);  	ip6_route_input(skb); @@ -690,7 +690,7 @@ static void ipv6_push_rthdr(struct sk_buff *skb, u8 *proto,  		memcpy(phdr->addr, ihdr->addr + 1,  		       (hops - 1) * sizeof(struct in6_addr)); -	ipv6_addr_copy(phdr->addr + (hops - 1), *addr_p); +	phdr->addr[hops - 1] = **addr_p;  	*addr_p = ihdr->addr;  	phdr->rt_hdr.nexthdr = *proto; @@ -888,8 +888,8 @@ struct in6_addr *fl6_update_dst(struct flowi6 *fl6,  	if (!opt || !opt->srcrt)  		return NULL; -	ipv6_addr_copy(orig, &fl6->daddr); -	ipv6_addr_copy(&fl6->daddr, ((struct rt0_hdr *)opt->srcrt)->addr); +	*orig = fl6->daddr; +	fl6->daddr = *((struct rt0_hdr *)opt->srcrt)->addr;  	return orig;  }  |