Skip to content

Commit 0bfa36f

Browse files
committed
Merge tag 'scmi-fix-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into arm/fixes
Arm SCMI fix for v6.4 Single fix for incorrect invocation of alloc_workqueue() where WQ_SYSFS flag is passed as @max_active parameter instead of OR'ing with the other flags in the @flags parameter. * tag 'scmi-fix-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: firmware: arm_scmi: Fix incorrect alloc_workqueue() invocation Link: https://lore.kernel.org/r/20230509143529.1188812-1-sudeep.holla@arm.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2 parents d14b555 + 44e8d5a commit 0bfa36f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/arm_scmi/raw_mode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ static int scmi_xfer_raw_worker_init(struct scmi_raw_mode_info *raw)
10661066

10671067
raw->wait_wq = alloc_workqueue("scmi-raw-wait-wq-%d",
10681068
WQ_UNBOUND | WQ_FREEZABLE |
1069-
WQ_HIGHPRI, WQ_SYSFS, raw->id);
1069+
WQ_HIGHPRI | WQ_SYSFS, 0, raw->id);
10701070
if (!raw->wait_wq)
10711071
return -ENOMEM;
10721072

0 commit comments

Comments
 (0)