From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bandan Das Subject: [PATCH] KVM: SVM: Fix confusing message if no exit handlers are installed Date: Mon, 16 Mar 2015 17:18:25 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: Paolo Bonzini , Marcelo Tosatti Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org I hit this path on a AMD box and thought someone was playing a April Fool's joke on me. Signed-off-by: Bandan Das --- arch/x86/kvm/svm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index cc618c8..4e77110 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -3555,7 +3555,7 @@ static int handle_exit(struct kvm_vcpu *vcpu) if (exit_code >= ARRAY_SIZE(svm_exit_handlers) || !svm_exit_handlers[exit_code]) { - WARN_ONCE(1, "vmx: unexpected exit reason 0x%x\n", exit_code); + WARN_ONCE(1, "svm: unexpected exit reason 0x%x\n", exit_code); kvm_queue_exception(vcpu, UD_VECTOR); return 1; } -- 2.1.0