mirror of https://gitee.com/openkylin/linux.git
clocksource/drivers/arm_arch_timer: Fix bogus cpu_all_mask usage
Using cpu_all_mask as target mask for clockevents is wrong as it never can actually target not possible CPUs. Use cpu_possible_mask instead Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Sudeep Holla <sudeep.holla@arm.com> Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
parent
c77aee71bb
commit
6777996d27
|
@ -735,7 +735,7 @@ static void __arch_timer_setup(unsigned type,
|
||||||
clk->features |= CLOCK_EVT_FEAT_DYNIRQ;
|
clk->features |= CLOCK_EVT_FEAT_DYNIRQ;
|
||||||
clk->name = "arch_mem_timer";
|
clk->name = "arch_mem_timer";
|
||||||
clk->rating = 400;
|
clk->rating = 400;
|
||||||
clk->cpumask = cpu_all_mask;
|
clk->cpumask = cpu_possible_mask;
|
||||||
if (arch_timer_mem_use_virtual) {
|
if (arch_timer_mem_use_virtual) {
|
||||||
clk->set_state_shutdown = arch_timer_shutdown_virt_mem;
|
clk->set_state_shutdown = arch_timer_shutdown_virt_mem;
|
||||||
clk->set_state_oneshot_stopped = arch_timer_shutdown_virt_mem;
|
clk->set_state_oneshot_stopped = arch_timer_shutdown_virt_mem;
|
||||||
|
|
Loading…
Reference in New Issue