From: Eric Dumazet Date: Tue, 14 Jun 2016 03:21:59 +0000 (-0700) Subject: net_sched: sch_fq: defer skb freeing X-Git-Tag: v4.13~2635^2~340^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=fea024784f588a1c50e7718d6053697ebdcc033e;p=mirror_ubuntu-bionic-kernel.git net_sched: sch_fq: defer skb freeing sfq_reset() can use rtnl_kfree_skbs() instead of kfree_skb() Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index a2e0b855d1c8..57d118b41cad 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c @@ -520,7 +520,7 @@ sfq_reset(struct Qdisc *sch) struct sk_buff *skb; while ((skb = sfq_dequeue(sch)) != NULL) - kfree_skb(skb); + rtnl_kfree_skbs(skb, skb); } /*