summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-06-27 01:01:33 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2024-06-27 01:01:33 +0300
commit24ca36a562d63f1bff04c3f11236f52969c67717 (patch)
tree0b080b8a9da2c6d0d7918c46420f947d4c0b75bc /include
parent55027e689933ba2e64f3d245fb1ff185b3e7fc81 (diff)
parent231035f18d6b80e5c28732a20872398116a54ecd (diff)
downloadlinux-24ca36a562d63f1bff04c3f11236f52969c67717.tar.xz
Merge tag 'wq-for-6.10-rc5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue fixes from Tejun Heo: "Two patches to fix kworker name formatting" * tag 'wq-for-6.10-rc5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq: workqueue: Increase worker desc's length to 32 workqueue: Refactor worker ID formatting and make wq_worker_comm() use full ID string
Diffstat (limited to 'include')
-rw-r--r--include/linux/workqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index fb3993894536..d9968bfc8eac 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -95,7 +95,7 @@ enum wq_misc_consts {
WORK_BUSY_RUNNING = 1 << 1,
/* maximum string length for set_worker_desc() */
- WORKER_DESC_LEN = 24,
+ WORKER_DESC_LEN = 32,
};
/* Convenience constants - of type 'unsigned long', not 'enum'! */