* [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
@ 2025-11-07 16:06 Marco Crivellari
2025-12-24 15:18 ` Marco Crivellari
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Marco Crivellari @ 2025-11-07 16:06 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Marco Crivellari, Michal Hocko,
Luis Chamberlain
Currently if a user enqueues 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 consistency cannot be addressed without refactoring the API.
system_unbound_wq should be the default workqueue so as not to enforce
locality constraints for random work whenever it's not required.
This continues the effort to refactor workqueue APIs, which began with
the introduction of new workqueues and a new alloc_workqueue flag in:
commit 128ea9f6ccfb ("workqueue: Add system_percpu_wq and system_dfl_wq")
commit 930c2ea566af ("workqueue: Add new WQ_PERCPU flag")
Switch to using system_dfl_wq because system_unbound_wq is going away as
part of a workqueue restructuring.
Suggested-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Marco Crivellari <marco.crivellari@suse.com>
---
Changes in v2:
- improved commit log
- rebased on v6.18-rc4
---
kernel/umh.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/umh.c b/kernel/umh.c
index b4da45a3a7cf..cda899327952 100644
--- a/kernel/umh.c
+++ b/kernel/umh.c
@@ -430,7 +430,7 @@ int call_usermodehelper_exec(struct subprocess_info *sub_info, int wait)
sub_info->complete = (wait == UMH_NO_WAIT) ? NULL : &done;
sub_info->wait = wait;
- queue_work(system_unbound_wq, &sub_info->work);
+ queue_work(system_dfl_wq, &sub_info->work);
if (wait == UMH_NO_WAIT) /* task has freed sub_info */
goto unlock;
--
2.51.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
@ 2025-12-24 15:18 ` Marco Crivellari
2026-02-04 11:12 ` Marco Crivellari
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2025-12-24 15:18 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> [...]
> ---
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/umh.c b/kernel/umh.c
> index b4da45a3a7cf..cda899327952 100644
> --- a/kernel/umh.c
> +++ b/kernel/umh.c
> @@ -430,7 +430,7 @@ int call_usermodehelper_exec(struct subprocess_info *sub_info, int wait)
> sub_info->complete = (wait == UMH_NO_WAIT) ? NULL : &done;
> sub_info->wait = wait;
>
> - queue_work(system_unbound_wq, &sub_info->work);
> + queue_work(system_dfl_wq, &sub_info->work);
> if (wait == UMH_NO_WAIT) /* task has freed sub_info */
> goto unlock;
Gentle ping.
Thanks!
--
Marco Crivellari
L3 Support Engineer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
2025-12-24 15:18 ` Marco Crivellari
@ 2026-02-04 11:12 ` Marco Crivellari
2026-02-23 10:38 ` Marco Crivellari
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2026-02-04 11:12 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> [...]
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Gentle ping.
Thanks!
--
Marco Crivellari
L3 Support Engineer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
2025-12-24 15:18 ` Marco Crivellari
2026-02-04 11:12 ` Marco Crivellari
@ 2026-02-23 10:38 ` Marco Crivellari
2026-02-23 13:26 ` Frederic Weisbecker
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2026-02-23 10:38 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Gentle ping.
Thanks!
--
Marco Crivellari
L3 Support Engineer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
` (2 preceding siblings ...)
2026-02-23 10:38 ` Marco Crivellari
@ 2026-02-23 13:26 ` Frederic Weisbecker
2026-03-13 14:11 ` Marco Crivellari
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Frederic Weisbecker @ 2026-02-23 13:26 UTC (permalink / raw)
To: Marco Crivellari
Cc: linux-kernel, Tejun Heo, Lai Jiangshan,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
Le Fri, Nov 07, 2025 at 05:06:38PM +0100, Marco Crivellari a écrit :
> Currently if a user enqueues 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 consistency cannot be addressed without refactoring the API.
>
> system_unbound_wq should be the default workqueue so as not to enforce
> locality constraints for random work whenever it's not required.
>
> This continues the effort to refactor workqueue APIs, which began with
> the introduction of new workqueues and a new alloc_workqueue flag in:
>
> commit 128ea9f6ccfb ("workqueue: Add system_percpu_wq and system_dfl_wq")
> commit 930c2ea566af ("workqueue: Add new WQ_PERCPU flag")
>
> Switch to using system_dfl_wq because system_unbound_wq is going away as
> part of a workqueue restructuring.
>
> Suggested-by: Tejun Heo <tj@kernel.org>
> Signed-off-by: Marco Crivellari <marco.crivellari@suse.com>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
--
Frederic Weisbecker
SUSE Labs
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
` (3 preceding siblings ...)
2026-02-23 13:26 ` Frederic Weisbecker
@ 2026-03-13 14:11 ` Marco Crivellari
2026-04-01 13:33 ` Marco Crivellari
2026-04-09 10:02 ` Marco Crivellari
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2026-03-13 14:11 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
Hi,
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> [...]
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Gentle ping.
Thanks.
--
Marco Crivellari
L3 Support Engineer
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
` (4 preceding siblings ...)
2026-03-13 14:11 ` Marco Crivellari
@ 2026-04-01 13:33 ` Marco Crivellari
2026-04-09 10:02 ` Marco Crivellari
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2026-04-01 13:33 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
Hi,
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> [...]
> Changes in v2:
> - improved commit log
> - rebased on v6.18-rc4
> ---
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Gentle ping.
Thanks!
--
Marco Crivellari
SUSE Labs
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
` (5 preceding siblings ...)
2026-04-01 13:33 ` Marco Crivellari
@ 2026-04-09 10:02 ` Marco Crivellari
6 siblings, 0 replies; 8+ messages in thread
From: Marco Crivellari @ 2026-04-09 10:02 UTC (permalink / raw)
To: linux-kernel
Cc: Tejun Heo, Lai Jiangshan, Frederic Weisbecker,
Sebastian Andrzej Siewior, Michal Hocko, Luis Chamberlain
On Fri, Nov 7, 2025 at 5:06 PM Marco Crivellari
<marco.crivellari@suse.com> wrote:
> [...]
> kernel/umh.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Hi,
Gentle ping.
Thanks!
--
Marco Crivellari
SUSE Labs
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-04-09 10:03 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-07 16:06 [PATCH v2] umh: replace use of system_unbound_wq with system_dfl_wq Marco Crivellari
2025-12-24 15:18 ` Marco Crivellari
2026-02-04 11:12 ` Marco Crivellari
2026-02-23 10:38 ` Marco Crivellari
2026-02-23 13:26 ` Frederic Weisbecker
2026-03-13 14:11 ` Marco Crivellari
2026-04-01 13:33 ` Marco Crivellari
2026-04-09 10:02 ` Marco Crivellari
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®