From: Stephen Boyd Date: Wed, 17 Apr 2013 23:26:18 +0000 (-0700) Subject: ARM: arch_timer: Silence debug preempt warnings X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~7^2~1^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f31c2f1c68aff83277eddc6798adf3438e9c680a;p=pandora-kernel.git ARM: arch_timer: Silence debug preempt warnings Hot-plugging with CONFIG_DEBUG_PREEMPT=y on a device with arm architected timers causes a slew of "using smp_processor_id() in preemptible" warnings: BUG: using smp_processor_id() in preemptible [00000000] code: sh/111 caller is arch_timer_cpu_notify+0x14/0xc8 This happens because sometimes the cpu notifier, arch_timer_cpu_notify(), is called in preemptible context and other times in non-preemptible context but we use this_cpu_ptr() to retrieve the clockevent in all cases. We're only going to actually use the pointer in non-preemptible context though, so push the this_cpu_ptr() access down into the cases to force the checks to occur only in non-preemptible contexts. Cc: John Stultz Cc: Thomas Gleixner Cc: Mark Rutland Acked-by: Marc Zyngier Signed-off-by: Stephen Boyd Signed-off-by: Olof Johansson --- Reading git-diff-tree failed