From: Douglas Schilling Landgraf Date: Thu, 29 Sep 2011 00:58:00 +0000 (-0400) Subject: formatdomain.html.in: fix tickpolicy X-Git-Tag: v0.9.7-rc1~224 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7d1f5980b690c5cf576605f0983847518e70eba;p=thirdparty%2Flibvirt.git formatdomain.html.in: fix tickpolicy there is no option "none": >From libvirt/src/conf/domain_conf.c VIR_ENUM_IMPL(virDomainTimerTickpolicy, VIR_DOMAIN_TIMER_TICKPOLICY_LAST, "delay", "catchup", "merge", "discard"); Replacing with delay. Signed-off-by: Douglas Schilling Landgraf --- diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index 9c3c2e8313..49a2c09636 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> ...