lkml.org 
[lkml]   [2013]   [Jul]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH RFC V11 6/18] xen/pvticketlocks: Add xen_nopvspin parameter to disable xen pv ticketlocks
    xen/pvticketlocks: Add xen_nopvspin parameter to disable xen pv ticketlocks

    From: Jeremy Fitzhardinge <jeremy@goop.org>

    Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org>
    Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
    Signed-off-by: Raghavendra K T <raghavendra.kt@linux.vnet.ibm.com>
    ---
    arch/x86/xen/spinlock.c | 14 ++++++++++++++
    1 file changed, 14 insertions(+)

    diff --git a/arch/x86/xen/spinlock.c b/arch/x86/xen/spinlock.c
    index 31949da..ec9183b 100644
    --- a/arch/x86/xen/spinlock.c
    +++ b/arch/x86/xen/spinlock.c
    @@ -244,6 +244,8 @@ void xen_uninit_lock_cpu(int cpu)
    per_cpu(irq_name, cpu) = NULL;
    }

    +static bool xen_pvspin __initdata = true;
    +
    void __init xen_init_spinlocks(void)
    {
    /*
    @@ -253,10 +255,22 @@ void __init xen_init_spinlocks(void)
    if (xen_hvm_domain())
    return;

    + if (!xen_pvspin) {
    + printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
    + return;
    + }
    +
    pv_lock_ops.lock_spinning = xen_lock_spinning;
    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

    static struct dentry *d_spin_debug;


    \
     
     \ /
      Last update: 2013-07-22 08:41    [W:6.011 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site