diff options
-rw-r--r-- | arch/x86/xen/spinlock.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86/xen/spinlock.c b/arch/x86/xen/spinlock.c index a458729be25f..669a971c78fd 100644 --- a/arch/x86/xen/spinlock.c +++ b/arch/x86/xen/spinlock.c | |||
@@ -244,6 +244,8 @@ void xen_uninit_lock_cpu(int cpu) | |||
244 | per_cpu(irq_name, cpu) = NULL; | 244 | per_cpu(irq_name, cpu) = NULL; |
245 | } | 245 | } |
246 | 246 | ||
247 | static bool xen_pvspin __initdata = true; | ||
248 | |||
247 | void __init xen_init_spinlocks(void) | 249 | void __init xen_init_spinlocks(void) |
248 | { | 250 | { |
249 | /* | 251 | /* |
@@ -253,10 +255,22 @@ void __init xen_init_spinlocks(void) | |||
253 | if (xen_hvm_domain()) | 255 | if (xen_hvm_domain()) |
254 | return; | 256 | return; |
255 | 257 | ||
258 | if (!xen_pvspin) { | ||
259 | printk(KERN_DEBUG "xen: PV spinlocks disabled\n"); | ||
260 | return; | ||
261 | } | ||
262 | |||
256 | pv_lock_ops.lock_spinning = xen_lock_spinning; | 263 | pv_lock_ops.lock_spinning = xen_lock_spinning; |
257 | pv_lock_ops.unlock_kick = xen_unlock_kick; | 264 | pv_lock_ops.unlock_kick = xen_unlock_kick; |
258 | } | 265 | } |
259 | 266 | ||
267 | static __init int xen_parse_nopvspin(char *arg) | ||
268 | { | ||
269 | xen_pvspin = false; | ||
270 | return 0; | ||
271 | } | ||
272 | early_param("xen_nopvspin", xen_parse_nopvspin); | ||
273 | |||
260 | #ifdef CONFIG_XEN_DEBUG_FS | 274 | #ifdef CONFIG_XEN_DEBUG_FS |
261 | 275 | ||
262 | static struct dentry *d_spin_debug; | 276 | static struct dentry *d_spin_debug; |