mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
kernel: backport fixes missing in stable
The a stable commit depend son these additional backports.
Without these additional backports this commit causes kernel warnings:
commit e269f29e9395527bc00c213c6b15da04ebb35070
Author: Lion Ackermann <nnamrec@gmail.com>
Date: Mon Jun 30 15:27:30 2025 +0200
net/sched: Always pass notifications when child class becomes empty
[ Upstream commit 103406b38c600fec1fe375a77b27d87e314aea09 ]
Link: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.189&id=e269f29e9395527bc00c213c6b15da04ebb35070
Link: https://github.com/openwrt/openwrt/pull/19695
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
5509043972
commit
242bca458f
4 changed files with 207 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Date: Thu, 3 Apr 2025 14:10:23 -0700
|
||||
Subject: sch_htb: make htb_qlen_notify() idempotent
|
||||
|
||||
htb_qlen_notify() always deactivates the HTB class and in fact could
|
||||
trigger a warning if it is already deactivated. Therefore, it is not
|
||||
idempotent and not friendly to its callers, like fq_codel_dequeue().
|
||||
|
||||
Let's make it idempotent to ease qdisc_tree_reduce_backlog() callers'
|
||||
life.
|
||||
|
||||
Reported-by: Gerrard Tai <gerrard.tai@starlabs.sg>
|
||||
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Reviewed-by: Simon Horman <horms@kernel.org>
|
||||
Link: https://patch.msgid.link/20250403211033.166059-2-xiyou.wangcong@gmail.com
|
||||
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
|
||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
||||
(cherry picked from commit 5ba8b837b522d7051ef81bacf3d95383ff8edce5)
|
||||
---
|
||||
net/sched/sch_htb.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
--- a/net/sched/sch_htb.c
|
||||
+++ b/net/sched/sch_htb.c
|
||||
@@ -1504,6 +1504,8 @@ static void htb_qlen_notify(struct Qdisc
|
||||
{
|
||||
struct htb_class *cl = (struct htb_class *)arg;
|
||||
|
||||
+ if (!cl->prio_activity)
|
||||
+ return;
|
||||
htb_deactivate(qdisc_priv(sch), cl);
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,61 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Date: Thu, 3 Apr 2025 14:10:24 -0700
|
||||
Subject: sch_drr: make drr_qlen_notify() idempotent
|
||||
|
||||
drr_qlen_notify() always deletes the DRR class from its active list
|
||||
with list_del(), therefore, it is not idempotent and not friendly
|
||||
to its callers, like fq_codel_dequeue().
|
||||
|
||||
Let's make it idempotent to ease qdisc_tree_reduce_backlog() callers'
|
||||
life. Also change other list_del()'s to list_del_init() just to be
|
||||
extra safe.
|
||||
|
||||
Reported-by: Gerrard Tai <gerrard.tai@starlabs.sg>
|
||||
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Reviewed-by: Simon Horman <horms@kernel.org>
|
||||
Link: https://patch.msgid.link/20250403211033.166059-3-xiyou.wangcong@gmail.com
|
||||
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
|
||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
||||
(cherry picked from commit df008598b3a00be02a8051fde89ca0fbc416bd55)
|
||||
---
|
||||
net/sched/sch_drr.c | 7 ++++---
|
||||
1 file changed, 4 insertions(+), 3 deletions(-)
|
||||
|
||||
--- a/net/sched/sch_drr.c
|
||||
+++ b/net/sched/sch_drr.c
|
||||
@@ -111,6 +111,7 @@ static int drr_change_class(struct Qdisc
|
||||
if (cl == NULL)
|
||||
return -ENOBUFS;
|
||||
|
||||
+ INIT_LIST_HEAD(&cl->alist);
|
||||
cl->common.classid = classid;
|
||||
cl->quantum = quantum;
|
||||
cl->qdisc = qdisc_create_dflt(sch->dev_queue,
|
||||
@@ -235,7 +236,7 @@ static void drr_qlen_notify(struct Qdisc
|
||||
{
|
||||
struct drr_class *cl = (struct drr_class *)arg;
|
||||
|
||||
- list_del(&cl->alist);
|
||||
+ list_del_init(&cl->alist);
|
||||
}
|
||||
|
||||
static int drr_dump_class(struct Qdisc *sch, unsigned long arg,
|
||||
@@ -402,7 +403,7 @@ static struct sk_buff *drr_dequeue(struc
|
||||
if (unlikely(skb == NULL))
|
||||
goto out;
|
||||
if (cl->qdisc->q.qlen == 0)
|
||||
- list_del(&cl->alist);
|
||||
+ list_del_init(&cl->alist);
|
||||
|
||||
bstats_update(&cl->bstats, skb);
|
||||
qdisc_bstats_update(sch, skb);
|
||||
@@ -443,7 +444,7 @@ static void drr_reset_qdisc(struct Qdisc
|
||||
for (i = 0; i < q->clhash.hashsize; i++) {
|
||||
hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) {
|
||||
if (cl->qdisc->q.qlen)
|
||||
- list_del(&cl->alist);
|
||||
+ list_del_init(&cl->alist);
|
||||
qdisc_reset(cl->qdisc);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Date: Thu, 3 Apr 2025 14:10:25 -0700
|
||||
Subject: sch_hfsc: make hfsc_qlen_notify() idempotent
|
||||
|
||||
hfsc_qlen_notify() is not idempotent either and not friendly
|
||||
to its callers, like fq_codel_dequeue(). Let's make it idempotent
|
||||
to ease qdisc_tree_reduce_backlog() callers' life:
|
||||
|
||||
1. update_vf() decreases cl->cl_nactive, so we can check whether it is
|
||||
non-zero before calling it.
|
||||
|
||||
2. eltree_remove() always removes RB node cl->el_node, but we can use
|
||||
RB_EMPTY_NODE() + RB_CLEAR_NODE() to make it safe.
|
||||
|
||||
Reported-by: Gerrard Tai <gerrard.tai@starlabs.sg>
|
||||
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Reviewed-by: Simon Horman <horms@kernel.org>
|
||||
Link: https://patch.msgid.link/20250403211033.166059-4-xiyou.wangcong@gmail.com
|
||||
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
|
||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
||||
(cherry picked from commit 51eb3b65544c9efd6a1026889ee5fb5aa62da3bb)
|
||||
---
|
||||
net/sched/sch_hfsc.c | 8 ++++++--
|
||||
1 file changed, 6 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/net/sched/sch_hfsc.c
|
||||
+++ b/net/sched/sch_hfsc.c
|
||||
@@ -209,7 +209,10 @@ eltree_insert(struct hfsc_class *cl)
|
||||
static inline void
|
||||
eltree_remove(struct hfsc_class *cl)
|
||||
{
|
||||
- rb_erase(&cl->el_node, &cl->sched->eligible);
|
||||
+ if (!RB_EMPTY_NODE(&cl->el_node)) {
|
||||
+ rb_erase(&cl->el_node, &cl->sched->eligible);
|
||||
+ RB_CLEAR_NODE(&cl->el_node);
|
||||
+ }
|
||||
}
|
||||
|
||||
static inline void
|
||||
@@ -1231,7 +1234,8 @@ hfsc_qlen_notify(struct Qdisc *sch, unsi
|
||||
/* vttree is now handled in update_vf() so that update_vf(cl, 0, 0)
|
||||
* needs to be called explicitly to remove a class from vttree.
|
||||
*/
|
||||
- update_vf(cl, 0, 0);
|
||||
+ if (cl->cl_nactive)
|
||||
+ update_vf(cl, 0, 0);
|
||||
if (cl->cl_flags & HFSC_RSC)
|
||||
eltree_remove(cl);
|
||||
}
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Date: Thu, 3 Apr 2025 14:10:26 -0700
|
||||
Subject: sch_qfq: make qfq_qlen_notify() idempotent
|
||||
|
||||
qfq_qlen_notify() always deletes its class from its active list
|
||||
with list_del_init() _and_ calls qfq_deactivate_agg() when the whole list
|
||||
becomes empty.
|
||||
|
||||
To make it idempotent, just skip everything when it is not in the active
|
||||
list.
|
||||
|
||||
Also change other list_del()'s to list_del_init() just to be extra safe.
|
||||
|
||||
Reported-by: Gerrard Tai <gerrard.tai@starlabs.sg>
|
||||
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
|
||||
Reviewed-by: Simon Horman <horms@kernel.org>
|
||||
Link: https://patch.msgid.link/20250403211033.166059-5-xiyou.wangcong@gmail.com
|
||||
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
|
||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
||||
(cherry picked from commit 55f9eca4bfe30a15d8656f915922e8c98b7f0728)
|
||||
---
|
||||
net/sched/sch_qfq.c | 7 +++++--
|
||||
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/net/sched/sch_qfq.c
|
||||
+++ b/net/sched/sch_qfq.c
|
||||
@@ -354,7 +354,7 @@ static void qfq_deactivate_class(struct
|
||||
struct qfq_aggregate *agg = cl->agg;
|
||||
|
||||
|
||||
- list_del(&cl->alist); /* remove from RR queue of the aggregate */
|
||||
+ list_del_init(&cl->alist); /* remove from RR queue of the aggregate */
|
||||
if (list_empty(&agg->active)) /* agg is now inactive */
|
||||
qfq_deactivate_agg(q, agg);
|
||||
}
|
||||
@@ -482,6 +482,7 @@ static int qfq_change_class(struct Qdisc
|
||||
|
||||
cl->common.classid = classid;
|
||||
cl->deficit = lmax;
|
||||
+ INIT_LIST_HEAD(&cl->alist);
|
||||
|
||||
cl->qdisc = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
|
||||
classid, NULL);
|
||||
@@ -996,7 +997,7 @@ static struct sk_buff *agg_dequeue(struc
|
||||
cl->deficit -= (int) len;
|
||||
|
||||
if (cl->qdisc->q.qlen == 0) /* no more packets, remove from list */
|
||||
- list_del(&cl->alist);
|
||||
+ list_del_init(&cl->alist);
|
||||
else if (cl->deficit < qdisc_pkt_len(cl->qdisc->ops->peek(cl->qdisc))) {
|
||||
cl->deficit += agg->lmax;
|
||||
list_move_tail(&cl->alist, &agg->active);
|
||||
@@ -1428,6 +1429,8 @@ static void qfq_qlen_notify(struct Qdisc
|
||||
struct qfq_sched *q = qdisc_priv(sch);
|
||||
struct qfq_class *cl = (struct qfq_class *)arg;
|
||||
|
||||
+ if (list_empty(&cl->alist))
|
||||
+ return;
|
||||
qfq_deactivate_class(q, cl);
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue