mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 03:25:20 +00:00
conf: domcaps: Add 'async-teardown' domain capability
Add async-teardown to the features list in domain capabilities allowing high level management to introspect the availability of the asynchronous teardown feature. Signed-off-by: Boris Fiuczynski <fiuczy@linux.ibm.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
f5d4f5c8ee
commit
aece25f665
@ -647,6 +647,7 @@ capabilities. All features occur as children of the main ``features`` element.
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='yes'/>
|
||||||
<sev>
|
<sev>
|
||||||
<cbitpos>47</cbitpos>
|
<cbitpos>47</cbitpos>
|
||||||
<reduced-phys-bits>1</reduced-phys-bits>
|
<reduced-phys-bits>1</reduced-phys-bits>
|
||||||
@ -711,6 +712,11 @@ presence of the ``backup`` element even if ``supported='no'`` implies that the
|
|||||||
``VIR_DOMAIN_UNDEFINE_CHECKPOINTS_METADATA`` flag for ``virDomainUndefine`` is
|
``VIR_DOMAIN_UNDEFINE_CHECKPOINTS_METADATA`` flag for ``virDomainUndefine`` is
|
||||||
supported.
|
supported.
|
||||||
|
|
||||||
|
async-teardown
|
||||||
|
^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Reports whether the asynchronous teardown feature can be enabled.
|
||||||
|
|
||||||
s390-pv capability
|
s390-pv capability
|
||||||
^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
@ -40,6 +40,7 @@ VIR_ENUM_IMPL(virDomainCapsFeature,
|
|||||||
"genid",
|
"genid",
|
||||||
"backingStoreInput",
|
"backingStoreInput",
|
||||||
"backup",
|
"backup",
|
||||||
|
"async-teardown",
|
||||||
"s390-pv",
|
"s390-pv",
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -248,6 +248,7 @@ typedef enum {
|
|||||||
VIR_DOMAIN_CAPS_FEATURE_GENID,
|
VIR_DOMAIN_CAPS_FEATURE_GENID,
|
||||||
VIR_DOMAIN_CAPS_FEATURE_BACKING_STORE_INPUT,
|
VIR_DOMAIN_CAPS_FEATURE_BACKING_STORE_INPUT,
|
||||||
VIR_DOMAIN_CAPS_FEATURE_BACKUP,
|
VIR_DOMAIN_CAPS_FEATURE_BACKUP,
|
||||||
|
VIR_DOMAIN_CAPS_FEATURE_ASYNC_TEARDOWN,
|
||||||
VIR_DOMAIN_CAPS_FEATURE_S390_PV,
|
VIR_DOMAIN_CAPS_FEATURE_S390_PV,
|
||||||
|
|
||||||
VIR_DOMAIN_CAPS_FEATURE_LAST
|
VIR_DOMAIN_CAPS_FEATURE_LAST
|
||||||
|
@ -300,6 +300,9 @@
|
|||||||
<optional>
|
<optional>
|
||||||
<ref name="backup"/>
|
<ref name="backup"/>
|
||||||
</optional>
|
</optional>
|
||||||
|
<optional>
|
||||||
|
<ref name="async-teardown"/>
|
||||||
|
</optional>
|
||||||
<optional>
|
<optional>
|
||||||
<ref name="s390-pv"/>
|
<ref name="s390-pv"/>
|
||||||
</optional>
|
</optional>
|
||||||
@ -315,6 +318,12 @@
|
|||||||
</element>
|
</element>
|
||||||
</define>
|
</define>
|
||||||
|
|
||||||
|
<define name="async-teardown">
|
||||||
|
<element name="async-teardown">
|
||||||
|
<ref name="supported"/>
|
||||||
|
</element>
|
||||||
|
</define>
|
||||||
|
|
||||||
<define name="gic">
|
<define name="gic">
|
||||||
<element name="gic">
|
<element name="gic">
|
||||||
<ref name="supported"/>
|
<ref name="supported"/>
|
||||||
|
@ -6296,6 +6296,7 @@ static const struct virQEMUCapsDomainFeatureCapabilityTuple domCapsTuples[] = {
|
|||||||
{ VIR_DOMAIN_CAPS_FEATURE_GENID, QEMU_CAPS_DEVICE_VMGENID },
|
{ VIR_DOMAIN_CAPS_FEATURE_GENID, QEMU_CAPS_DEVICE_VMGENID },
|
||||||
{ VIR_DOMAIN_CAPS_FEATURE_BACKING_STORE_INPUT, QEMU_CAPS_LAST },
|
{ VIR_DOMAIN_CAPS_FEATURE_BACKING_STORE_INPUT, QEMU_CAPS_LAST },
|
||||||
{ VIR_DOMAIN_CAPS_FEATURE_BACKUP, QEMU_CAPS_INCREMENTAL_BACKUP },
|
{ VIR_DOMAIN_CAPS_FEATURE_BACKUP, QEMU_CAPS_INCREMENTAL_BACKUP },
|
||||||
|
{ VIR_DOMAIN_CAPS_FEATURE_ASYNC_TEARDOWN, QEMU_CAPS_RUN_WITH_ASYNC_TEARDOWN },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -248,6 +248,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -262,6 +262,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -194,6 +194,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -194,6 +194,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -162,6 +162,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -268,6 +268,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<s390-pv supported='no'/>
|
<s390-pv supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
|
@ -248,6 +248,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -250,6 +250,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -147,6 +147,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -264,6 +264,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -207,6 +207,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -150,6 +150,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -207,6 +207,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -169,6 +169,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -250,6 +250,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -251,6 +251,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -264,6 +264,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -133,6 +133,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -251,6 +251,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -251,6 +251,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -147,6 +147,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -264,6 +264,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -207,6 +207,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -150,6 +150,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -207,6 +207,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -169,6 +169,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -270,6 +270,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<s390-pv supported='no'/>
|
<s390-pv supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
|
@ -251,6 +251,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -253,6 +253,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='yes'>
|
<sev supported='yes'>
|
||||||
<cbitpos>47</cbitpos>
|
<cbitpos>47</cbitpos>
|
||||||
<reducedPhysBits>1</reducedPhysBits>
|
<reducedPhysBits>1</reducedPhysBits>
|
||||||
|
@ -267,6 +267,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='yes'>
|
<sev supported='yes'>
|
||||||
<cbitpos>47</cbitpos>
|
<cbitpos>47</cbitpos>
|
||||||
<reducedPhysBits>1</reducedPhysBits>
|
<reducedPhysBits>1</reducedPhysBits>
|
||||||
|
@ -209,6 +209,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -209,6 +209,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -271,6 +271,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<s390-pv supported='yes'/>
|
<s390-pv supported='yes'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
|
@ -253,6 +253,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='no'/>
|
<backup supported='no'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='yes'>
|
<sev supported='yes'>
|
||||||
<cbitpos>47</cbitpos>
|
<cbitpos>47</cbitpos>
|
||||||
<reducedPhysBits>1</reducedPhysBits>
|
<reducedPhysBits>1</reducedPhysBits>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -267,6 +267,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -269,6 +269,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -216,6 +216,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -216,6 +216,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -168,6 +168,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -170,6 +170,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -255,6 +255,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='yes'>
|
<sgx supported='yes'>
|
||||||
<flc>no</flc>
|
<flc>no</flc>
|
||||||
|
@ -270,6 +270,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='yes'>
|
<sgx supported='yes'>
|
||||||
<flc>no</flc>
|
<flc>no</flc>
|
||||||
|
@ -215,6 +215,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -215,6 +215,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -173,6 +173,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -255,6 +255,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='yes'>
|
<sgx supported='yes'>
|
||||||
<flc>no</flc>
|
<flc>no</flc>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -268,6 +268,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -166,6 +166,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -254,6 +254,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -177,6 +177,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -260,6 +260,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -258,6 +258,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -258,6 +258,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -152,6 +152,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -260,6 +260,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -261,6 +261,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
@ -153,6 +153,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -263,6 +263,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
@ -156,6 +156,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
</features>
|
</features>
|
||||||
|
@ -261,6 +261,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='no'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
@ -262,6 +262,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='yes'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
@ -262,6 +262,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='yes'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
@ -278,6 +278,7 @@
|
|||||||
<genid supported='no'/>
|
<genid supported='no'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='yes'/>
|
||||||
<s390-pv supported='yes'/>
|
<s390-pv supported='yes'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
|
@ -262,6 +262,7 @@
|
|||||||
<genid supported='yes'/>
|
<genid supported='yes'/>
|
||||||
<backingStoreInput supported='yes'/>
|
<backingStoreInput supported='yes'/>
|
||||||
<backup supported='yes'/>
|
<backup supported='yes'/>
|
||||||
|
<async-teardown supported='yes'/>
|
||||||
<sev supported='no'/>
|
<sev supported='no'/>
|
||||||
<sgx supported='no'/>
|
<sgx supported='no'/>
|
||||||
<hyperv supported='yes'>
|
<hyperv supported='yes'>
|
||||||
|
Loading…
Reference in New Issue
Block a user