Skip to content

Commit 719e07f

Browse files
jsun26intellijinxia
authored andcommitted
HV: fix a print typo in create_vcpu
*d is typo of %d, fix it. Signed-off-by: Victor Sun <victor.sun@intel.com>
1 parent 74dfa42 commit 719e07f

File tree

1 file changed

+1
-1
lines changed
  • hypervisor/arch/x86/guest

1 file changed

+1
-1
lines changed

hypervisor/arch/x86/guest/vcpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ int create_vcpu(int cpu_id, struct vm *vm, struct vcpu **rtn_vcpu_handle)
8383
if (is_vcpu_bsp(vcpu) && is_vm0(vcpu->vm)) {
8484
/* Set up temporary guest page tables */
8585
vm->arch_vm.guest_init_pml4 = create_guest_initial_paging(vm);
86-
pr_info("VM *d VCPU %d CR3: 0x%016llx ",
86+
pr_info("VM %d VCPU %d CR3: 0x%016llx ",
8787
vm->attr.id, vcpu->vcpu_id,
8888
vm->arch_vm.guest_init_pml4);
8989
}

0 commit comments

Comments
 (0)