mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-07 20:00:13 +00:00
DM/HV: Increase VM name len
VM Name length is restricted to 32 characters. kata creates a VM name with GUID added as a part of VM name making it around 80 characters. So increasing this size to 128. v1->v2: It turns out that MAX_VM_OS_NAME_LEN usage in DM and HV are for different use cases. So removing the macro from acrn_common.h. Definied macro MAX_VMNAME_LEN for DM purposes in dm.h. Retaining original macron name MAX_VM_OS_NAME_LEN for HV purposes but defined in vm_config.h. Tracked-On: #3138 Signed-off-by: Vijay Dhanraj <vijay.dhanraj@intel.com> Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
committed by
ACRN System Integration
parent
f010f99d67
commit
517707dee4
@@ -16,6 +16,7 @@
|
||||
|
||||
#define PLUG_CPU(n) (1U << (n))
|
||||
#define MAX_VUART_NUM_PER_VM 2U
|
||||
#define MAX_VM_OS_NAME_LEN 32U
|
||||
|
||||
/*
|
||||
* PRE_LAUNCHED_VM is launched by ACRN hypervisor, with LAPIC_PT;
|
||||
|
@@ -366,7 +366,6 @@ struct acrn_create_vm {
|
||||
uint8_t reserved2[16];
|
||||
} __aligned(8);
|
||||
|
||||
#define MAX_VM_OS_NAME_LEN 32U
|
||||
|
||||
/**
|
||||
* @brief Info to create a VCPU
|
||||
|
Reference in New Issue
Block a user