workqueue: Bind unbound workqueue rescuer to wq_unbound_cpumask
authorWaiman Long <longman@redhat.com>
Thu, 8 Feb 2024 16:10:14 +0000 (11:10 -0500)
committerTejun Heo <tj@kernel.org>
Thu, 8 Feb 2024 19:23:38 +0000 (09:23 -1000)
Commit 85f0ab43f9de ("kernel/workqueue: Bind rescuer to unbound
cpumask for WQ_UNBOUND") modified init_rescuer() to bind rescuer of
an unbound workqueue to the cpumask in wq->unbound_attrs. However
unbound_attrs->cpumask's of all workqueues are initialized to
cpu_possible_mask and will only be changed if it has the WQ_SYSFS flag
to expose a cpumask sysfs file to be written by users. So this patch
doesn't achieve what it is intended to do.

If an unbound workqueue is created after wq_unbound_cpumask is modified
and there is no more unbound cpumask update after that, the unbound
rescuer will be bound to all CPUs unless the workqueue is created
with the WQ_SYSFS flag and a user explicitly modified its cpumask
sysfs file.  Fix this problem by binding directly to wq_unbound_cpumask
in init_rescuer().

Fixes: 85f0ab43f9de ("kernel/workqueue: Bind rescuer to unbound cpumask for WQ_UNBOUND")
Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c

index a24c7cfb80b4e5a64ae6f5887e1d30fbbb02ba11..cd2c6edc5c661dbfc3b86041476db5c1979c739b 100644 (file)
@@ -5299,7 +5299,7 @@ static int init_rescuer(struct workqueue_struct *wq)
 
        wq->rescuer = rescuer;
        if (wq->flags & WQ_UNBOUND)
-               kthread_bind_mask(rescuer->task, wq->unbound_attrs->cpumask);
+               kthread_bind_mask(rescuer->task, wq_unbound_cpumask);
        else
                kthread_bind_mask(rescuer->task, cpu_possible_mask);
        wake_up_process(rescuer->task);