HV: fix a print typo in create_vcpu

*d is typo of %d, fix it.

Signed-off-by: Victor Sun <victor.sun@intel.com>
This commit is contained in:
Victor Sun 2018-06-13 16:44:12 +08:00 committed by lijinxia
parent 74dfa425e0
commit 719e07fb8f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ int create_vcpu(int cpu_id, struct vm *vm, struct vcpu **rtn_vcpu_handle)
if (is_vcpu_bsp(vcpu) && is_vm0(vcpu->vm)) {
/* Set up temporary guest page tables */
vm->arch_vm.guest_init_pml4 = create_guest_initial_paging(vm);
pr_info("VM *d VCPU %d CR3: 0x%016llx ",
pr_info("VM %d VCPU %d CR3: 0x%016llx ",
vm->attr.id, vcpu->vcpu_id,
vm->arch_vm.guest_init_pml4);
}