All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: SVM: Fix confusing message if no exit handlers are installed
@ 2015-03-16 21:18 Bandan Das
  2015-03-19  0:53 ` Marcelo Tosatti
  0 siblings, 1 reply; 2+ messages in thread
From: Bandan Das @ 2015-03-16 21:18 UTC (permalink / raw)
  To: Paolo Bonzini, Marcelo Tosatti; +Cc: kvm, linux-kernel


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 <bsd@redhat.com>
---
 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] KVM: SVM: Fix confusing message if no exit handlers are installed
  2015-03-16 21:18 [PATCH] KVM: SVM: Fix confusing message if no exit handlers are installed Bandan Das
@ 2015-03-19  0:53 ` Marcelo Tosatti
  0 siblings, 0 replies; 2+ messages in thread
From: Marcelo Tosatti @ 2015-03-19  0:53 UTC (permalink / raw)
  To: Bandan Das; +Cc: Paolo Bonzini, kvm, linux-kernel

On Mon, Mar 16, 2015 at 05:18:25PM -0400, Bandan Das wrote:
> 
> 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 <bsd@redhat.com>
> ---
>  arch/x86/kvm/svm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-03-19  0:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-16 21:18 [PATCH] KVM: SVM: Fix confusing message if no exit handlers are installed Bandan Das
2015-03-19  0:53 ` Marcelo Tosatti

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.