diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-27 00:01:33 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-27 00:01:33 +0200 |
commit | 24ca36a562d63f1bff04c3f11236f52969c67717 (patch) | |
tree | 0b080b8a9da2c6d0d7918c46420f947d4c0b75bc /include | |
parent | Merge tag 'input-for-v6.10-rc5' of git://git.kernel.org/pub/scm/linux/kernel/... (diff) | |
parent | workqueue: Increase worker desc's length to 32 (diff) | |
download | linux-24ca36a562d63f1bff04c3f11236f52969c67717.tar.xz linux-24ca36a562d63f1bff04c3f11236f52969c67717.zip |
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.h | 2 |
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'! */ |