Commit ece23711 authored by David S. Miller's avatar David S. Miller

net: Properly unlink GRO packets on overflow.

Just like with normal GRO processing, we have to initialize
skb->next to NULL when we unlink overflow packets from the
GRO hash lists.

Fixes: d4546c25 ("net: Convert GRO SKB handling to list_head.")
Reported-by: default avatarOleksandr Natalenko <oleksandr@natalenko.name>
Tested-by: default avatarOleksandr Natalenko <oleksandr@natalenko.name>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6788fac8
...@@ -5457,7 +5457,7 @@ static void gro_flush_oldest(struct list_head *head) ...@@ -5457,7 +5457,7 @@ static void gro_flush_oldest(struct list_head *head)
/* Do not adjust napi->gro_hash[].count, caller is adding a new /* Do not adjust napi->gro_hash[].count, caller is adding a new
* SKB to the chain. * SKB to the chain.
*/ */
list_del(&oldest->list); skb_list_del_init(oldest);
napi_gro_complete(oldest); napi_gro_complete(oldest);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment