mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-21 21:19:35 +00:00
config_tool: set MAX_VM_NUM value range from 1 to 8
1. set MAX_VM_NUM value range from 1 to 8. Tracked-On: #6685 Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
This commit is contained in:
parent
a609c9799a
commit
a637fa56bf
@ -222,7 +222,7 @@ value ``0x400000000``.</xs:documentation>
|
||||
maximum supported resource.</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:all>
|
||||
<xs:element name="MAX_VM_NUM" type="xs:integer" default="16">
|
||||
<xs:element name="MAX_VM_NUM" type="MaxVMNumType" default="8">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Maximum number of User VMs allowed.</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
@ -50,6 +50,16 @@
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="MaxVMNumType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Integer from 1 to 8.</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:integer">
|
||||
<xs:minInclusive value="1" />
|
||||
<xs:maxInclusive value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="MaxMsixTableSizeType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Either empty, or an Integer value between 1 and 2048.</xs:documentation>
|
||||
|
Loading…
Reference in New Issue
Block a user