diff options
| author | Tejun Heo <tj@kernel.org> | 2026-03-09 10:06:02 -1000 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2026-03-09 10:06:34 -1000 |
| commit | b8840942644cd76438a192ff493c60ec2169f7ef (patch) | |
| tree | 932a4433907e314c70a511be1e1d4943e84bd255 | |
| parent | 0e7cd9cef61fde36ebfb653fe9e7a9722185cb57 (diff) | |
sched_ext: Replace system_unbound_wq with system_dfl_wq in scx_kobj_release()
c2a57380df9d ("sched: Replace use of system_unbound_wq with system_dfl_wq")
converted system_unbound_wq usages in ext.c but missed the queue_rcu_work()
call in scx_kobj_release() which was added later by the dynamic scx_sched
allocation conversion. Apply the same conversion.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Marco Crivellari <marco.crivellari@suse.com>
| -rw-r--r-- | kernel/sched/ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c index b35b98020f3b..07476355bfd5 100644 --- a/kernel/sched/ext.c +++ b/kernel/sched/ext.c @@ -4546,7 +4546,7 @@ static void scx_kobj_release(struct kobject *kobj) struct scx_sched *sch = container_of(kobj, struct scx_sched, kobj); INIT_RCU_WORK(&sch->rcu_work, scx_sched_free_rcu_work); - queue_rcu_work(system_unbound_wq, &sch->rcu_work); + queue_rcu_work(system_dfl_wq, &sch->rcu_work); } static ssize_t scx_attr_ops_show(struct kobject *kobj, |
