]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arm64: arch_timer: Save cntkctl_el1 as a per-cpu variable
authorMarc Zyngier <marc.zyngier@arm.com>
Tue, 4 Apr 2017 16:05:16 +0000 (17:05 +0100)
committerMarc Zyngier <marc.zyngier@arm.com>
Fri, 7 Apr 2017 10:22:09 +0000 (11:22 +0100)
As we're about to allow per CPU cntkctl_el1 configuration, we cannot
rely on the register value to be common when performing power
management.

Let's turn saved_cntkctl into a per-cpu variable.

Acked-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
drivers/clocksource/arm_arch_timer.c

index 395f5d95a7373583559b5d3bee38741d5bde6fb8..5c114da0ed71c325ea69e2d0e09e636e3f3f4f7d 100644 (file)
@@ -839,14 +839,14 @@ static int arch_timer_dying_cpu(unsigned int cpu)
 }
 
 #ifdef CONFIG_CPU_PM
-static unsigned int saved_cntkctl;
+static DEFINE_PER_CPU(unsigned long, saved_cntkctl);
 static int arch_timer_cpu_pm_notify(struct notifier_block *self,
                                    unsigned long action, void *hcpu)
 {
        if (action == CPU_PM_ENTER)
-               saved_cntkctl = arch_timer_get_cntkctl();
+               __this_cpu_write(saved_cntkctl, arch_timer_get_cntkctl());
        else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT)
-               arch_timer_set_cntkctl(saved_cntkctl);
+               arch_timer_set_cntkctl(__this_cpu_read(saved_cntkctl));
        return NOTIFY_OK;
 }