diff options
Diffstat (limited to 'net/core/netpoll.c')
| -rw-r--r-- | net/core/netpoll.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index 0ad3896bbf6..b4d1cdd58f1 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c @@ -359,7 +359,8 @@ static void arp_reply(struct sk_buff *skb)  				 (2 * sizeof(u32)))))  		return; -	skb->h.raw = skb->nh.raw = skb->data; +	skb_reset_network_header(skb); +	skb->h.raw = skb->data;  	arp = skb->nh.arph;  	if ((arp->ar_hrd != htons(ARPHRD_ETHER) && @@ -389,7 +390,7 @@ static void arp_reply(struct sk_buff *skb)  	if (!send_skb)  		return; -	send_skb->nh.raw = send_skb->data; +	skb_reset_network_header(send_skb);  	arp = (struct arphdr *) skb_put(send_skb, size);  	send_skb->dev = skb->dev;  	send_skb->protocol = htons(ETH_P_ARP);  |