]> www.infradead.org Git - users/willy/xarray.git/commit
sched_ext: Fix rq lock state in hotplug ops
authorAndrea Righi <arighi@nvidia.com>
Mon, 28 Apr 2025 21:43:20 +0000 (23:43 +0200)
committerTejun Heo <tj@kernel.org>
Tue, 29 Apr 2025 18:01:32 +0000 (08:01 -1000)
commite38be1c7647c8c78304ce6d931b3b654e27948b3
treeec818c075b5a839f9d540647e9463e996953902f
parente7dcd1304b9ac08c428c84fdb96ce6a04ff2114f
sched_ext: Fix rq lock state in hotplug ops

The ops.cpu_online() and ops.cpu_offline() callbacks incorrectly assume
that the rq involved in the operation is locked, which is not the case
during hotplug, triggering the following warning:

  WARNING: CPU: 1 PID: 20 at kernel/sched/sched.h:1504 handle_hotplug+0x280/0x340

Fix by not tracking the target rq as locked in the context of
ops.cpu_online() and ops.cpu_offline().

Fixes: 18853ba782bef ("sched_ext: Track currently locked rq")
Reported-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrea Righi <arighi@nvidia.com>
Tested-by: Changwoo Min <changwoo@igalia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/sched/ext.c