aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKevin Hilman <khilman@linaro.org>2013-03-14 20:13:46 -0400
committerMarcelo Tosatti <mtosatti@redhat.com>2013-03-18 17:03:03 -0400
commitf445f11eb2cc265dd47da5b2e864df46cd6e5a82 (patch)
treef45e7180794da5bf77914e1df085e4b99d490f39 /include
parent6dbe51c251a327e012439c4772097a13df43c5b8 (diff)
KVM: allow host header to be included even for !CONFIG_KVM
The new context tracking subsystem unconditionally includes kvm_host.h headers for the guest enter/exit macros. This causes a compile failure when KVM is not enabled. Fix by adding an IS_ENABLED(CONFIG_KVM) check to kvm_host so it can be included/compiled even when KVM is not enabled. Cc: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Kevin Hilman <khilman@linaro.org> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/kvm_host.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index cad77fe09d77..a9428635c9fd 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -1,6 +1,8 @@
1#ifndef __KVM_HOST_H 1#ifndef __KVM_HOST_H
2#define __KVM_HOST_H 2#define __KVM_HOST_H
3 3
4#if IS_ENABLED(CONFIG_KVM)
5
4/* 6/*
5 * This work is licensed under the terms of the GNU GPL, version 2. See 7 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory. 8 * the COPYING file in the top-level directory.
@@ -1055,5 +1057,8 @@ static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
1055} 1057}
1056 1058
1057#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */ 1059#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1060#else
1061static inline void __guest_enter(void) { return; }
1062static inline void __guest_exit(void) { return; }
1063#endif /* IS_ENABLED(CONFIG_KVM) */
1058#endif 1064#endif
1059