diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-10-07 15:43:04 +0100 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-10-07 15:43:04 +0100 | 
| commit | a56e74f546b64be93731e42d83baf5b538cc1b11 (patch) | |
| tree | 18f6dee45d801e57ac9db2a31664b0d5c0762c50 /net/ipv4/igmp.c | |
| parent | d08e2e09042bd3f7ef66a35cb4bb92794ab26bb2 (diff) | |
| parent | e4e7f10bfc4069925e99cc4b428c3434e30b6c3f (diff) | |
Merge branch 'arm-aesbs' of git://git.linaro.org/people/ardbiesheuvel/linux-arm into devel-stable
Diffstat (limited to 'net/ipv4/igmp.c')
| -rw-r--r-- | net/ipv4/igmp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index d6c0e64ec97f..dace87f06e5f 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c @@ -369,7 +369,7 @@ static struct sk_buff *igmpv3_newpack(struct net_device *dev, int size)  	pip->saddr    = fl4.saddr;  	pip->protocol = IPPROTO_IGMP;  	pip->tot_len  = 0;	/* filled in later */ -	ip_select_ident(pip, &rt->dst, NULL); +	ip_select_ident(skb, &rt->dst, NULL);  	((u8 *)&pip[1])[0] = IPOPT_RA;  	((u8 *)&pip[1])[1] = 4;  	((u8 *)&pip[1])[2] = 0; @@ -714,7 +714,7 @@ static int igmp_send_report(struct in_device *in_dev, struct ip_mc_list *pmc,  	iph->daddr    = dst;  	iph->saddr    = fl4.saddr;  	iph->protocol = IPPROTO_IGMP; -	ip_select_ident(iph, &rt->dst, NULL); +	ip_select_ident(skb, &rt->dst, NULL);  	((u8 *)&iph[1])[0] = IPOPT_RA;  	((u8 *)&iph[1])[1] = 4;  	((u8 *)&iph[1])[2] = 0; | 
