Skip to content

Commit

Permalink
sched: clean up kernel/sched_rt.c
Browse files Browse the repository at this point in the history
clean up whitespace damage and missing comments in kernel/sched_rt.c.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jan 25, 2008
1 parent deeeccd commit 84de427
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions kernel/sched_rt.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,24 @@
*/

#ifdef CONFIG_SMP

/*
* The "RT overload" flag: it gets set if a CPU has more than
* one runnable RT task.
*/
static cpumask_t rt_overload_mask;
static atomic_t rto_count;

static inline int rt_overloaded(void)
{
return atomic_read(&rto_count);
}

static inline cpumask_t *rt_overload(void)
{
return &rt_overload_mask;
}

static inline void rt_set_overload(struct rq *rq)
{
rq->rt.overloaded = 1;
Expand All @@ -28,6 +36,7 @@ static inline void rt_set_overload(struct rq *rq)
wmb();
atomic_inc(&rto_count);
}

static inline void rt_clear_overload(struct rq *rq)
{
/* the order here really doesn't matter */
Expand Down

0 comments on commit 84de427

Please sign in to comment.