From: Radim Krčmář Date: Mon, 9 Feb 2015 21:44:07 +0000 (+0100) Subject: KVM: x86: fix build with !CONFIG_SMP X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=dab2087defcb4afb2a5574d268b87257ba0f6b22;p=deliverable%2Flinux.git KVM: x86: fix build with !CONFIG_SMP isn't included directly and without CONFIG_SMP, an option that automagically pulls it can't be enabled. Reported-by: Jim Davis Signed-off-by: Radim Krčmář Signed-off-by: Paolo Bonzini --- diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 6e112472b0b3..3f73bfad0349 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -45,6 +45,7 @@ #include #include #include +#include #include "trace.h"