Re: [PATCH] kernel/net: missused TCQ_F_NOLOCK flag

From: Florian Westphal
Date: Thu Aug 01 2024 - 09:02:58 EST


Wojciech Gładysz <wojciech.gladysz@xxxxxxxxxxxx> wrote:
> TCQ_F_NOLOCK yields no locking option for a qdisc. At some places in the
> code the testing for the flag seems logically reverted. The change fixes
> the following lockdep issue.
>
> ======================================================
> WARNING: possible circular locking dependency detected
> 5.10.0-syzkaller #0 Not tainted

This kernel is over 3 years old. Please either only fuzz
on net or net-next and keep them up-to-date, or wait for
the fuzzer to get a reproducer and then verify that reproducer
still triggers on current kernels.

> static inline bool qdisc_is_running(struct Qdisc *qdisc)
> {
> - if (qdisc->flags & TCQ_F_NOLOCK)
> + if (!(qdisc->flags & TCQ_F_NOLOCK))
> return spin_is_locked(&qdisc->seqlock);

Are you absolutely sure? I find it hard to believe something
like this would go unnoticed for years.

Curious glance tells me seqlock is used to sync nolock qdiscs vs.
qdisc reset, i.e. exiting code is correct.