The initial skb may have been freed after napi_gro_complete in
napi_gro_receive if it was merged into an existing packet. Thus
we cannot check same_flow (which indicates whether it was merged)
after calling napi_gro_complete.
This patch fixes this by saving the same_flow status before the
call to napi_gro_complete.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
__be16 type = skb->protocol;
struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
int count = 0;
+ int same_flow;
int mac_len;
if (!(skb->dev->features & NETIF_F_GRO))
if (&ptype->list == head)
goto normal;
+ same_flow = NAPI_GRO_CB(skb)->same_flow;
+
if (pp) {
struct sk_buff *nskb = *pp;
count--;
}
- if (NAPI_GRO_CB(skb)->same_flow)
+ if (same_flow)
goto ok;
if (NAPI_GRO_CB(skb)->flush || count >= MAX_GRO_SKBS) {