Commit b8fa70b5 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by H. Peter Anvin
parent 80bd58fe
...@@ -244,6 +244,8 @@ void xen_uninit_lock_cpu(int cpu) ...@@ -244,6 +244,8 @@ void xen_uninit_lock_cpu(int cpu)
per_cpu(irq_name, cpu) = NULL; per_cpu(irq_name, cpu) = NULL;
} }
static bool xen_pvspin __initdata = true;
void __init xen_init_spinlocks(void) void __init xen_init_spinlocks(void)
{ {
/* /*
...@@ -253,10 +255,22 @@ void __init xen_init_spinlocks(void) ...@@ -253,10 +255,22 @@ void __init xen_init_spinlocks(void)
if (xen_hvm_domain()) if (xen_hvm_domain())
return; return;
if (!xen_pvspin) {
printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
return;
}
pv_lock_ops.lock_spinning = xen_lock_spinning; pv_lock_ops.lock_spinning = xen_lock_spinning;
pv_lock_ops.unlock_kick = xen_unlock_kick; pv_lock_ops.unlock_kick = xen_unlock_kick;
} }
static __init int xen_parse_nopvspin(char *arg)
{
xen_pvspin = false;
return 0;
}
early_param("xen_nopvspin", xen_parse_nopvspin);
#ifdef CONFIG_XEN_DEBUG_FS #ifdef CONFIG_XEN_DEBUG_FS
static struct dentry *d_spin_debug; static struct dentry *d_spin_debug;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment