Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1640673 > unrolled thread
| Started by | Rohit Jain <rohit.k.jain@oracle.com> |
|---|---|
| First post | 2017-05-12 20:10 +0200 |
| Last post | 2017-05-12 20:10 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH 0/2] Interrupt Aware Scheduler Rohit Jain <rohit.k.jain@oracle.com> - 2017-05-12 20:10 +0200
| From | Rohit Jain <rohit.k.jain@oracle.com> |
|---|---|
| Date | 2017-05-12 20:10 +0200 |
| Subject | [PATCH 0/2] Interrupt Aware Scheduler |
| Message-ID | <tGnaN-8qN-7@gated-at.bofh.it> |
This patch introduces Interrupt Aware Scheduler(IAS). The tests till now show an overall improvement in cases where the workload has some interrupt activity. The patch avoids CPUs which might be considered interrupt-heavy when trying to schedule threads (on the push side) in the system. Interrupt Awareness has only been added into the fair scheduling class. Rohit Jain (2): sched: Interrupt Aware Scheduler tools/testing: Adding tests to showcase the efficacy of IAS kernel/sched/core.c | 42 +++++++++++++++++++ kernel/sched/cputime.c | 6 ++- kernel/sched/fair.c | 52 ++++++++++++++++++------ kernel/sched/loadavg.c | 40 ++++++++++++++++++ kernel/sched/sched.h | 37 ++++++++++++++++- tools/testing/selftests/openmp_barrier/Makefile | 6 +++ tools/testing/selftests/openmp_barrier/barrier.c | 29 +++++++++++++ 7 files changed, 197 insertions(+), 15 deletions(-) create mode 100644 tools/testing/selftests/openmp_barrier/Makefile create mode 100644 tools/testing/selftests/openmp_barrier/barrier.c -- 2.7.4
Back to top | Article view | linux.kernel
csiph-web