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

Commit b97f44c9 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

hrtimer: Make use of timerqueue_add/del return values



Use the return value instead of reevaluating the information.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarPeter Zijlstra <peterz@infradead.org>
Cc: Preeti U Murthy <preeti@linux.vnet.ibm.com>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/20150414203501.658152945@linutronix.de


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent c320642e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -842,7 +842,6 @@ static int enqueue_hrtimer(struct hrtimer *timer,
{
	debug_activate(timer);

	timerqueue_add(&base->active, &timer->node);
	base->cpu_base->active_bases |= 1 << base->index;

	/*
@@ -851,7 +850,7 @@ static int enqueue_hrtimer(struct hrtimer *timer,
	 */
	timer->state |= HRTIMER_STATE_ENQUEUED;

	return (&timer->node == base->active.next);
	return timerqueue_add(&base->active, &timer->node);
}

/*
@@ -875,8 +874,7 @@ static void __remove_hrtimer(struct hrtimer *timer,
		goto out;

	next_timer = timerqueue_getnext(&base->active);
	timerqueue_del(&base->active, &timer->node);
	if (!timerqueue_getnext(&base->active))
	if (!timerqueue_del(&base->active, &timer->node))
		cpu_base->active_bases &= ~(1 << base->index);

	if (&timer->node == next_timer) {