diff options
author | Lai Jiangshan <laijs@linux.alibaba.com> | 2020-06-01 11:44:39 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2020-06-01 18:02:28 +0300 |
commit | c39ba6b3a8d47be07c180f857564a25a0356d336 (patch) | |
tree | 0013c0b31a79c47f08cd3c5caef3daee23e459d4 | |
parent | b8f06b0444ec146e3ae98caac8039c77e5308ce2 (diff) | |
download | linux-c39ba6b3a8d47be07c180f857564a25a0356d336.tar.xz |
workqueue: fix a piece of comment about reserved bits for work flags
8a2e8e5dec7e("workqueue: fix cwq->nr_active underflow")
allocated one more bit from the work flags, and it updated
partial of the comments (128 bytes -> 256 bytes), but it
failed to update the info about the number of reserved bits.
Signed-off-by: Lai Jiangshan <laijs@linux.alibaba.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-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 8b505d22fc0e..26de0cae2a0a 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -62,7 +62,7 @@ enum { WORK_CPU_UNBOUND = NR_CPUS, /* - * Reserve 7 bits off of pwq pointer w/ debugobjects turned off. + * Reserve 8 bits off of pwq pointer w/ debugobjects turned off. * This makes pwqs aligned to 256 bytes and allows 15 workqueue * flush colors. */ |