On 9/18/25 10:55 AM, Marco Crivellari wrote: > Currently if a user enqueue a work item using schedule_delayed_work() the > used wq is "system_wq" (per-cpu wq) while queue_delayed_work() use > WORK_CPU_UNBOUND (used when a cpu is not specified). The same applies to > schedule_work() that is using system_wq and queue_work(), that makes use > again of WORK_CPU_UNBOUND. > > This lack of consistentcy cannot be addressed without refactoring the API. > > This specific patch replace system_wq with system_dfl_wq, the new unbound > workqueue, because the users does not benefit from a per-cpu wq. > > Suggested-by: Tejun Heo <t...@kernel.org> > Signed-off-by: Marco Crivellari <marco.crivell...@suse.com>
Reviewed-by: Petr Pavlu <petr.pa...@suse.com> -- Thanks, Petr