* [Cake] [PATCH net-next v2] net/sched: sch_cake: skip clearing unused tins during rate adjustment
@ 2026-07-20 21:14 Jonas Köppeler
2026-07-21 6:55 ` [Cake] " Toke Høiland-Jørgensen
0 siblings, 1 reply; 2+ messages in thread
From: Jonas Köppeler @ 2026-07-20 21:14 UTC (permalink / raw)
To: Toke Høiland-Jørgensen, Jamal Hadi Salim, Jiri Pirko,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman
Cc: cake, netdev, linux-kernel, Jonas Köppeler, Mike Pham
When cake_configure_rates() is called from the dequeue path with
rate_adjust=true, it only needs to update the rate parameters. The
loop that clears the unused tins is both unnecessary and harmful in
this path:
- cake_clear_tin() overwrites q->cur_tin and q->cur_flow, which are
actively used by cake_dequeue(), corrupting the dequeue state.
- iterating over the unused tins and their internal queues to purge
packets adds needless overhead to the hot path.
Skip the entire loop when rate_adjust is set, as neither
cake_clear_tin() nor the mtu_time update are needed when only the
rate changes.
The clearing loop runs on every rate adjustment from the dequeue path,
clearing (max_tins - cur_tins) tins each time, so the cost grows the
fewer tins the configured mode actually uses. Testing cake_mq over veth
(8 rx/tx queues, 2 Gbit limit) with flent's [1] rrul and tcp_nup tests and
32 TCP upstreams shows a large drop in loaded latency and a throughput
gain, restoring behaviour to pre-15c2715a5264 levels:
+------------+------+------+-------+-------+---------+
| kernel | mode | test | base | load | tput |
| | | | (ms) | (ms) | (Mbit) |
+------------+------+------+-------+-------+---------+
| net-next | be | rrul | 0.810 | 11.78 | 1469.67 |
| net-next | be | nup | 0.637 | 85.71 | 1243.15 |
| net-next | ds3 | rrul | 0.397 | 15.28 | 1770.06 |
| net-next | ds3 | nup | 0.351 | 15.98 | 1799.39 |
+------------+------+------+-------+-------+---------+
| patched | be | rrul | 0.092 | 0.56 | 1873.40 |
| patched | be | nup | 0.109 | 1.82 | 1869.12 |
| patched | ds3 | rrul | 0.097 | 0.98 | 1866.10 |
| patched | ds3 | nup | 0.101 | 0.51 | 1861.79 |
+------------+------+------+-------+-------+---------+
The same trend holds on real hardware (IPQ8074A, 4 rx/tx queues,
OpenWrt): in besteffort mode the tcp_nup loaded latency drops from
~470 ms to ~4 ms.
[1] https://flent.org
Fixes: 15c2715a5264 ("net/sched: sch_cake: fixup cake_mq rate adjustment for diffserv config")
Signed-off-by: Jonas Köppeler <j.koeppeler@tu-berlin.de>
Tested-by: Mike Pham <mikepham4321@gmail.com>
---
Changes in v2:
- added performance data to commit message, no code changes
- Link to v1: https://patch.msgid.link/20260716-sch_cake-skip-clearing-tins-v1-1-d9787df20c28@tu-berlin.de
---
net/sched/sch_cake.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/net/sched/sch_cake.c b/net/sched/sch_cake.c
index f78f8e950776..845e1c017714 100644
--- a/net/sched/sch_cake.c
+++ b/net/sched/sch_cake.c
@@ -2609,9 +2609,11 @@ static void cake_configure_rates(struct Qdisc *sch, u64 rate, bool rate_adjust)
break;
}
- for (c = qd->tin_cnt; c < CAKE_MAX_TINS; c++) {
- cake_clear_tin(sch, c);
- qd->tins[c].cparams.mtu_time = qd->tins[ft].cparams.mtu_time;
+ if (!rate_adjust) {
+ for (c = qd->tin_cnt; c < CAKE_MAX_TINS; c++) {
+ cake_clear_tin(sch, c);
+ qd->tins[c].cparams.mtu_time = qd->tins[ft].cparams.mtu_time;
+ }
}
qd->rate_ns = qd->tins[ft].tin_rate_ns;
---
base-commit: f6f3b36c15ed44de1fbb44e645e4fae8c4a4453e
change-id: 20260716-sch_cake-skip-clearing-tins-856812586cde
Best regards,
--
Jonas Köppeler <j.koeppeler@tu-berlin.de>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Cake] Re: [PATCH net-next v2] net/sched: sch_cake: skip clearing unused tins during rate adjustment
2026-07-20 21:14 [Cake] [PATCH net-next v2] net/sched: sch_cake: skip clearing unused tins during rate adjustment Jonas Köppeler
@ 2026-07-21 6:55 ` Toke Høiland-Jørgensen
0 siblings, 0 replies; 2+ messages in thread
From: Toke Høiland-Jørgensen @ 2026-07-21 6:55 UTC (permalink / raw)
To: Jonas Köppeler, Jamal Hadi Salim, Jiri Pirko,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman
Cc: cake, netdev, linux-kernel, Mike Pham
On 20 July 2026 23.14.52 CEST, "Jonas Köppeler" <j.koeppeler@tu-berlin.de> wrote:
>When cake_configure_rates() is called from the dequeue path with
>rate_adjust=true, it only needs to update the rate parameters. The
>loop that clears the unused tins is both unnecessary and harmful in
>this path:
>
> - cake_clear_tin() overwrites q->cur_tin and q->cur_flow, which are
> actively used by cake_dequeue(), corrupting the dequeue state.
> - iterating over the unused tins and their internal queues to purge
> packets adds needless overhead to the hot path.
>
>Skip the entire loop when rate_adjust is set, as neither
>cake_clear_tin() nor the mtu_time update are needed when only the
>rate changes.
>
>The clearing loop runs on every rate adjustment from the dequeue path,
>clearing (max_tins - cur_tins) tins each time, so the cost grows the
>fewer tins the configured mode actually uses. Testing cake_mq over veth
>(8 rx/tx queues, 2 Gbit limit) with flent's [1] rrul and tcp_nup tests and
>32 TCP upstreams shows a large drop in loaded latency and a throughput
>gain, restoring behaviour to pre-15c2715a5264 levels:
>
> +------------+------+------+-------+-------+---------+
> | kernel | mode | test | base | load | tput |
> | | | | (ms) | (ms) | (Mbit) |
> +------------+------+------+-------+-------+---------+
> | net-next | be | rrul | 0.810 | 11.78 | 1469.67 |
> | net-next | be | nup | 0.637 | 85.71 | 1243.15 |
> | net-next | ds3 | rrul | 0.397 | 15.28 | 1770.06 |
> | net-next | ds3 | nup | 0.351 | 15.98 | 1799.39 |
> +------------+------+------+-------+-------+---------+
> | patched | be | rrul | 0.092 | 0.56 | 1873.40 |
> | patched | be | nup | 0.109 | 1.82 | 1869.12 |
> | patched | ds3 | rrul | 0.097 | 0.98 | 1866.10 |
> | patched | ds3 | nup | 0.101 | 0.51 | 1861.79 |
> +------------+------+------+-------+-------+---------+
>
>The same trend holds on real hardware (IPQ8074A, 4 rx/tx queues,
>OpenWrt): in besteffort mode the tcp_nup loaded latency drops from
>~470 ms to ~4 ms.
>
>[1] https://flent.org
>
>Fixes: 15c2715a5264 ("net/sched: sch_cake: fixup cake_mq rate adjustment for diffserv config")
>Signed-off-by: Jonas Köppeler <j.koeppeler@tu-berlin.de>
>Tested-by: Mike Pham <mikepham4321@gmail.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-21 6:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-20 21:14 [Cake] [PATCH net-next v2] net/sched: sch_cake: skip clearing unused tins during rate adjustment Jonas Köppeler
2026-07-21 6:55 ` [Cake] " Toke Høiland-Jørgensen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox