diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2014-03-18 06:56:07 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-03-20 07:35:46 -0400 |
commit | 6201b4d61fbf194df6371fb3376c5026cb8f5eec (patch) | |
tree | fe26631f72f263256eecfe127346687b423b2e21 /kernel/timer.c | |
parent | e2e680fb7566880f7210cadf628c092c0433971c (diff) |
timer: Remove code redundancy while calling get_nohz_timer_target()
There are only two users of get_nohz_timer_target(): timer and hrtimer. Both
call it under same circumstances, i.e.
#ifdef CONFIG_NO_HZ_COMMON
if (!pinned && get_sysctl_timer_migration() && idle_cpu(this_cpu))
return get_nohz_timer_target();
#endif
So, it makes more sense to get all this as part of get_nohz_timer_target()
instead of duplicating code at two places. For this another parameter is
required to be passed to this routine, pinned.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linaro-kernel@lists.linaro.org
Cc: fweisbec@gmail.com
Cc: peterz@infradead.org
Link: http://lkml.kernel.org/r/1e1b53537217d58d48c2d7a222a9c3ac47d5b64c.1395140107.git.viresh.kumar@linaro.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r-- | kernel/timer.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kernel/timer.c b/kernel/timer.c index 8e503fec1fba..1d35ddadc045 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -760,12 +760,7 @@ __mod_timer(struct timer_list *timer, unsigned long expires, | |||
760 | 760 | ||
761 | debug_activate(timer, expires); | 761 | debug_activate(timer, expires); |
762 | 762 | ||
763 | cpu = smp_processor_id(); | 763 | cpu = get_nohz_timer_target(pinned); |
764 | |||
765 | #if defined(CONFIG_NO_HZ_COMMON) && defined(CONFIG_SMP) | ||
766 | if (!pinned && get_sysctl_timer_migration() && idle_cpu(cpu)) | ||
767 | cpu = get_nohz_timer_target(); | ||
768 | #endif | ||
769 | new_base = per_cpu(tvec_bases, cpu); | 764 | new_base = per_cpu(tvec_bases, cpu); |
770 | 765 | ||
771 | if (base != new_base) { | 766 | if (base != new_base) { |