mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Fix capabilities XML to use generic terms for suspend targets
The capabilities XML uses the x86 specific terms 'S3', 'S4' and 'Hybrid-Syspend'. Switch it to use the same terminology as the API constants and virsh options, eg 'suspend_mem' 'suspend_disk' and 'suspend_hybrid' * docs/formatcaps.html.in, docs/schemas/capability.rng, src/conf/capabilities.c: Rename suspend constants
This commit is contained in:
parent
6fb5400fc6
commit
ae5e55289d
@ -29,9 +29,9 @@ BIOS you will see</p>
|
||||
...
|
||||
</cpu>
|
||||
<power_management>
|
||||
<S3/>
|
||||
<S4/>
|
||||
<Hybrid-Suspend/>
|
||||
<suspend_mem/>
|
||||
<suspend_disk/>
|
||||
<suspend_hybrid/>
|
||||
<power_management/>
|
||||
</host></span>
|
||||
|
||||
|
@ -112,17 +112,17 @@
|
||||
<element name='power_management'>
|
||||
<interleave>
|
||||
<optional>
|
||||
<element name='S3'>
|
||||
<element name='suspend_mem'>
|
||||
<empty/>
|
||||
</element>
|
||||
</optional>
|
||||
<optional>
|
||||
<element name='S4'>
|
||||
<element name='suspend_disk'>
|
||||
<empty/>
|
||||
</element>
|
||||
</optional>
|
||||
<optional>
|
||||
<element name='Hybrid-Suspend'>
|
||||
<element name='suspend_hybrid'>
|
||||
<empty/>
|
||||
</element>
|
||||
</optional>
|
||||
|
@ -37,7 +37,7 @@
|
||||
#define VIR_FROM_THIS VIR_FROM_CAPABILITIES
|
||||
|
||||
VIR_ENUM_IMPL(virHostPMCapability, VIR_NODE_SUSPEND_TARGET_LAST,
|
||||
"S3", "S4", "Hybrid-Suspend")
|
||||
"suspend_mem", "suspend_disk", "suspend_hybrid");
|
||||
|
||||
/**
|
||||
* virCapabilitiesNew:
|
||||
|
Loading…
x
Reference in New Issue
Block a user