aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/core/dev.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 1cd6297fd34b..6ad37896a324 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3802,7 +3802,6 @@ static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff
3802 __be16 type = skb->protocol; 3802 __be16 type = skb->protocol;
3803 struct list_head *head = &offload_base; 3803 struct list_head *head = &offload_base;
3804 int same_flow; 3804 int same_flow;
3805 int mac_len;
3806 enum gro_result ret; 3805 enum gro_result ret;
3807 3806
3808 if (!(skb->dev->features & NETIF_F_GRO) || netpoll_rx_on(skb)) 3807 if (!(skb->dev->features & NETIF_F_GRO) || netpoll_rx_on(skb))
@@ -3819,8 +3818,7 @@ static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff
3819 continue; 3818 continue;
3820 3819
3821 skb_set_network_header(skb, skb_gro_offset(skb)); 3820 skb_set_network_header(skb, skb_gro_offset(skb));
3822 mac_len = skb->network_header - skb->mac_header; 3821 skb_reset_mac_len(skb);
3823 skb->mac_len = mac_len;
3824 NAPI_GRO_CB(skb)->same_flow = 0; 3822 NAPI_GRO_CB(skb)->same_flow = 0;
3825 NAPI_GRO_CB(skb)->flush = 0; 3823 NAPI_GRO_CB(skb)->flush = 0;
3826 NAPI_GRO_CB(skb)->free = 0; 3824 NAPI_GRO_CB(skb)->free = 0;