hrtimer: fix HOTPLUG_CPU=n compile warning
Impact: cleanup
kernel/hrtimer.c: In function 'hrtimer_cpu_notify':
kernel/hrtimer.c:1574: warning: unused variable 'dcpu'
Introduced by commit 37810659ea
("hrtimer: removing all ur callback modes, fix hotplug") from the
timers. dcpu is only used if CONFIG_HOTPLUG_CPU is set.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
8bdec955b0
commit
d5fd43c4ae
@@ -1504,6 +1504,11 @@ static void __cpuinit init_hrtimers_cpu(int cpu)
|
|||||||
|
|
||||||
#ifdef CONFIG_HOTPLUG_CPU
|
#ifdef CONFIG_HOTPLUG_CPU
|
||||||
|
|
||||||
|
static void tickle_timers(void *arg)
|
||||||
|
{
|
||||||
|
hrtimer_peek_ahead_timers();
|
||||||
|
}
|
||||||
|
|
||||||
static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
|
static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
|
||||||
struct hrtimer_clock_base *new_base)
|
struct hrtimer_clock_base *new_base)
|
||||||
{
|
{
|
||||||
@@ -1539,7 +1544,7 @@ static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int migrate_hrtimers(int scpu)
|
static void migrate_hrtimers(int scpu)
|
||||||
{
|
{
|
||||||
struct hrtimer_cpu_base *old_base, *new_base;
|
struct hrtimer_cpu_base *old_base, *new_base;
|
||||||
int dcpu, i;
|
int dcpu, i;
|
||||||
@@ -1567,12 +1572,7 @@ static int migrate_hrtimers(int scpu)
|
|||||||
spin_unlock_irq(&new_base->lock);
|
spin_unlock_irq(&new_base->lock);
|
||||||
put_cpu_var(hrtimer_bases);
|
put_cpu_var(hrtimer_bases);
|
||||||
|
|
||||||
return dcpu;
|
smp_call_function_single(dcpu, tickle_timers, NULL, 0);
|
||||||
}
|
|
||||||
|
|
||||||
static void tickle_timers(void *arg)
|
|
||||||
{
|
|
||||||
hrtimer_peek_ahead_timers();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_HOTPLUG_CPU */
|
#endif /* CONFIG_HOTPLUG_CPU */
|
||||||
@@ -1593,11 +1593,8 @@ static int __cpuinit hrtimer_cpu_notify(struct notifier_block *self,
|
|||||||
case CPU_DEAD:
|
case CPU_DEAD:
|
||||||
case CPU_DEAD_FROZEN:
|
case CPU_DEAD_FROZEN:
|
||||||
{
|
{
|
||||||
int dcpu;
|
|
||||||
|
|
||||||
clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
|
clockevents_notify(CLOCK_EVT_NOTIFY_CPU_DEAD, &scpu);
|
||||||
dcpu = migrate_hrtimers(scpu);
|
migrate_hrtimers(scpu);
|
||||||
smp_call_function_single(dcpu, tickle_timers, NULL, 0);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user