Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.33 Removed upstreamed: generic/backport-6.18/742-v7.1-r8152-fix-incorrect-register-write-to-USB_UPHY_XTAL.patch[1] generic/backport-6.18/827-v7.0-crypto-inside-secure-eip93-fix-register-definition.patch[2] generic/backport-6.18/828-v7.0-crypto-inside-secure-eip93-register-hash-before-auth.patch[3] generic/backport-6.18/940-v7.1-net-dsa-realtek-rtl8365mb-fix-mode-mask-calculation.patch[4] generic/pending-6.18/928-crypto-eip93-fix-hmac-setkey-algo-selection.patch[5] All other patches automatically rebased via update_kernel.sh 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.18.33&id=50c601805fe3 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.18.33&id=7ed07c9ce525 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.18.33&id=b6263eb2b188 4. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.18.33&id=b707f3109f1a 5. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.18.33&id=fc9310d79fdb Build system: x86/64 Build-tested: x86/64-glibc Run-tested: x86/64-glibc Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/23419 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
188 lines
5.9 KiB
Diff
188 lines
5.9 KiB
Diff
From 15c2715a52645fd8e6e18b7abc3449292d118c7c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jonas=20K=C3=B6ppeler?= <j.koeppeler@tu-berlin.de>
|
|
Date: Thu, 26 Feb 2026 12:40:16 +0100
|
|
Subject: [PATCH] net/sched: sch_cake: fixup cake_mq rate adjustment for
|
|
diffserv config
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
cake_mq's rate adjustment during the sync periods did not adjust the
|
|
rates for every tin in a diffserv config. This lead to inconsistencies
|
|
of rates between the tins. Fix this by setting the rates for all tins
|
|
during synchronization.
|
|
|
|
Fixes: 1bddd758bac2 ("net/sched: sch_cake: share shaper state across sub-instances of cake_mq")
|
|
Signed-off-by: Jonas Köppeler <j.koeppeler@tu-berlin.de>
|
|
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
|
|
Link: https://patch.msgid.link/20260226-cake-mq-skip-sync-bandwidth-unlimited-v1-2-01830bb4db87@tu-berlin.de
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
net/sched/sch_cake.c | 50 ++++++++++++++++++++------------------------
|
|
1 file changed, 23 insertions(+), 27 deletions(-)
|
|
|
|
--- a/net/sched/sch_cake.c
|
|
+++ b/net/sched/sch_cake.c
|
|
@@ -391,8 +391,8 @@ static const u32 inv_sqrt_cache[REC_INV_
|
|
1239850263, 1191209601, 1147878294, 1108955788
|
|
};
|
|
|
|
-static void cake_set_rate(struct cake_tin_data *b, u64 rate, u32 mtu,
|
|
- u64 target_ns, u64 rtt_est_ns);
|
|
+static void cake_configure_rates(struct Qdisc *sch, u64 rate, bool rate_adjust);
|
|
+
|
|
/* http://en.wikipedia.org/wiki/Methods_of_computing_square_roots
|
|
* new_invsqrt = (invsqrt / 2) * (3 - count * invsqrt^2)
|
|
*
|
|
@@ -2045,12 +2045,9 @@ static struct sk_buff *cake_dequeue(stru
|
|
if (num_active_qs > 1)
|
|
new_rate = div64_u64(q->config->rate_bps, num_active_qs);
|
|
|
|
- /* mtu = 0 is used to only update the rate and not mess with cobalt params */
|
|
- cake_set_rate(b, new_rate, 0, 0, 0);
|
|
+ cake_configure_rates(sch, new_rate, true);
|
|
q->last_checked_active = now;
|
|
q->active_queues = num_active_qs;
|
|
- q->rate_ns = b->tin_rate_ns;
|
|
- q->rate_shft = b->tin_rate_shft;
|
|
}
|
|
|
|
begin:
|
|
@@ -2370,12 +2367,10 @@ static void cake_set_rate(struct cake_ti
|
|
b->cparams.p_dec = 1 << 20; /* 1/4096 */
|
|
}
|
|
|
|
-static int cake_config_besteffort(struct Qdisc *sch)
|
|
+static int cake_config_besteffort(struct Qdisc *sch, u64 rate, u32 mtu)
|
|
{
|
|
struct cake_sched_data *q = qdisc_priv(sch);
|
|
struct cake_tin_data *b = &q->tins[0];
|
|
- u32 mtu = psched_mtu(qdisc_dev(sch));
|
|
- u64 rate = q->config->rate_bps;
|
|
|
|
q->tin_cnt = 1;
|
|
|
|
@@ -2389,12 +2384,10 @@ static int cake_config_besteffort(struct
|
|
return 0;
|
|
}
|
|
|
|
-static int cake_config_precedence(struct Qdisc *sch)
|
|
+static int cake_config_precedence(struct Qdisc *sch, u64 rate, u32 mtu)
|
|
{
|
|
/* convert high-level (user visible) parameters into internal format */
|
|
struct cake_sched_data *q = qdisc_priv(sch);
|
|
- u32 mtu = psched_mtu(qdisc_dev(sch));
|
|
- u64 rate = q->config->rate_bps;
|
|
u32 quantum = 256;
|
|
u32 i;
|
|
|
|
@@ -2465,7 +2458,7 @@ static int cake_config_precedence(struct
|
|
* Total 12 traffic classes.
|
|
*/
|
|
|
|
-static int cake_config_diffserv8(struct Qdisc *sch)
|
|
+static int cake_config_diffserv8(struct Qdisc *sch, u64 rate, u32 mtu)
|
|
{
|
|
/* Pruned list of traffic classes for typical applications:
|
|
*
|
|
@@ -2482,8 +2475,6 @@ static int cake_config_diffserv8(struct
|
|
*/
|
|
|
|
struct cake_sched_data *q = qdisc_priv(sch);
|
|
- u32 mtu = psched_mtu(qdisc_dev(sch));
|
|
- u64 rate = q->config->rate_bps;
|
|
u32 quantum = 256;
|
|
u32 i;
|
|
|
|
@@ -2513,7 +2504,7 @@ static int cake_config_diffserv8(struct
|
|
return 0;
|
|
}
|
|
|
|
-static int cake_config_diffserv4(struct Qdisc *sch)
|
|
+static int cake_config_diffserv4(struct Qdisc *sch, u64 rate, u32 mtu)
|
|
{
|
|
/* Further pruned list of traffic classes for four-class system:
|
|
*
|
|
@@ -2526,8 +2517,6 @@ static int cake_config_diffserv4(struct
|
|
*/
|
|
|
|
struct cake_sched_data *q = qdisc_priv(sch);
|
|
- u32 mtu = psched_mtu(qdisc_dev(sch));
|
|
- u64 rate = q->config->rate_bps;
|
|
u32 quantum = 1024;
|
|
|
|
q->tin_cnt = 4;
|
|
@@ -2555,7 +2544,7 @@ static int cake_config_diffserv4(struct
|
|
return 0;
|
|
}
|
|
|
|
-static int cake_config_diffserv3(struct Qdisc *sch)
|
|
+static int cake_config_diffserv3(struct Qdisc *sch, u64 rate, u32 mtu)
|
|
{
|
|
/* Simplified Diffserv structure with 3 tins.
|
|
* Latency Sensitive (CS7, CS6, EF, VA, TOS4)
|
|
@@ -2563,8 +2552,6 @@ static int cake_config_diffserv3(struct
|
|
* Low Priority (LE, CS1)
|
|
*/
|
|
struct cake_sched_data *q = qdisc_priv(sch);
|
|
- u32 mtu = psched_mtu(qdisc_dev(sch));
|
|
- u64 rate = q->config->rate_bps;
|
|
u32 quantum = 1024;
|
|
|
|
q->tin_cnt = 3;
|
|
@@ -2589,32 +2576,33 @@ static int cake_config_diffserv3(struct
|
|
return 0;
|
|
}
|
|
|
|
-static void cake_reconfigure(struct Qdisc *sch)
|
|
+static void cake_configure_rates(struct Qdisc *sch, u64 rate, bool rate_adjust)
|
|
{
|
|
+ u32 mtu = likely(rate_adjust) ? 0 : psched_mtu(qdisc_dev(sch));
|
|
struct cake_sched_data *qd = qdisc_priv(sch);
|
|
struct cake_sched_config *q = qd->config;
|
|
int c, ft;
|
|
|
|
switch (q->tin_mode) {
|
|
case CAKE_DIFFSERV_BESTEFFORT:
|
|
- ft = cake_config_besteffort(sch);
|
|
+ ft = cake_config_besteffort(sch, rate, mtu);
|
|
break;
|
|
|
|
case CAKE_DIFFSERV_PRECEDENCE:
|
|
- ft = cake_config_precedence(sch);
|
|
+ ft = cake_config_precedence(sch, rate, mtu);
|
|
break;
|
|
|
|
case CAKE_DIFFSERV_DIFFSERV8:
|
|
- ft = cake_config_diffserv8(sch);
|
|
+ ft = cake_config_diffserv8(sch, rate, mtu);
|
|
break;
|
|
|
|
case CAKE_DIFFSERV_DIFFSERV4:
|
|
- ft = cake_config_diffserv4(sch);
|
|
+ ft = cake_config_diffserv4(sch, rate, mtu);
|
|
break;
|
|
|
|
case CAKE_DIFFSERV_DIFFSERV3:
|
|
default:
|
|
- ft = cake_config_diffserv3(sch);
|
|
+ ft = cake_config_diffserv3(sch, rate, mtu);
|
|
break;
|
|
}
|
|
|
|
@@ -2625,6 +2613,14 @@ static void cake_reconfigure(struct Qdis
|
|
|
|
qd->rate_ns = qd->tins[ft].tin_rate_ns;
|
|
qd->rate_shft = qd->tins[ft].tin_rate_shft;
|
|
+}
|
|
+
|
|
+static void cake_reconfigure(struct Qdisc *sch)
|
|
+{
|
|
+ struct cake_sched_data *qd = qdisc_priv(sch);
|
|
+ struct cake_sched_config *q = qd->config;
|
|
+
|
|
+ cake_configure_rates(sch, qd->config->rate_bps, false);
|
|
|
|
if (q->buffer_config_limit) {
|
|
qd->buffer_limit = q->buffer_config_limit;
|