All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] rework sched_domain topology description
@ 2014-03-18 17:56 ` Vincent Guittot
  0 siblings, 0 replies; 55+ messages in thread
From: Vincent Guittot @ 2014-03-18 17:56 UTC (permalink / raw)
  To: peterz, mingo, linux-kernel, dietmar.eggemann, preeti, tony.luck,
	fenghua.yu, schwidefsky, james.hogan, cmetcalf, benh, linux,
	linux-arm-kernel
  Cc: linaro-kernel, Vincent Guittot

This patchset was previously part of the larger tasks packing patchset [1].
I have splitted the latter in 3 different patchsets (at least) to make the
thing easier.
-configuration of sched_domain topology (this patchset)
-update and consolidation of cpu_power
-tasks packing algorithm

Based on Peter Z's proposal [2][3], this patchset modifies the way to configure
the sched_domain level in order to let architectures to add specific level like
the current BOOK level or the proposed power gating level for ARM architecture.

[1] https://lkml.org/lkml/2013/10/18/121
[2] https://lkml.org/lkml/2013/11/5/239
[3] https://lkml.org/lkml/2013/11/5/449

Change since v1:
- move sched_domains_curr_level back under #ifdef CONFIG_NUMA
- use function pointer to set flag instead of a plain value.
- add list of tunable flags in the commit message of patch 2
- add SD_SHARE_POWER_DOMAIN flag for powerpc's SMT level

Vincent Guittot (7):
  sched: remove unused SCHED_INIT_NODE
  sched: rework of sched_domain topology definition
  sched: s390: create a dedicated topology table
  sched: powerpc: create a dedicated topology table
  sched: add a new SD_SHARE_POWERDOMAIN for sched_domain
  sched: ARM: create a dedicated scheduler topology table
  sched: powerpc: Add SD_SHARE_POWERDOMAIN for SMT level

 arch/arm/kernel/topology.c        |  26 ++++
 arch/ia64/include/asm/topology.h  |  24 ----
 arch/metag/include/asm/topology.h |  27 -----
 arch/powerpc/kernel/smp.c         |  31 +++--
 arch/s390/include/asm/topology.h  |  13 +-
 arch/s390/kernel/topology.c       |  20 ++++
 arch/tile/include/asm/topology.h  |  33 ------
 include/linux/sched.h             |  49 +++++++-
 include/linux/topology.h          | 128 ++------------------
 kernel/sched/core.c               | 243 +++++++++++++++++++-------------------
 10 files changed, 254 insertions(+), 340 deletions(-)

-- 
1.9.0


^ permalink raw reply	[flat|nested] 55+ messages in thread

end of thread, other threads:[~2014-03-19 16:14 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-18 17:56 [PATCH v2 0/7] rework sched_domain topology description Vincent Guittot
2014-03-18 17:56 ` Vincent Guittot
2014-03-18 17:56 ` [PATCH v2 1/7] sched: remove unused SCHED_INIT_NODE Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-19 11:07   ` James Hogan
2014-03-19 11:07     ` James Hogan
2014-03-19 11:07     ` James Hogan
2014-03-18 17:56 ` [PATCH v2 2/7] sched: rework of sched_domain topology definition Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-19  6:01   ` Preeti U Murthy
2014-03-19  6:01     ` Preeti U Murthy
2014-03-19 11:27   ` Dietmar Eggemann
2014-03-19 11:27     ` Dietmar Eggemann
2014-03-19 12:41     ` Peter Zijlstra
2014-03-19 12:41       ` Peter Zijlstra
2014-03-19 13:33       ` Vincent Guittot
2014-03-19 13:33         ` Vincent Guittot
2014-03-19 15:22         ` Dietmar Eggemann
2014-03-19 15:22           ` Dietmar Eggemann
2014-03-19 16:14           ` Vincent Guittot
2014-03-19 16:14             ` Vincent Guittot
2014-03-19 13:46       ` Dietmar Eggemann
2014-03-19 13:46         ` Dietmar Eggemann
2014-03-18 17:56 ` [PATCH v2 3/7] sched: s390: create a dedicated topology table Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-18 17:56 ` [PATCH v2 4/7] sched: powerpc: " Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-19  6:04   ` Preeti U Murthy
2014-03-19  6:04     ` Preeti U Murthy
2014-03-18 17:56 ` [PATCH v2 5/7] sched: add a new SD_SHARE_POWERDOMAIN for sched_domain Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-19  6:21   ` Preeti U Murthy
2014-03-19  6:21     ` Preeti U Murthy
2014-03-19  9:52     ` Vincent Guittot
2014-03-19  9:52       ` Vincent Guittot
2014-03-19 11:05       ` Preeti U Murthy
2014-03-19 11:05         ` Preeti U Murthy
2014-03-19 12:26         ` Vincent Guittot
2014-03-19 12:26           ` Vincent Guittot
2014-03-19 11:59   ` Peter Zijlstra
2014-03-19 11:59     ` Peter Zijlstra
2014-03-19 12:28     ` Vincent Guittot
2014-03-19 12:28       ` Vincent Guittot
2014-03-19 12:01   ` Peter Zijlstra
2014-03-19 12:01     ` Peter Zijlstra
2014-03-19 12:29     ` Vincent Guittot
2014-03-19 12:29       ` Vincent Guittot
2014-03-18 17:56 ` [PATCH v2 6/7] sched: ARM: create a dedicated scheduler topology table Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-18 17:56 ` [PATCH v2 7/7] sched: powerpc: Add SD_SHARE_POWERDOMAIN for SMT level Vincent Guittot
2014-03-18 17:56   ` Vincent Guittot
2014-03-19 12:05   ` Peter Zijlstra
2014-03-19 12:05     ` Peter Zijlstra
2014-03-19 12:30     ` Vincent Guittot
2014-03-19 12:30       ` Vincent Guittot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.