From b5bcd7937ca11294c4084f60643cf26d4d315feb Mon Sep 17 00:00:00 2001 From: Libor Pechacek Date: Wed, 22 Mar 2017 11:34:48 +0100 Subject: [PATCH] Recognize SCHED_DEADLINE policy Introduced in kernel v3.14. Signed-off-by: Libor Pechacek --- cpuset/commands/proc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpuset/commands/proc.py b/cpuset/commands/proc.py index e4f30e2..e0366d4 100644 --- a/cpuset/commands/proc.py +++ b/cpuset/commands/proc.py @@ -684,7 +684,7 @@ def move_pidspec(pidspec, toset, fset=None, threads=False): def task_detail(pid, width=70): # scheduler policy definitions - policy = ['o', 'f', 'r', 'b', '?', 'i'] + policy = ['o', 'f', 'r', 'b', '?', 'i', 'd'] # stat location definitions statdef = { 'pid': 0,