lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 12 May 2017 11:04:25 -0700
From:   Rohit Jain <rohit.k.jain@...cle.com>
To:     linux-kernel@...r.kernel.org
Cc:     peterz@...radead.org, mingo@...hat.com
Subject: [PATCH 0/2] Interrupt Aware Scheduler

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

Powered by blists - more mailing lists