summaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorAudra Mitchell <audra@redhat.com>2024-01-25 14:05:32 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-04-03 15:28:39 +0200
commit8b934390272d50ae0e7e320617437a03e5712baa (patch)
treec03da4d145b142184b70c91b09a60d74283d923a /kernel/workqueue.c
parent47ccb849a0230793bb0873f8bbfb142d3597b6cb (diff)
downloadlinux-8b934390272d50ae0e7e320617437a03e5712baa.tar.gz
linux-8b934390272d50ae0e7e320617437a03e5712baa.tar.bz2
linux-8b934390272d50ae0e7e320617437a03e5712baa.zip
workqueue: Shorten events_freezable_power_efficient name
commit 8318d6a6362f5903edb4c904a8dd447e59be4ad1 upstream. 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r--kernel/workqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 7d231bbd1659..66a270e235b4 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -7109,7 +7109,7 @@ void __init workqueue_init_early(void)
WQ_FREEZABLE, 0);
system_power_efficient_wq = alloc_workqueue("events_power_efficient",
WQ_POWER_EFFICIENT, 0);
- system_freezable_power_efficient_wq = alloc_workqueue("events_freezable_power_efficient",
+ system_freezable_power_efficient_wq = alloc_workqueue("events_freezable_pwr_efficient",
WQ_FREEZABLE | WQ_POWER_EFFICIENT,
0);
BUG_ON(!system_wq || !system_highpri_wq || !system_long_wq ||