net: use napi_consume_skb() in skb_defer_free_flush()

skb_defer_free_flush() runs from softirq context,
we have the opportunity to refill the napi_alloc_cache,
and/or use kmem_cache_free_bulk() when this cache is full.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eric Dumazet 2022-05-15 21:24:54 -07:00 committed by David S. Miller
parent 97e719a82b
commit 2db60eed1a

View file

@ -6633,7 +6633,7 @@ static void skb_defer_free_flush(struct softnet_data *sd)
while (skb != NULL) {
next = skb->next;
__kfree_skb(skb);
napi_consume_skb(skb, 1);
skb = next;
}
}