diff options
author | Nikita Shubin <n.shubin@yadro.com> | 2024-07-19 17:30:16 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2024-08-05 18:33:36 -1000 |
commit | 44732f1dad20457d64c525549cd63dcef2563c23 (patch) | |
tree | 822d9c45aa6a38e7459409136524f7917cd52480 /Documentation | |
parent | 8400291e289ee6b2bf9779ff1c83a291501f017b (diff) | |
download | linux-stable-44732f1dad20457d64c525549cd63dcef2563c23.tar.gz linux-stable-44732f1dad20457d64c525549cd63dcef2563c23.tar.bz2 linux-stable-44732f1dad20457d64c525549cd63dcef2563c23.zip |
workqueue: doc: Fix function name, remove markers
- 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>
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 |