]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
workqueue: doc: Fix function name, remove markers
authorNikita Shubin <n.shubin@yadro.com>
Fri, 19 Jul 2024 14:30:16 +0000 (17:30 +0300)
committerTejun Heo <tj@kernel.org>
Tue, 6 Aug 2024 04:33:36 +0000 (18:33 -1000)
- s/alloc_ordered_queue()/alloc_ordered_workqueue()/
- remove markers to convert it into a link.

Signed-off-by: Nikita Shubin <n.shubin@yadro.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Documentation/core-api/workqueue.rst

index bcc370c876be9538c5020c6a14e8584d9090ebdf..16f861c9791e4ae2914bbf517c1a1835263711bf 100644 (file)
@@ -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