netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v2] net: sched: do not requeue a NULL skb
@ 2016-04-11  6:24 Lars Persson
  2016-04-11 13:23 ` Eric Dumazet
  0 siblings, 1 reply; 12+ messages in thread
From: Lars Persson @ 2016-04-11  6:24 UTC (permalink / raw)
  To: netdev; +Cc: jhs, linux-kernel, xiyou.wangcong, Lars Persson

A failure in validate_xmit_skb_list() triggered an unconditional call
to dev_requeue_skb with skb=NULL. This slowly grows the queue
discipline's qlen count until all traffic through the queue stops.

By introducing a NULL check in dev_requeue_skb it was also necessary
to make the __netif_schedule call conditional to avoid scheduling an
empty queue.

Fixes: 55a93b3ea780 ("qdisc: validate skb without holding lock")
Signed-off-by: Lars Persson <larper@axis.com>
---
 net/sched/sch_generic.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c
index f18c350..4e6a79c 100644
--- a/net/sched/sch_generic.c
+++ b/net/sched/sch_generic.c
@@ -47,10 +47,13 @@ EXPORT_SYMBOL(default_qdisc_ops);
 
 static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)
 {
-	q->gso_skb = skb;
-	q->qstats.requeues++;
-	q->q.qlen++;	/* it's still part of the queue */
-	__netif_schedule(q);
+	if (skb) {
+		q->gso_skb = skb;
+		q->qstats.requeues++;
+		q->q.qlen++;	/* it's still part of the queue */
+	}
+	if (qdisc_qlen(q))
+		__netif_schedule(q);
 
 	return 0;
 }
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2016-04-11 23:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-11  6:24 [PATCH net v2] net: sched: do not requeue a NULL skb Lars Persson
2016-04-11 13:23 ` Eric Dumazet
2016-04-11 13:38   ` Lars Persson
2016-04-11 14:22     ` Eric Dumazet
2016-04-11 15:17       ` Lars Persson
2016-04-11 15:52         ` Eric Dumazet
2016-04-11 18:02           ` Cong Wang
2016-04-11 18:26             ` Eric Dumazet
2016-04-11 18:30               ` Eric Dumazet
2016-04-11 23:19                 ` Cong Wang
2016-04-11 23:48                   ` Eric Dumazet
2016-04-11 17:53         ` Cong Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).