]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
locking/qspinlock/x86: Only emit the test-and-set fallback when building guest support
authorPeter Zijlstra <peterz@infradead.org>
Sat, 5 Sep 2015 14:55:05 +0000 (16:55 +0200)
committerIngo Molnar <mingo@kernel.org>
Fri, 11 Sep 2015 05:50:12 +0000 (07:50 +0200)
Only emit the test-and-set fallback for Hypervisors lacking
PARAVIRT_SPINLOCKS support when building for guests.

Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Cc: stable@vger.kernel.org # 4.2
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/include/asm/qspinlock.h

index 8dde3bdc4a05c2bf72bc38bffe3a7efd1a20fc11..eaba0807603009e6ed1612a7049bb35bafeaf31e 100644 (file)
@@ -39,8 +39,8 @@ static inline void queued_spin_unlock(struct qspinlock *lock)
 }
 #endif
 
+#ifdef CONFIG_PARAVIRT
 #define virt_spin_lock virt_spin_lock
-
 static inline bool virt_spin_lock(struct qspinlock *lock)
 {
        if (!static_cpu_has(X86_FEATURE_HYPERVISOR))
@@ -59,6 +59,7 @@ static inline bool virt_spin_lock(struct qspinlock *lock)
 
        return true;
 }
+#endif /* CONFIG_PARAVIRT */
 
 #include <asm-generic/qspinlock.h>