Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84de4274 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

sched: clean up kernel/sched_rt.c



clean up whitespace damage and missing comments in kernel/sched_rt.c.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent deeeccd4
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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;
@@ -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 */