From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: ThangNN99 <ngocthang2710.1999@gmail.com>
Cc: Vlastimil Babka <vbabka@kernel.org>, Harry Yoo <harry@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Clark Williams <clrkwllms@kernel.org>,
Steven Rostedt <rostedt@goodmis.org>, Hao Li <hao.li@linux.dev>,
Christoph Lameter <cl@gentwo.org>,
David Rientjes <rientjes@google.com>,
Roman Gushchin <roman.gushchin@linux.dev>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-rt-devel@lists.linux.dev,
syzbot+acf142088e0182172e58@syzkaller.appspotmail.com
Subject: Re: [PATCH v2] mm/slab: don't use kfree_rcu sheaves on PREEMPT_RT in kvfree_call_rcu()
Date: Mon, 31 Aug 2026 15:00:57 +0200 [thread overview]
Message-ID: <20260831130057.HLukQ-zm@linutronix.de> (raw)
In-Reply-To: <20260831060633.6831-1-ngocthang2710.1999@gmail.com>
On 2026-08-31 13:06:32 [+0700], ThangNN99 wrote:
> syzbot reports a possible circular locking dependency between
> &p->pi_lock and the per-CPU kfree_rcu sheaf lock (_T->lock) on
> PREEMPT_RT:
>
> __balance_push_cpu_stop() [holds p->pi_lock, raw]
> select_fallback_rq()
> cpuset_cpus_allowed_fallback()
> set_cpus_allowed_force()
> kfree_rcu(ac.user_mask)
> kvfree_call_rcu()
> kfree_rcu_sheaf()
> __kfree_rcu_sheaf()
> local_trylock(&s->cpu_sheaves->lock) <- _T->lock
>
> set_cpus_allowed_force() uses kfree_rcu() instead of kfree() here
> specifically because it can be called with p->pi_lock (a raw
> spinlock) held, and plain kfree() may sleep under PREEMPT_RT.
A raw_spinlock_t. Please don't invent new things.
…
> diff --git a/mm/slab_common.c b/mm/slab_common.c
> index b19ba1b31484..3de1eabe6c77 100644
> --- a/mm/slab_common.c
> +++ b/mm/slab_common.c
> @@ -1667,15 +1667,8 @@ static bool kfree_rcu_sheaf(void *obj)
> {
> struct kmem_cache *s;
> struct slab *slab;
> - unsigned int free_flags = SLAB_FREE_DEFAULT;
> -
> - /*
> - * It is not safe to spin on PREEMPT_RT because the kernel might be
> - * holding a raw spinlock and slab acquires sleeping locks.
> - */
> - if (IS_ENABLED(CONFIG_PREEMPT_RT))
> - free_flags = SLAB_FREE_NOLOCK;
>
> + /* Callers on PREEMPT_RT never reach here, see kvfree_call_rcu(). */
> if (is_vmalloc_addr(obj))
> return false;
>
> @@ -1685,7 +1678,7 @@ static bool kfree_rcu_sheaf(void *obj)
>
> s = slab->slab_cache;
> if (likely(!IS_ENABLED(CONFIG_NUMA) || slab_nid(slab) == numa_mem_id()))
> - return __kfree_rcu_sheaf(s, obj, free_flags);
> + return __kfree_rcu_sheaf(s, obj, SLAB_FREE_DEFAULT);
>
> return false;
> }
> @@ -2034,7 +2027,14 @@ void kvfree_call_rcu(struct kvfree_rcu_head *head, void *ptr)
> if (!head)
> might_sleep();
>
> - if (kfree_rcu_sheaf(ptr))
> + /*
> + * Callers may hold a raw spinlock here on PREEMPT_RT (e.g.
> + * set_cpus_allowed_force() with p->pi_lock held), and the sheaf/barn
No. All callers of set_cpus_allowed_force() hold task_struct::pi_lock.
> + * locks are also taken as blocking locks elsewhere, so trying them
> + * here creates a lockdep-visible ordering conflict. Skip sheaves on
> + * PREEMPT_RT.
> + */
> + if (!IS_ENABLED(CONFIG_PREEMPT_RT) && kfree_rcu_sheaf(ptr))
Given that this can hold the pi_lock I am not a big of this trylock
underneath. So skipping it is my favorite.
> return;
>
> // Queue the object but don't yet schedule the batch.
> diff --git a/mm/slub.c b/mm/slub.c
> index f9b56cb439e7..1e8bad7a018e 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -6088,10 +6088,10 @@ static void rcu_free_sheaf(struct rcu_head *head)
> /*
> * kvfree_call_rcu() can be called while holding a raw_spinlock_t. Since
> * __kfree_rcu_sheaf() may acquire a spinlock_t (sleeping lock on PREEMPT_RT),
> - * this would violate lock nesting rules. Therefore, kvfree_call_rcu() avoids
> - * this problem by passing SLAB_FREE_NOLOCK on PREEMPT_RT.
> + * this would violate lock nesting rules. kvfree_call_rcu() avoids this by
> + * bypassing the sheaves layer on PREEMPT_RT.
> *
> - * However, lockdep still complains that it is invalid to acquire spinlock_t
> + * lockdep still complains that it is invalid to acquire spinlock_t
> * while holding raw_spinlock_t, even on !PREEMPT_RT where spinlock_t is a
> * spinning lock. Tell lockdep that acquiring spinlock_t is valid here
> * by temporarily raising the wait-type to LD_WAIT_CONFIG. Skip the lockdep map
Sebastian
next prev parent reply other threads:[~2026-08-31 13:01 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-31 5:38 [PATCH] mm/slab: don't use kfree_rcu sheaves on PREEMPT_RT in kvfree_call_rcu() ThangNN99
2026-08-31 6:06 ` [PATCH v2] " ThangNN99
2026-08-31 13:00 ` Sebastian Andrzej Siewior [this message]
2026-08-31 13:32 ` [PATCH v3] " ThangNN99
2026-08-31 14:35 ` Sebastian Andrzej Siewior
2026-08-31 16:04 ` Vlastimil Babka (SUSE)
2026-08-31 16:17 ` [PATCH] mm/slab: don't use kfree_rcu_sheaf() on PREEMPT_RT again ThangNN99
2026-09-02 10:05 ` [PATCH v3] mm/slab: don't use kfree_rcu sheaves on PREEMPT_RT in kvfree_call_rcu() Harry Yoo
[not found] <20260831062054.319EA1F000E9@smtp.kernel.org>
2026-08-31 6:33 ` [PATCH v2] " ThangNN99
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=20260831130057.HLukQ-zm@linutronix.de \
--to=bigeasy@linutronix.de \
--cc=akpm@linux-foundation.org \
--cc=cl@gentwo.org \
--cc=clrkwllms@kernel.org \
--cc=hao.li@linux.dev \
--cc=harry@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-rt-devel@lists.linux.dev \
--cc=ngocthang2710.1999@gmail.com \
--cc=rientjes@google.com \
--cc=roman.gushchin@linux.dev \
--cc=rostedt@goodmis.org \
--cc=syzbot+acf142088e0182172e58@syzkaller.appspotmail.com \
--cc=vbabka@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox