aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c
diff options
context:
space:
mode:
authorAudra Mitchell <audra@redhat.com>2024-01-25 14:05:32 -0500
committerTejun Heo <tj@kernel.org>2024-01-25 09:11:40 -1000
commit8318d6a6362f5903edb4c904a8dd447e59be4ad1 (patch)
tree456b29784cf9284364878e143ebe5a37c646bdc2 /kernel/workqueue.c
parenta6b48c83d28e21ddcd6a080128bb73f9e3d130ac (diff)
downloadlinux-8318d6a6362f5903edb4c904a8dd447e59be4ad1.tar.gz
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>
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 8ca65665efe966..ee6aa1b897e0c2 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -6706,7 +6706,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 ||