forked from pool/libvirt
57 lines
1.6 KiB
Diff
57 lines
1.6 KiB
Diff
commit 79f56c669f0f4d554cec3137d0a6aadf7c5f2bec
|
|
Author: Jim Fehlig <jfehlig@novell.com>
|
|
Date: Wed Jan 5 16:07:54 2011 -0700
|
|
|
|
Document HAP domain feature
|
|
|
|
Add HAP feature to schema and documentation.
|
|
|
|
Index: libvirt-0.8.7/docs/formatdomain.html.in
|
|
===================================================================
|
|
--- libvirt-0.8.7.orig/docs/formatdomain.html.in
|
|
+++ libvirt-0.8.7/docs/formatdomain.html.in
|
|
@@ -437,6 +437,7 @@
|
|
<pae/>
|
|
<acpi/>
|
|
<apic/>
|
|
+ <hap/>
|
|
</features>
|
|
...</pre>
|
|
|
|
@@ -456,6 +457,10 @@
|
|
<dd>ACPI is useful for power management, for example, with
|
|
KVM guests it is required for graceful shutdown to work.
|
|
</dd>
|
|
+ <dt><code>hap</code></dt>
|
|
+ <dd>Enable use of Hardware Assisted Paging if available in
|
|
+ the hardware.
|
|
+ </dd>
|
|
</dl>
|
|
|
|
<h3><a name="elementsTime">Time keeping</a></h3>
|
|
Index: libvirt-0.8.7/docs/schemas/domain.rng
|
|
===================================================================
|
|
--- libvirt-0.8.7.orig/docs/schemas/domain.rng
|
|
+++ libvirt-0.8.7/docs/schemas/domain.rng
|
|
@@ -1741,7 +1741,7 @@
|
|
</element>
|
|
</define>
|
|
<!--
|
|
- A set of optional features: PAE, APIC and ACPI support
|
|
+ A set of optional features: PAE, APIC, ACPI, and HAP support
|
|
-->
|
|
<define name="features">
|
|
<optional>
|
|
@@ -1762,6 +1762,11 @@
|
|
<empty/>
|
|
</element>
|
|
</optional>
|
|
+ <optional>
|
|
+ <element name="hap">
|
|
+ <empty/>
|
|
+ </element>
|
|
+ </optional>
|
|
</interleave>
|
|
</element>
|
|
</optional>
|