diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-12-30 09:41:04 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-30 09:41:04 +0100 |
commit | b6ab4afee4ed56d0f69df59485585cff828c327d (patch) | |
tree | e1875aedb36b3a300c0ab9c94b28aeb56222155b /arch/x86/kvm | |
parent | 36994e58a48fb8f9651c7dc845a6de298aba5bfc (diff) | |
download | op-kernel-dev-b6ab4afee4ed56d0f69df59485585cff828c327d.zip op-kernel-dev-b6ab4afee4ed56d0f69df59485585cff828c327d.tar.gz |
tracing, kvm: change MARKERS to select instead of depends on
Impact: build fix
fix:
kernel/trace/Kconfig:42:error: found recursive dependency: TRACING ->
TRACEPOINTS -> MARKERS -> KVM_TRACE -> RELAY -> KMEMTRACE -> TRACING
markers is a facility that should be selected - not depended on
by an interactive Kconfig entry.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig index b81125f..c7da368 100644 --- a/arch/x86/kvm/Kconfig +++ b/arch/x86/kvm/Kconfig @@ -55,7 +55,8 @@ config KVM_AMD config KVM_TRACE bool "KVM trace support" - depends on KVM && MARKERS && SYSFS + depends on KVM && SYSFS + select MARKERS select RELAY select DEBUG_FS default n |