* Peter Zijlstra <pet...@infradead.org> wrote: > On Thu, Jun 05, 2014 at 01:11:10PM +0200, Ingo Molnar wrote: > > Unfortunately even with the latest bits from you the breakage I > > reported weeks ago is not resolved: > > crap, its the qrwlock bits, I fixed it for the config you gave me. > Some paravirt crap header hell thing. Happen to have another > .config?
A simple 'make defconfig' triggers the build failure for me: kernel/locking/qrwlock.c:24:25: fatal error: asm/qrwlock.h: No such file or directory If I apply the minimal feature-enabling patch below on top of the base qrwlock patch. Thanks, Ingo ==========================> >From a79dedeee44dadf8e033a047b7cd4409bb7ad0d8 Mon Sep 17 00:00:00 2001 From: Waiman Long <waiman.l...@hp.com> Date: Mon, 3 Feb 2014 13:18:57 +0100 Subject: [PATCH] x86, locking: Switch x86 to qrwlock-style rwlocks Make x86 use the fair rwlock_t. Don't implement a custom queue_write_unlock() yet, use the generic path. Signed-off-by: Waiman Long <waiman.l...@hp.com> Signed-off-by: Peter Zijlstra <pet...@infradead.org> Link: http://lkml.kernel.org/n/tip-r1xuzmdysvuhl3h86n5fb...@git.kernel.org Cc: "Paul E.McKenney" <paul...@linux.vnet.ibm.com> Cc: Andi Kleen <a...@linux.intel.com> Cc: Dave Jones <da...@redhat.com> Cc: Jeremy Fitzhardinge <jer...@goop.org> Cc: Konrad Rzeszutek Wilk <konrad.w...@oracle.com> Cc: Linus Torvalds <torva...@linux-foundation.org> Cc: Oleg Nesterov <o...@redhat.com> Cc: Raghavendra K T <raghavendra...@linux.vnet.ibm.com> [ Simplified it. ] Signed-off-by: Ingo Molnar <mi...@kernel.org> --- arch/x86/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 25d2c6f..bf7626f 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -121,6 +121,7 @@ config X86 select MODULES_USE_ELF_RELA if X86_64 select CLONE_BACKWARDS if X86_32 select ARCH_USE_BUILTIN_BSWAP + select ARCH_USE_QUEUE_RWLOCK select OLD_SIGSUSPEND3 if X86_32 || IA32_EMULATION select OLD_SIGACTION if X86_32 select COMPAT_OLD_SIGACTION if IA32_EMULATION -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/