We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db26450 commit 0e6b677Copy full SHA for 0e6b677
arch/x86/kvm/svm/svm.c
@@ -3408,8 +3408,8 @@ static void dump_vmcb(struct kvm_vcpu *vcpu)
3408
sev_es_guest(vcpu->kvm) ? "SEV-ES" :
3409
sev_guest(vcpu->kvm) ? "SEV" : "SVM";
3410
3411
- pr_err("%s VMCB %p, last attempted VMRUN on CPU %d\n",
3412
- vm_type, svm->current_vmcb->ptr, vcpu->arch.last_vmentry_cpu);
+ pr_err("%s vCPU%u VMCB %p, last attempted VMRUN on CPU %d\n",
+ vm_type, vcpu->vcpu_id, svm->current_vmcb->ptr, vcpu->arch.last_vmentry_cpu);
3413
pr_err("VMCB Control Area:\n");
3414
pr_err("%-20s%04x\n", "cr_read:", control->intercepts[INTERCEPT_CR] & 0xffff);
3415
pr_err("%-20s%04x\n", "cr_write:", control->intercepts[INTERCEPT_CR] >> 16);
0 commit comments