Re: [PATCH] rhashtable: Fix potential deadlock by moving schedule_work outside lock
From: Tejun Heo <tj@kernel.org>
Date: 2024-12-03 20:16:26
Also in:
lkml
From: Tejun Heo <tj@kernel.org>
Date: 2024-12-03 20:16:26
Also in:
lkml
On Thu, Nov 28, 2024 at 04:16:25AM -0800, Breno Leitao wrote:
Move the hash table growth check and work scheduling outside the
rht lock to prevent a possible circular locking dependency.
The original implementation could trigger a lockdep warning due to
a potential deadlock scenario involving nested locks between
rhashtable bucket, rq lock, and dsq lock. By relocating the
growth check and work scheduling after releasing the rth lock, we break
this potential deadlock chain.
This change expands the flexibility of rhashtable by removing
restrictive locking that previously limited its use in scheduler
and workqueue contexts.
Import to say that this calls rht_grow_above_75(), which reads from
struct rhashtable without holding the lock, if this is a problem, we can
move the check to the lock, and schedule the workqueue after the lock.
Fixes: f0e1a0643a59 ("sched_ext: Implement BPF extensible scheduler class")
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Breno Leitao <leitao@debian.org>Acked-by: Tejun Heo [off-list ref] This solves a possible deadlock for sched_ext and makes rhashtable more useful and I don't see any downsides. Andrew, can you please pick up this one? Thanks. -- tejun