aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-11-07 12:17:46 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2008-11-07 12:17:46 -0500
commit55477eb49d1e56927358f90762a8a19b61c6cb53 (patch)
treeca455c90a880d7a5a25e2b6b5aece52531423556 /kernel/sched.c
parent0477406961c185ef9a6d9c908b5c70ffe206833e (diff)
parent52c642f33b14bfa1b00ef2b68296effb34a573f3 (diff)
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: sched: fine-tune SD_SIBLING_INIT sched: fine-tune SD_MC_INIT sched: fix memory leak in a failure path sched: fix a bug in sched domain degenerate
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 82cc839c9210..57c933ffbee1 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -6877,15 +6877,17 @@ cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
6877 struct sched_domain *tmp; 6877 struct sched_domain *tmp;
6878 6878
6879 /* Remove the sched domains which do not contribute to scheduling. */ 6879 /* Remove the sched domains which do not contribute to scheduling. */
6880 for (tmp = sd; tmp; tmp = tmp->parent) { 6880 for (tmp = sd; tmp; ) {
6881 struct sched_domain *parent = tmp->parent; 6881 struct sched_domain *parent = tmp->parent;
6882 if (!parent) 6882 if (!parent)
6883 break; 6883 break;
6884
6884 if (sd_parent_degenerate(tmp, parent)) { 6885 if (sd_parent_degenerate(tmp, parent)) {
6885 tmp->parent = parent->parent; 6886 tmp->parent = parent->parent;
6886 if (parent->parent) 6887 if (parent->parent)
6887 parent->parent->child = tmp; 6888 parent->parent->child = tmp;
6888 } 6889 } else
6890 tmp = tmp->parent;
6889 } 6891 }
6890 6892
6891 if (sd && sd_degenerate(sd)) { 6893 if (sd && sd_degenerate(sd)) {
@@ -7674,6 +7676,7 @@ static int __build_sched_domains(const cpumask_t *cpu_map,
7674error: 7676error:
7675 free_sched_groups(cpu_map, tmpmask); 7677 free_sched_groups(cpu_map, tmpmask);
7676 SCHED_CPUMASK_FREE((void *)allmasks); 7678 SCHED_CPUMASK_FREE((void *)allmasks);
7679 kfree(rd);
7677 return -ENOMEM; 7680 return -ENOMEM;
7678#endif 7681#endif
7679} 7682}