]> xenbits.xensource.com Git - libvirt.git/commitdiff
formatdomain.html.in: fix tickpolicy
authorDouglas Schilling Landgraf <dougsland@redhat.com>
Thu, 29 Sep 2011 00:58:00 +0000 (20:58 -0400)
committerDaniel Veillard <veillard@redhat.com>
Thu, 29 Sep 2011 01:08:46 +0000 (09:08 +0800)
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@redhat.com>
docs/formatdomain.html.in

index 9c3c2e83138b3efc509d58e39943e88b88449b03..49a2c09636b4361def639f70e8f630fe6f2d8b26 100644 (file)
     &lt;timer name="rtc" tickpolicy="catchup" track="guest"&gt;
       &lt;catchup threshold=123 slew=120 limit=10000/&gt;
     &lt;/timer&gt;
-    &lt;timer name="pit" tickpolicy="none"/&gt;
+    &lt;timer name="pit" tickpolicy="delay"/&gt;
   &lt;/clock&gt;
   ...</pre>