]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
sched/deadline: Make GRUB a task's flag
authorLuca Abeni <luca.abeni@santannapisa.it>
Thu, 18 May 2017 20:13:33 +0000 (22:13 +0200)
committerIngo Molnar <mingo@kernel.org>
Thu, 8 Jun 2017 08:31:52 +0000 (10:31 +0200)
This patch introduces the SCHED_FLAG_RECLAIM flag to specify
that a DL task is allowed to reclaim unused CPU time (using
the GRUB algorithm).

Tested-by: Daniel Bristot de Oliveira <bristot@redhat.com>
Signed-off-by: Luca Abeni <luca.abeni@santannapisa.it>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Claudio Scordino <claudio@evidence.eu.com>
Cc: Joel Fernandes <joelaf@google.com>
Cc: Juri Lelli <juri.lelli@arm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tommaso Cucinotta <tommaso.cucinotta@sssup.it>
Link: http://lkml.kernel.org/r/1495138417-6203-7-git-send-email-luca.abeni@santannapisa.it
Signed-off-by: Ingo Molnar <mingo@kernel.org>
include/uapi/linux/sched.h
kernel/sched/core.c
kernel/sched/deadline.c

index 5f0fe019a7204eb7246c092d965d5bb404c863f9..e2a6c7b3510b4a73a60e36f83739f42c62fad6f5 100644 (file)
@@ -47,5 +47,6 @@
  * For the sched_{set,get}attr() calls
  */
 #define SCHED_FLAG_RESET_ON_FORK       0x01
+#define SCHED_FLAG_RECLAIM             0x02
 
 #endif /* _UAPI_LINUX_SCHED_H */
index 7abd06400a98e48775b9cc9f3efdb74a0992406c..8d1a5a6258148f5b4ccdea454e1757839c8c5b04 100644 (file)
@@ -4195,7 +4195,8 @@ recheck:
                        return -EINVAL;
        }
 
-       if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
+       if (attr->sched_flags &
+               ~(SCHED_FLAG_RESET_ON_FORK | SCHED_FLAG_RECLAIM))
                return -EINVAL;
 
        /*
index 6a0614b9c8d7e3ab657b5e1f9b94c1a2d16034d6..61ea3039cdc17cd8dd1907a91696f199772b5515 100644 (file)
@@ -985,7 +985,8 @@ static void update_curr_dl(struct rq *rq)
 
        sched_rt_avg_update(rq, delta_exec);
 
-       delta_exec = grub_reclaim(delta_exec, rq);
+       if (unlikely(dl_se->flags & SCHED_FLAG_RECLAIM))
+               delta_exec = grub_reclaim(delta_exec, rq);
        dl_se->runtime -= delta_exec;
 
 throttle: