public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* Patch "net_sched: fix order of queue length updates in qdisc_replace()" has been added to the 4.4-stable tree
@ 2017-08-25  0:49 gregkh
  0 siblings, 0 replies; only message in thread
From: gregkh @ 2017-08-25  0:49 UTC (permalink / raw)
  To: khlebnikov, davem, gregkh, xiyou.wangcong; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    net_sched: fix order of queue length updates in qdisc_replace()

to the 4.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net_sched-fix-order-of-queue-length-updates-in-qdisc_replace.patch
and it can be found in the queue-4.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From foo@baz Thu Aug 24 17:48:38 PDT 2017
From: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Date: Sat, 19 Aug 2017 15:37:07 +0300
Subject: net_sched: fix order of queue length updates in qdisc_replace()

From: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>


[ Upstream commit 68a66d149a8c78ec6720f268597302883e48e9fa ]

This important to call qdisc_tree_reduce_backlog() after changing queue
length. Parent qdisc should deactivate class in ->qlen_notify() called from
qdisc_tree_reduce_backlog() but this happens only if qdisc->q.qlen in zero.

Missed class deactivations leads to crashes/warnings at picking packets
from empty qdisc and corrupting state at reactivating this class in future.

Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Fixes: 86a7996cc8a0 ("net_sched: introduce qdisc_replace() helper")
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/net/sch_generic.h |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

--- a/include/net/sch_generic.h
+++ b/include/net/sch_generic.h
@@ -717,8 +717,11 @@ static inline struct Qdisc *qdisc_replac
 	old = *pold;
 	*pold = new;
 	if (old != NULL) {
-		qdisc_tree_reduce_backlog(old, old->q.qlen, old->qstats.backlog);
+		unsigned int qlen = old->q.qlen;
+		unsigned int backlog = old->qstats.backlog;
+
 		qdisc_reset(old);
+		qdisc_tree_reduce_backlog(old, qlen, backlog);
 	}
 	sch_tree_unlock(sch);
 


Patches currently in stable-queue which might be from khlebnikov@yandex-team.ru are

queue-4.4/net_sched-remove-warning-from-qdisc_hash_add.patch
queue-4.4/net_sched-fix-order-of-queue-length-updates-in-qdisc_replace.patch
queue-4.4/net_sched-sfq-update-hierarchical-backlog-when-drop-packet.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-08-25  0:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-25  0:49 Patch "net_sched: fix order of queue length updates in qdisc_replace()" has been added to the 4.4-stable tree gregkh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox