[libvirt] [PATCH v2 03/11] Adds xml entries for memory tunables

Nikunj A. Dadhania nikunj at linux.vnet.ibm.com
Thu Sep 23 13:16:56 UTC 2010


From: Nikunj A. Dadhania <nikunj at linux.vnet.ibm.com>

The patch adds xml entries to the domain.rng file.

v2:
+ Fix typo min_guarantee

Signed-off-by: Nikunj A. Dadhania <nikunj at linux.vnet.ibm.com>
---
 docs/schemas/domain.rng |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/docs/schemas/domain.rng b/docs/schemas/domain.rng
index ccb8cf3..d75254c 100644
--- a/docs/schemas/domain.rng
+++ b/docs/schemas/domain.rng
@@ -299,6 +299,37 @@
           </optional>
         </element>
       </optional>
+
+      <!-- All the memory/swap related tunables would go in the memtune -->
+      <optional>
+	<element name="memtune">
+	  <!-- Maximum memory the VM can use -->
+	  <optional>
+	    <element name="hard_limit">
+	      <ref name="memoryKB"/>
+	    </element>
+	  </optional>
+	  <!-- Minimum memory ascertained for the VM during contention -->
+	  <optional>
+	    <element name="soft_limit">
+	      <ref name="memoryKB"/>
+	    </element>
+	  </optional>
+	  <!-- Minimum amount of memory required to start the VM -->
+	  <optional>
+	    <element name="min_guarantee">
+	      <ref name="memoryKB"/>
+	    </element>
+	  </optional>
+	  <!-- Maximum swap area the VM can use -->
+	  <optional>
+	    <element name="swap_hard_limit">
+	      <ref name="memoryKB"/>
+	    </element>
+	  </optional>
+	</element>
+      </optional>
+
       <optional>
         <element name="vcpu">
           <optional>




More information about the libvir-list mailing list