[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-devel] [PATCH v15 14/15] pvqspinlock: Improve slowpath performance by avoiding cmpxchg



In the pv_scan_next() function, the slow cmpxchg atomic operation is
performed even if the other CPU is not even close to being halted. This
extra cmpxchg can harm slowpath performance.

This patch introduces the new mayhalt flag to indicate if the other
spinning CPU is close to being halted or not. The current threshold
for x86 is 2k cpu_relax() calls. If this flag is not set, the other
spinning CPU will have at least 2k more cpu_relax() calls before
it can enter the halt state. This should give enough time for the
setting of the locked flag in struct mcs_spinlock to propagate to
that CPU without using atomic op.

Signed-off-by: Waiman Long <Waiman.Long@xxxxxx>
---
 kernel/locking/qspinlock_paravirt.h |   28 +++++++++++++++++++++++++---
 1 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/kernel/locking/qspinlock_paravirt.h 
b/kernel/locking/qspinlock_paravirt.h
index a210061..a9fe10d 100644
--- a/kernel/locking/qspinlock_paravirt.h
+++ b/kernel/locking/qspinlock_paravirt.h
@@ -16,7 +16,8 @@
  * native_queue_spin_unlock().
  */
 
-#define _Q_SLOW_VAL    (3U << _Q_LOCKED_OFFSET)
+#define _Q_SLOW_VAL            (3U << _Q_LOCKED_OFFSET)
+#define MAYHALT_THRESHOLD      (SPIN_THRESHOLD >> 4)
 
 /*
  * The vcpu_hashed is a special state that is set by the new lock holder on
@@ -36,6 +37,7 @@ struct pv_node {
 
        int                     cpu;
        u8                      state;
+       u8                      mayhalt;
 };
 
 /*
@@ -187,6 +189,7 @@ static void pv_init_node(struct mcs_spinlock *node)
 
        pn->cpu = smp_processor_id();
        pn->state = vcpu_running;
+       pn->mayhalt = false;
 }
 
 /*
@@ -203,17 +206,27 @@ static void pv_wait_node(struct mcs_spinlock *node)
                for (loop = SPIN_THRESHOLD; loop; loop--) {
                        if (READ_ONCE(node->locked))
                                return;
+                       if (loop == MAYHALT_THRESHOLD)
+                               xchg(&pn->mayhalt, true);
                        cpu_relax();
                }
 
                /*
-                * Order pn->state vs pn->locked thusly:
+                * Order pn->state/pn->mayhalt vs pn->locked thusly:
                 *
-                * [S] pn->state = vcpu_halted    [S] next->locked = 1
+                * [S] pn->mayhalt = 1            [S] next->locked = 1
+                *     MB, delay                      barrier()
+                * [S] pn->state = vcpu_halted    [L] pn->mayhalt
                 *     MB                             MB
                 * [L] pn->locked               [RmW] pn->state = vcpu_hashed
                 *
                 * Matches the cmpxchg() from pv_scan_next().
+                *
+                * As the new lock holder may quit (when pn->mayhalt is not
+                * set) without memory barrier, a sufficiently long delay is
+                * inserted between the setting of pn->mayhalt and pn->state
+                * to ensure that there is enough time for the new pn->locked
+                * value to be propagated here to be checked below.
                 */
                (void)xchg(&pn->state, vcpu_halted);
 
@@ -226,6 +239,7 @@ static void pv_wait_node(struct mcs_spinlock *node)
                 * needs to move on to pv_wait_head().
                 */
                (void)cmpxchg(&pn->state, vcpu_halted, vcpu_running);
+               pn->mayhalt = false;
        }
 
        /*
@@ -246,6 +260,14 @@ static void pv_scan_next(struct qspinlock *lock, struct 
mcs_spinlock *node)
        struct __qspinlock *l = (void *)lock;
 
        /*
+        * If mayhalt is not set, there is enough time for the just set value
+        * in pn->locked to be propagated to the other CPU before it is time
+        * to halt.
+        */
+       if (!READ_ONCE(pn->mayhalt))
+               return;
+
+       /*
         * Transition CPU state: halted => hashed
         * Quit if the transition failed.
         */
-- 
1.7.1


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.