From fbdea7cb922635e185b62cefa88aa298786e1d0a Mon Sep 17 00:00:00 2001 From: Wen Congyang Date: Thu, 21 Jul 2011 16:36:39 +0800 Subject: [PATCH] doc: Add documentation for new cputune elements period and quota We have added element period and quota. Document them in formatdomain.html.in. --- docs/formatdomain.html.in | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index a54ee6a8ef..8c5c4c9965 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -307,6 +307,8 @@ <vcpupin vcpu="2" cpuset="2,3"/> <vcpupin vcpu="3" cpuset="0,4"/> <shares>2048</shares> + <period>1000000</period> + <quota>-1</quota> </cputune> <numatune> <memory mode="strict" nodeset="1-4,^3"/> @@ -400,6 +402,26 @@ 2048 will get twice as much CPU time as a VM configured with value 1024. Since 0.9.0 +
period
+
+ The optional period element specifies the enforcement + interval(unit: microseconds). Within period, each vcpu of + the domain will not be allowed to consume more than quota + worth of runtime. The value should be in range [1000, 1000000]. A period + with value 0 means no value. (NB: Only qemu driver support) + Since 0.9.4 +
+
quota
+
+ The optional quota element specifies the maximum allowed + bandwidth(unit: microseconds). A domain with quota as any + negative value indicates that the domain has infinite bandwidth, which + means that it is not bandwidth controlled. The value should be in range + [1000, 18446744073709551] or less than 0. A quota with value 0 means no + value. You can use this feature to ensure that all vcpus run at the same + speed. (NB: Only qemu driver support) + Since 0.9.4 +
numatune
The optional numatune element provides details of -- GitLab