From: Nikita Shubin Date: Fri, 19 Jul 2024 14:30:16 +0000 (+0300) Subject: workqueue: doc: Fix function name, remove markers X-Git-Tag: v6.11-rc5~6^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44732f1dad20457d64c525549cd63dcef2563c23;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Tejun Heo --- diff --git a/Documentation/core-api/workqueue.rst b/Documentation/core-api/workqueue.rst index bcc370c876be9..16f861c9791e4 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