From: Alexey Dobriyan Date: Thu, 23 Aug 2007 20:03:47 +0000 (+0400) Subject: lguest should depend on CONFIG_FUTEX X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=deec5950479b72eff3130dc6f956a87466ed41c6;p=linux-beck.git lguest should depend on CONFIG_FUTEX It uses get_futex_key(). Signed-off-by: Alexey Dobriyan Signed-off-by: Rusty Russell Signed-off-by: Linus Torvalds --- diff --git a/drivers/lguest/Kconfig b/drivers/lguest/Kconfig index fd6925f41647..41e2250613a1 100644 --- a/drivers/lguest/Kconfig +++ b/drivers/lguest/Kconfig @@ -1,6 +1,6 @@ config LGUEST tristate "Linux hypervisor example code" - depends on X86 && PARAVIRT && EXPERIMENTAL && !X86_PAE + depends on X86 && PARAVIRT && EXPERIMENTAL && !X86_PAE && FUTEX select LGUEST_GUEST select HVC_DRIVER ---help---