]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
sched/doc: Update yield_task description in sched-design-CFS
authorfangqiurong <fangqiurong@kylinos.cn>
Fri, 3 Apr 2026 05:58:06 +0000 (13:58 +0800)
committerJonathan Corbet <corbet@lwn.net>
Thu, 9 Apr 2026 14:26:38 +0000 (08:26 -0600)
The yield_task description referenced the long-removed compat_yield
sysctl and described the function as a dequeue/enqueue cycle. Update
it to reflect current behavior: yielding the CPU by moving the
current task's position back in the runqueue.

Sync zh_CN and sp_SP translations.

Signed-off-by: fangqiurong <fangqiurong@kylinos.cn>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260403055806.358921-1-user@fqr-pc>

Documentation/scheduler/sched-design-CFS.rst
Documentation/translations/sp_SP/scheduler/sched-design-CFS.rst
Documentation/translations/zh_CN/scheduler/sched-design-CFS.rst

index b574a2644c77ea381d7dd80fab2a3cfc931b9400..03998f6c8f9c4930cf4426b15bfb15f1b63295a8 100644 (file)
@@ -183,9 +183,8 @@ This is the (partial) list of the hooks:
 
  - yield_task(...)
 
-   This function is basically just a dequeue followed by an enqueue, unless the
-   compat_yield sysctl is turned on; in that case, it places the scheduling
-   entity at the right-most end of the red-black tree.
+   This function yields the CPU by moving the currently running task's position back
+   in the runqueue, so that other runnable tasks get scheduled first.
 
  - wakeup_preempt(...)
 
index b35d24464be91adc6c5e3bdd46a283ac4575176f..ff0ccbc591835bab59d487bef9d5595f72dbbced 100644 (file)
@@ -198,9 +198,9 @@ Esta es la lista parcial de llamadas:
 
  - yield_task(...)
 
-   Esta función es básicamente desencolar, seguido por encolar, a menos que
-   sysctl compat_yield esté activado; en ese caso, sitúa la entidad a gestionar
-   en la parte más hacia la derecha del árbol rojo-negro.
+   Esta función cede la CPU desplazando la posición de la tarea actualmente
+   en ejecución hacia atrás en la cola de ejecución, para que otras tareas
+   ejecutables sean planificadas primero.
 
  - check_preempt_curr(...)
 
index abc6709ec3b26a040b7b6bb6681f8fb9ec1cf7de..03691e0309af84d23f6ada6da7902d1569abcae4 100644 (file)
@@ -144,8 +144,8 @@ array)。
 
  - yield_task(...)
 
-   这个函数的行为基本上是出队,紧接着入队,除非compat_yield sysctl被开启。在那种情况下
-   它将调度实体放在红黑树的最右端
+   此函数通过将当前任务在运行队列中的位置后移来让出 CPU
+   使得其他可运行的任务优先被调度
 
  - wakeup_preempt(...)