From: "Toke Høiland-Jørgensen" <toke@toke.dk>
To: Jakub Kicinski <kuba@kernel.org>
Cc: Xiang Mei <xmei5@asu.edu>,
security@kernel.org, netdev@vger.kernel.org,
xiyou.wangcong@gmail.com, cake@lists.bufferbloat.net,
bestswngs@gmail.com
Subject: Re: [PATCH net v8 1/2] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop
Date: Tue, 02 Dec 2025 11:13:06 +0100 [thread overview]
Message-ID: <878qfl9op9.fsf@toke.dk> (raw)
In-Reply-To: <20251201170505.6e74c1e4@kernel.org>
Jakub Kicinski <kuba@kernel.org> writes:
> On Fri, 28 Nov 2025 10:15:53 +0100 Toke Høiland-Jørgensen wrote:
>> Xiang Mei <xmei5@asu.edu> writes:
>>
>> > In cake_drop(), qdisc_tree_reduce_backlog() is used to update the qlen
>> > and backlog of the qdisc hierarchy. Its caller, cake_enqueue(), assumes
>> > that the parent qdisc will enqueue the current packet. However, this
>> > assumption breaks when cake_enqueue() returns NET_XMIT_CN: the parent
>> > qdisc stops enqueuing current packet, leaving the tree qlen/backlog
>> > accounting inconsistent. This mismatch can lead to a NULL dereference
>> > (e.g., when the parent Qdisc is qfq_qdisc).
>> >
>> > This patch computes the qlen/backlog delta in a more robust way by
>> > observing the difference before and after the series of cake_drop()
>> > calls, and then compensates the qdisc tree accounting if cake_enqueue()
>> > returns NET_XMIT_CN.
>> >
>> > To ensure correct compensation when ACK thinning is enabled, a new
>> > variable is introduced to keep qlen unchanged.
>> >
>> > Fixes: 15de71d06a40 ("net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit")
>> > Signed-off-by: Xiang Mei <xmei5@asu.edu>
>>
>> Please retain tags when reposting...
>>
>> Reviewed-by: Toke Høiland-Jørgensen <toke@toke.dk>
>
> AI code review asks:
>
> When ACK thinning occurs, the incoming packet contributes len -
> ack_pkt_len bytes to sch->qstats.backlog, but this compensation uses
> the full len value. Should this be prev_backlog - (len - ack_pkt_len)
> to match what was actually added to the backlog?
No, there's a separate qdisc_tree_reduce_backlog(sch, 1, ack_pkt_len)
as part of the ACK thinning that compensates for the difference.
-Toke
next prev parent reply other threads:[~2025-12-02 10:13 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-28 0:14 [PATCH net v8 1/2] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Xiang Mei
2025-11-28 0:14 ` [PATCH net v8 2/2] selftests/tc-testing: Test CAKE scheduler when enqueue drops packets Xiang Mei
2025-11-28 9:16 ` Toke Høiland-Jørgensen
2025-11-28 9:15 ` [PATCH net v8 1/2] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Toke Høiland-Jørgensen
2025-11-28 18:49 ` Xiang Mei
2025-12-02 1:05 ` Jakub Kicinski
2025-12-02 10:13 ` Toke Høiland-Jørgensen [this message]
2025-12-02 12:40 ` patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=878qfl9op9.fsf@toke.dk \
--to=toke@toke.dk \
--cc=bestswngs@gmail.com \
--cc=cake@lists.bufferbloat.net \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=security@kernel.org \
--cc=xiyou.wangcong@gmail.com \
--cc=xmei5@asu.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.