]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
workqueue: fix typo in comment
authorGuan-Chun Wu <409411716@gms.tku.edu.tw>
Sat, 3 May 2025 08:12:03 +0000 (16:12 +0800)
committerTejun Heo <tj@kernel.org>
Mon, 5 May 2025 23:43:16 +0000 (13:43 -1000)
Fix a duplicated word "that that" in the comment describing the
@max_active behavior for unbound workqueues.

Signed-off-by: Guan-Chun Wu <409411716@gms.tku.edu.tw>
Signed-off-by: Tejun Heo <tj@kernel.org>
include/linux/workqueue.h

index b0dc957c3e56024468bee708e853aaf5e2cbf531..a6dacc0eb6886bfa4e350aa3f77a9b78e9479f83 100644 (file)
@@ -480,7 +480,7 @@ void workqueue_softirq_dead(unsigned int cpu);
  * executing at most one work item for the workqueue.
  *
  * For unbound workqueues, @max_active limits the number of in-flight work items
- * for the whole system. e.g. @max_active of 16 indicates that that there can be
+ * for the whole system. e.g. @max_active of 16 indicates that there can be
  * at most 16 work items executing for the workqueue in the whole system.
  *
  * As sharing the same active counter for an unbound workqueue across multiple