diff options
author | Guan-Chun Wu <409411716@gms.tku.edu.tw> | 2025-05-03 16:12:03 +0800 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2025-05-05 13:43:16 -1000 |
commit | 23227e71b69af95e421e263302d13f426c548155 (patch) | |
tree | 083b11a497eb4508ef9580ff8b005f4855d5279e /include/linux/workqueue.h | |
parent | 70e1683ca3a6474360af1d3a020a9a98c8492cc0 (diff) |
workqueue: fix typo in comment
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>
Diffstat (limited to 'include/linux/workqueue.h')
-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 b0dc957c3e56..a6dacc0eb688 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -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 |