net: sched: update default qdisc visibility after Tx queue cnt changes 47/293647/1
authorJakub Kicinski <kuba@kernel.org>
Mon, 13 Sep 2021 22:53:30 +0000 (15:53 -0700)
committerJaehoon Chung <jh80.chung@samsung.com>
Thu, 1 Jun 2023 11:48:36 +0000 (20:48 +0900)
commit7b1e8021770bec0f026728c669a312b0e3256bea
tree6638ebc49752e704153e8fe5cfce5b0bcb3b2f17
parent2af4562dfd8c2adfc001173cd0213f5c2bc843d7
net: sched: update default qdisc visibility after Tx queue cnt changes

[ Upstream commit 1e080f17750d1083e8a32f7b350584ae1cd7ff20 ]

mq / mqprio make the default child qdiscs visible. They only do
so for the qdiscs which are within real_num_tx_queues when the
device is registered. Depending on order of calls in the driver,
or if user space changes config via ethtool -L the number of
qdiscs visible under tc qdisc show will differ from the number
of queues. This is confusing to users and potentially to system
configuration scripts which try to make sure qdiscs have the
right parameters.

Add a new Qdisc_ops callback and make relevant qdiscs TTRT.

Note that this uncovers the "shortcut" created by
commit 1f27cde313d7 ("net: sched: use pfifo_fast for non real queues")
The default child qdiscs beyond initial real_num_tx are always
pfifo_fast, no matter what the sysfs setting is. Fixing this
gets a little tricky because we'd need to keep a reference
on whatever the default qdisc was at the time of creation.
In practice this is likely an non-issue the qdiscs likely have
to be configured to non-default settings, so whatever user space
is doing such configuration can replace the pfifos... now that
it will see them.

Reported-by: Matthew Massey <matthewmassey@fb.com>
Reviewed-by: Dave Taht <dave.taht@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit ae11b215aef8f4cd8143a6a0712e9849e1cc3a9c)
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Change-Id: I9620005dfc9b18d28cccfd86430082351d6f7605
include/net/sch_generic.h
net/core/dev.c
net/sched/sch_generic.c
net/sched/sch_mq.c
net/sched/sch_mqprio.c