mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-24 10:17:28 +00:00
HV: use term of UUID
The code mixed the usage on term of UUID and GUID, now use UUID to make code more consistent, also will use lowercase (i.e. uuid) in variable name definition. Tracked-On: #2291 Signed-off-by: Victor Sun <victor.sun@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
committed by
ACRN System Integration
parent
4557033a3a
commit
6071234337
@@ -888,8 +888,8 @@ int32_t profiling_vm_list_info(struct acrn_vm *vm, uint64_t addr)
|
||||
vm_idx++;
|
||||
|
||||
vm_info_list.vm_list[vm_idx].vm_id_num = tmp_vm->vm_id;
|
||||
(void)memcpy_s((void *)vm_info_list.vm_list[vm_idx].guid,
|
||||
16U, tmp_vm->GUID, 16U);
|
||||
(void)memcpy_s((void *)vm_info_list.vm_list[vm_idx].uuid,
|
||||
16U, tmp_vm->uuid, 16U);
|
||||
snprintf(vm_info_list.vm_list[vm_idx].vm_name, 16U, "vm_%d",
|
||||
tmp_vm->vm_id, 16U);
|
||||
vm_info_list.vm_list[vm_idx].num_vcpus = 0;
|
||||
|
Reference in New Issue
Block a user