diff --git a/docs/formatdomaincaps.html.in b/docs/formatdomaincaps.html.in index 0488d986eeda721e9655d19f51a11775cd7bbe78..0bafb677054237d2ec79b60a171cf22a35169893 100644 --- a/docs/formatdomaincaps.html.in +++ b/docs/formatdomaincaps.html.in @@ -516,6 +516,7 @@ </gic> <vmcoreinfo supported='yes'/> <genid supported='yes'/> + <backingStoreInput supported='yes'/> <sev> <cbitpos>47</cbitpos> <reduced-phys-bits>1</reduced-phys-bits> @@ -552,6 +553,13 @@

Reports whether the genid feature can be used by the domain.

+

backingStoreInput

+ +

Reports whether the hypervisor will obey the <backingStore> + elements configured for a <disk> when booting the guest, hotplugging + the disk to a running guest, or similar. +

+

SEV capabilities

AMD Secure Encrypted Virtualization (SEV) capabilities are exposed under diff --git a/docs/schemas/domaincaps.rng b/docs/schemas/domaincaps.rng index 3525c0eeef73decbed33c7c279cc4b9d4f3559e9..88b545ec2a6e5ab6421aa8e6ecab5c611fd465ea 100644 --- a/docs/schemas/domaincaps.rng +++ b/docs/schemas/domaincaps.rng @@ -207,6 +207,9 @@ + + + @@ -232,6 +235,12 @@ + + + + + + diff --git a/src/conf/domain_capabilities.c b/src/conf/domain_capabilities.c index fa27e95e1b3f5588a58a688834ba134fbd16f41f..ca208f2340fda0d26d0145d3a65bd9c776d1f00e 100644 --- a/src/conf/domain_capabilities.c +++ b/src/conf/domain_capabilities.c @@ -40,6 +40,7 @@ VIR_ENUM_IMPL(virDomainCapsFeature, "iothreads", "vmcoreinfo", "genid", + "backingStoreInput", ); static virClassPtr virDomainCapsClass; diff --git a/src/conf/domain_capabilities.h b/src/conf/domain_capabilities.h index c8eeb035ac82ea7dce58dbf8e570d38461c5f665..4ec9fe006c1939db08fa28d7007d77ee7bc4049e 100644 --- a/src/conf/domain_capabilities.h +++ b/src/conf/domain_capabilities.h @@ -162,6 +162,7 @@ typedef enum { VIR_DOMAIN_CAPS_FEATURE_IOTHREADS = 0, VIR_DOMAIN_CAPS_FEATURE_VMCOREINFO, VIR_DOMAIN_CAPS_FEATURE_GENID, + VIR_DOMAIN_CAPS_FEATURE_BACKING_STORE_INPUT, VIR_DOMAIN_CAPS_FEATURE_LAST } virDomainCapsFeature;