From c3b7cb1fd8c1513be99fb3cfb7f39c5116d80dac Mon Sep 17 00:00:00 2001 From: Konrad Rzeszutek Wilk Date: Mon, 9 Sep 2013 13:08:49 -0400 Subject: [PATCH] xen/spinlock: Don't use __initdate for xen_pv_spin As we get compile warnings about .init.data being used by non-init functions. Reported-by: kbuild test robot Signed-off-by: Konrad Rzeszutek Wilk --- arch/x86/xen/spinlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/xen/spinlock.c b/arch/x86/xen/spinlock.c index b3c1ee8..253f63f 100644 --- a/arch/x86/xen/spinlock.c +++ b/arch/x86/xen/spinlock.c @@ -105,7 +105,7 @@ static DEFINE_PER_CPU(char *, irq_name); static DEFINE_PER_CPU(struct xen_lock_waiting, lock_waiting); static cpumask_t waiting_cpus; -static bool xen_pvspin __initdata = true; +static bool xen_pvspin = true; static void xen_lock_spinning(struct arch_spinlock *lock, __ticket_t want) { int irq = __this_cpu_read(lock_kicker_irq); -- 2.7.4