diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-08-24 05:35:57 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-08-24 05:35:57 +0300 |
commit | cb2c84b38082f8bd052bf909c7da344b83578ace (patch) | |
tree | a4529bfe00cd55d0506e69e09ade788b0355e5fa /Documentation | |
parent | 5bd6cf00740765c47b5684e2d75ac90d3371659a (diff) | |
parent | c4c8f369b6a6d21ce27286de1501137771e01dc3 (diff) | |
download | linux-cb2c84b38082f8bd052bf909c7da344b83578ace.tar.xz |
Merge tag 'wq-for-6.11-rc4-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull workqueue fixes from Tejun Heo:
"Nothing too interesting. One patch to remove spurious warning and
others to address static checker warnings"
* tag 'wq-for-6.11-rc4-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq:
workqueue: Correct declaration of cpu_pwq in struct workqueue_struct
workqueue: Fix spruious data race in __flush_work()
workqueue: Remove incorrect "WARN_ON_ONCE(!list_empty(&worker->entry));" from dying worker
workqueue: Fix UBSAN 'subtraction overflow' error in shift_and_mask()
workqueue: doc: Fix function name, remove markers
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/core-api/workqueue.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/workqueue.rst b/Documentation/core-api/workqueue.rst index bcc370c876be..16f861c9791e 100644 --- a/Documentation/core-api/workqueue.rst +++ b/Documentation/core-api/workqueue.rst @@ -260,7 +260,7 @@ Some users depend on strict execution ordering where only one work item is in flight at any given time and the work items are processed in queueing order. While the combination of ``@max_active`` of 1 and ``WQ_UNBOUND`` used to achieve this behavior, this is no longer the -case. Use ``alloc_ordered_queue()`` instead. +case. Use alloc_ordered_workqueue() instead. Example Execution Scenarios |