Skip to content

Commit 8318d6a

Browse files
Audra Mitchellhtejun
authored andcommitted
workqueue: Shorten events_freezable_power_efficient name
Since we have set the WQ_NAME_LEN to 32, decrease the name of events_freezable_power_efficient so that it does not trip the name length warning when the workqueue is created. Signed-off-by: Audra Mitchell <audra@redhat.com> Signed-off-by: Tejun Heo <tj@kernel.org>
1 parent a6b48c8 commit 8318d6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/workqueue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6706,7 +6706,7 @@ void __init workqueue_init_early(void)
67066706
WQ_FREEZABLE, 0);
67076707
system_power_efficient_wq = alloc_workqueue("events_power_efficient",
67086708
WQ_POWER_EFFICIENT, 0);
6709-
system_freezable_power_efficient_wq = alloc_workqueue("events_freezable_power_efficient",
6709+
system_freezable_power_efficient_wq = alloc_workqueue("events_freezable_pwr_efficient",
67106710
WQ_FREEZABLE | WQ_POWER_EFFICIENT,
67116711
0);
67126712
BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||

0 commit comments

Comments
 (0)