aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-11-11 14:29:24 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-11-11 14:29:24 -0500
commit13b5892672073b1169b3b60b8a57123fb32c9df1 (patch)
tree3272293873773aa5bf1ff5da69ae95b62ca781bd
parent605f37504f3afb590bf852bae4da5af8e462688e (diff)
parente9036b36eed4d3cdb33fa9cbcdd9888ae516889f (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: Use root_task_group_empty only with FAIR_GROUP_SCHED sched: Fix kernel-doc function parameter name
-rw-r--r--kernel/sched.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index 28dd4f490bfc..3c11ae0a948d 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -309,6 +309,8 @@ static DEFINE_PER_CPU_SHARED_ALIGNED(struct rt_rq, init_rt_rq);
309 */ 309 */
310static DEFINE_SPINLOCK(task_group_lock); 310static DEFINE_SPINLOCK(task_group_lock);
311 311
312#ifdef CONFIG_FAIR_GROUP_SCHED
313
312#ifdef CONFIG_SMP 314#ifdef CONFIG_SMP
313static int root_task_group_empty(void) 315static int root_task_group_empty(void)
314{ 316{
@@ -316,7 +318,6 @@ static int root_task_group_empty(void)
316} 318}
317#endif 319#endif
318 320
319#ifdef CONFIG_FAIR_GROUP_SCHED
320#ifdef CONFIG_USER_SCHED 321#ifdef CONFIG_USER_SCHED
321# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD) 322# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
322#else /* !CONFIG_USER_SCHED */ 323#else /* !CONFIG_USER_SCHED */
@@ -1994,7 +1995,7 @@ static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1994 1995
1995/** 1996/**
1996 * kthread_bind - bind a just-created kthread to a cpu. 1997 * kthread_bind - bind a just-created kthread to a cpu.
1997 * @k: thread created by kthread_create(). 1998 * @p: thread created by kthread_create().
1998 * @cpu: cpu (might not be online, must be possible) for @k to run on. 1999 * @cpu: cpu (might not be online, must be possible) for @k to run on.
1999 * 2000 *
2000 * Description: This function is equivalent to set_cpus_allowed(), 2001 * Description: This function is equivalent to set_cpus_allowed(),