[IPV4] ip_gre: set mac_header correctly in receive path
authorTimo Teras <timo.teras@iki.fi>
Thu, 20 Dec 2007 08:10:33 +0000 (00:10 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 20 Dec 2007 08:10:33 +0000 (00:10 -0800)
mac_header update in ipgre_recv() was incorrectly changed to
skb_reset_mac_header() when it was introduced.

Signed-off-by: Timo Teras <timo.teras@iki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ip_gre.c

index 02b02a8..4b93f32 100644 (file)
@@ -613,7 +613,7 @@ static int ipgre_rcv(struct sk_buff *skb)
                                offset += 4;
                }
 
-               skb_reset_mac_header(skb);
+               skb->mac_header = skb->network_header;
                __pskb_pull(skb, offset);
                skb_reset_network_header(skb);
                skb_postpull_rcsum(skb, skb_transport_header(skb), offset);