Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 364b625b authored by Avi Kivity's avatar Avi Kivity
Browse files

KVM: SVM: Report hardware exit reason to userspace instead of dmesg



Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 8c438502
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -1332,12 +1332,7 @@ static int handle_exit(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
	if (exit_code >= ARRAY_SIZE(svm_exit_handlers)
	    || svm_exit_handlers[exit_code] == 0) {
		kvm_run->exit_reason = KVM_EXIT_UNKNOWN;
		printk(KERN_ERR "%s: 0x%x @ 0x%llx cr0 0x%lx rflags 0x%llx\n",
		       __FUNCTION__,
		       exit_code,
		       vcpu->svm->vmcb->save.rip,
		       vcpu->cr0,
		       vcpu->svm->vmcb->save.rflags);
		kvm_run->hw.hardware_exit_reason = exit_code;
		return 0;
	}