提交 5cc2d8f6 编写于 作者: P Pavel Hrdina

xen: fix timer bug found by updated test

Only 'tsc' timer allows set mode and track is valid only for 'rtc' and
'platform' timers.
Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
上级 91a00424
......@@ -553,6 +553,8 @@ xenParseCPUFeatures(virConfPtr conf, virDomainDefPtr def)
timer->name = VIR_DOMAIN_TIMER_NAME_HPET;
timer->present = val;
timer->tickpolicy = -1;
timer->mode = -1;
timer->track = -1;
def->clock.ntimers = 1;
def->clock.timers[0] = timer;
......
......@@ -1262,6 +1262,8 @@ xenParseSxpr(const struct sexpr *root,
timer->name = VIR_DOMAIN_TIMER_NAME_HPET;
timer->present = sexpr_int(root, "domain/image/hvm/hpet");
timer->tickpolicy = -1;
timer->mode = -1;
timer->track = -1;
def->clock.ntimers = 1;
def->clock.timers[0] = timer;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册