[libvirt] [PATCH] formatdomain.html.in: fix tickpolicy

Douglas Schilling Landgraf dougsland at redhat.com
Thu Sep 29 00:58:00 UTC 2011


there is no option "none":

>From libvirt/src/conf/domain_conf.c

<snip>
VIR_ENUM_IMPL(virDomainTimerTickpolicy,
VIR_DOMAIN_TIMER_TICKPOLICY_LAST,
              "delay",
              "catchup",
              "merge",
              "discard");
</snip>

Replacing with delay.

Signed-off-by: Douglas Schilling Landgraf <dougsland at redhat.com>
---
 docs/formatdomain.html.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in
index 9c3c2e8..49a2c09 100644
--- a/docs/formatdomain.html.in
+++ b/docs/formatdomain.html.in
@@ -746,7 +746,7 @@
     <timer name="rtc" tickpolicy="catchup" track="guest">
       <catchup threshold=123 slew=120 limit=10000/>
     </timer>
-    <timer name="pit" tickpolicy="none"/>
+    <timer name="pit" tickpolicy="delay"/>
   </clock>
   ...</pre>
 
-- 
1.7.1




More information about the libvir-list mailing list