Skip to content

Commit 2e2e559

Browse files
DispatchCodemartinkpetersen
authored andcommitted
scsi: target: Add WQ_PERCPU to alloc_workqueue() users
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. alloc_workqueue() treats all queues as per-CPU by default, while unbound workqueues must opt-in via WQ_UNBOUND. This default is suboptimal: most workloads benefit from unbound queues, allowing the scheduler to place worker threads where they’re needed and reducing noise when CPUs are isolated. This continues the effort to refactor workqueue APIs, which began with the introduction of new workqueues and a new alloc_workqueue flag in: commit 128ea9f ("workqueue: Add system_percpu_wq and system_dfl_wq") commit 930c2ea ("workqueue: Add new WQ_PERCPU flag") This change adds a new WQ_PERCPU flag to explicitly request alloc_workqueue() to be per-cpu when WQ_UNBOUND has not been specified. With the introduction of the WQ_PERCPU flag (equivalent to !WQ_UNBOUND), any alloc_workqueue() caller that doesn’t explicitly specify WQ_UNBOUND must now use WQ_PERCPU. Once migration is complete, WQ_UNBOUND can be removed and unbound will become the implicit default. Suggested-by: Tejun Heo <tj@kernel.org> Signed-off-by: Marco Crivellari <marco.crivellari@suse.com> Link: https://patch.msgid.link/20251107154008.304127-1-marco.crivellari@suse.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent f60b895 commit 2e2e559

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

drivers/target/target_core_transport.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ int init_se_kmem_caches(void)
126126
}
127127

128128
target_completion_wq = alloc_workqueue("target_completion",
129-
WQ_MEM_RECLAIM, 0);
129+
WQ_MEM_RECLAIM | WQ_PERCPU, 0);
130130
if (!target_completion_wq)
131131
goto out_free_lba_map_mem_cache;
132132

133133
target_submission_wq = alloc_workqueue("target_submission",
134-
WQ_MEM_RECLAIM, 0);
134+
WQ_MEM_RECLAIM | WQ_PERCPU, 0);
135135
if (!target_submission_wq)
136136
goto out_free_completion_wq;
137137

drivers/target/target_core_xcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ static const struct target_core_fabric_ops xcopy_pt_tfo = {
462462

463463
int target_xcopy_setup_pt(void)
464464
{
465-
xcopy_wq = alloc_workqueue("xcopy_wq", WQ_MEM_RECLAIM, 0);
465+
xcopy_wq = alloc_workqueue("xcopy_wq", WQ_MEM_RECLAIM | WQ_PERCPU, 0);
466466
if (!xcopy_wq) {
467467
pr_err("Unable to allocate xcopy_wq\n");
468468
return -ENOMEM;

drivers/target/tcm_fc/tfc_conf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ static struct se_portal_group *ft_add_tpg(struct se_wwn *wwn, const char *name)
250250
tpg->lport_wwn = ft_wwn;
251251
INIT_LIST_HEAD(&tpg->lun_list);
252252

253-
wq = alloc_workqueue("tcm_fc", 0, 1);
253+
wq = alloc_workqueue("tcm_fc", WQ_PERCPU, 1);
254254
if (!wq) {
255255
kfree(tpg);
256256
return NULL;

0 commit comments

Comments
 (0)