]> Git Repo - linux.git/commitdiff
sched/deadline: Update GRUB description in the documentation
authorVineeth Pillai <[email protected]>
Tue, 30 May 2023 13:55:26 +0000 (09:55 -0400)
committerPeter Zijlstra <[email protected]>
Fri, 16 Jun 2023 20:08:12 +0000 (22:08 +0200)
Update the details of GRUB to reflect the updated logic.

Signed-off-by: Vineeth Pillai (Google) <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Reviewed-by: Daniel Bristot de Oliveira <[email protected]>
Acked-by: Juri Lelli <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Documentation/scheduler/sched-deadline.rst

index 9d9be52f221a5a165bb206e6c3e6456c6b6916fd..9fe4846079bbe0e0cb1273e969cf4cd233b41d5b 100644 (file)
@@ -203,12 +203,15 @@ Deadline Task Scheduling
   - Total bandwidth (this_bw): this is the sum of all tasks "belonging" to the
     runqueue, including the tasks in Inactive state.
 
+  - Maximum usable bandwidth (max_bw): This is the maximum bandwidth usable by
+    deadline tasks and is currently set to the RT capacity.
+
 
  The algorithm reclaims the bandwidth of the tasks in Inactive state.
  It does so by decrementing the runtime of the executing task Ti at a pace equal
  to
 
-           dq = -max{ Ui / Umax, (1 - Uinact - Uextra) } dt
+           dq = -(max{ Ui, (Umax - Uinact - Uextra) } / Umax) dt
 
  where:
 
This page took 0.070338 seconds and 4 git commands to generate.