aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMike Galbraith <efault@gmx.de>2009-09-09 09:41:37 -0400
committerIngo Molnar <mingo@elte.hu>2009-09-09 11:30:05 -0400
commit2bba22c50b06abe9fd0d23933b1e64d35b419262 (patch)
tree5ac0373fa1d18f043cb27183f9f185ceda598915 /include
parentb5d9d734a53e0204aab0089079cbde2a1285a38f (diff)
sched: Turn off child_runs_first
Set child_runs_first default to off. It hurts 'optimal' make -j<NR_CPUS> workloads as make jobs get preempted by child tasks, reducing parallelism. Note, this patch might make existing races in user applications more prominent than before - so breakages might be bisected to this commit. Child-runs-first is broken on SMP to begin with, and we already had it off briefly in v2.6.23 so most of the offenders ought to be fixed. Would be nice not to revert this commit but fix those apps finally ... Signed-off-by: Mike Galbraith <efault@gmx.de> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> LKML-Reference: <1252486344.28645.18.camel@marge.simson.net> [ made the sysctl independent of CONFIG_SCHED_DEBUG, in case people want to work around broken apps. ] Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/linux/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 3b7f43e3b736..3a50e8222498 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1820,8 +1820,8 @@ extern unsigned int sysctl_sched_min_granularity;
1820extern unsigned int sysctl_sched_wakeup_granularity; 1820extern unsigned int sysctl_sched_wakeup_granularity;
1821extern unsigned int sysctl_sched_shares_ratelimit; 1821extern unsigned int sysctl_sched_shares_ratelimit;
1822extern unsigned int sysctl_sched_shares_thresh; 1822extern unsigned int sysctl_sched_shares_thresh;
1823#ifdef CONFIG_SCHED_DEBUG
1824extern unsigned int sysctl_sched_child_runs_first; 1823extern unsigned int sysctl_sched_child_runs_first;
1824#ifdef CONFIG_SCHED_DEBUG
1825extern unsigned int sysctl_sched_features; 1825extern unsigned int sysctl_sched_features;
1826extern unsigned int sysctl_sched_migration_cost; 1826extern unsigned int sysctl_sched_migration_cost;
1827extern unsigned int sysctl_sched_nr_migrate; 1827extern unsigned int sysctl_sched_nr_migrate;