]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
locking/qrwlock: Better optimization for interrupt context readers
authorWaiman Long <Waiman.Long@hp.com>
Fri, 19 Jun 2015 15:50:01 +0000 (11:50 -0400)
committerIngo Molnar <mingo@kernel.org>
Mon, 6 Jul 2015 12:11:28 +0000 (14:11 +0200)
The qrwlock is fair in the process context, but becoming unfair when
in the interrupt context to support use cases like the tasklist_lock.

The current code isn't that well-documented on what happens when
in the interrupt context. The rspin_until_writer_unlock() will only
spin if the writer has gotten the lock. If the writer is still in the
waiting state, the increment in the reader count will cause the writer
to remain in the waiting state and the new interrupt context reader
will get the lock and return immediately. The current code, however,
does an additional read of the lock value which is not necessary as
the information has already been there in the fast path. This may
sometime cause an additional cacheline transfer when the lock is
highly contended.

This patch passes the lock value information gotten in the fast path
to the slow path to eliminate the additional read. It also documents
the action for the interrupt context readers more clearly.

Signed-off-by: Waiman Long <Waiman.Long@hp.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Will Deacon <will.deacon@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Douglas Hatch <doug.hatch@hp.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Scott J Norton <scott.norton@hp.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1434729002-57724-3-git-send-email-Waiman.Long@hp.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
include/asm-generic/qrwlock.h
kernel/locking/qrwlock.c

index 55e3ee1d24152576c4780f1bf59eb00c330bff86..deb9e8b0eb9ef2f5a86638148e76f4c4c74cd0fe 100644 (file)
@@ -36,7 +36,7 @@
 /*
  * External function declarations
  */
-extern void queued_read_lock_slowpath(struct qrwlock *lock);
+extern void queued_read_lock_slowpath(struct qrwlock *lock, u32 cnts);
 extern void queued_write_lock_slowpath(struct qrwlock *lock);
 
 /**
@@ -105,7 +105,7 @@ static inline void queued_read_lock(struct qrwlock *lock)
                return;
 
        /* The slowpath will decrement the reader count, if necessary. */
-       queued_read_lock_slowpath(lock);
+       queued_read_lock_slowpath(lock, cnts);
 }
 
 /**
index 49057d413b6e0bd9f89308d78fdff1f1930e602a..d9c36c5f571155ad6fdea1cf46d2b3758d9ec244 100644 (file)
@@ -62,20 +62,21 @@ rspin_until_writer_unlock(struct qrwlock *lock, u32 cnts)
 /**
  * queued_read_lock_slowpath - acquire read lock of a queue rwlock
  * @lock: Pointer to queue rwlock structure
+ * @cnts: Current qrwlock lock value
  */
-void queued_read_lock_slowpath(struct qrwlock *lock)
+void queued_read_lock_slowpath(struct qrwlock *lock, u32 cnts)
 {
-       u32 cnts;
-
        /*
         * Readers come here when they cannot get the lock without waiting
         */
        if (unlikely(in_interrupt())) {
                /*
-                * Readers in interrupt context will spin until the lock is
-                * available without waiting in the queue.
+                * Readers in interrupt context will get the lock immediately
+                * if the writer is just waiting (not holding the lock yet).
+                * The rspin_until_writer_unlock() function returns immediately
+                * in this case. Otherwise, they will spin until the lock
+                * is available without waiting in the queue.
                 */
-               cnts = smp_load_acquire((u32 *)&lock->cnts);
                rspin_until_writer_unlock(lock, cnts);
                return;
        }