Commit f333fdc9 authored by Mike Galbraith's avatar Mike Galbraith Committed by Ingo Molnar

sched: make !hrtick faster

it is safe to ignore timers and flags when the feature is disabled.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 45c01e82
......@@ -4134,7 +4134,7 @@ asmlinkage void __sched schedule(void)
struct task_struct *prev, *next;
unsigned long *switch_count;
struct rq *rq;
int cpu;
int cpu, hrtick = sched_feat(HRTICK);
need_resched:
preempt_disable();
......@@ -4149,7 +4149,8 @@ asmlinkage void __sched schedule(void)
schedule_debug(prev);
hrtick_clear(rq);
if (hrtick)
hrtick_clear(rq);
/*
* Do the rq-clock update outside the rq lock:
......@@ -4197,7 +4198,8 @@ asmlinkage void __sched schedule(void)
} else
spin_unlock_irq(&rq->lock);
hrtick_set(rq);
if (hrtick)
hrtick_set(rq);
if (unlikely(reacquire_kernel_lock(current) < 0))
goto need_resched_nonpreemptible;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment