[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [qemu-xen-unstable] xen: don't initialize the RTC timers if xen is available
commit 13b06e700528b1c4258ce5d768d69b0d499f75ca Author: Sefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Date: Thu Dec 1 17:52:01 2011 +0000 xen: don't initialize the RTC timers if xen is available Xen doesn't need full RTC emulation in Qemu because the RTC is already emulated by the hypervisor. Hence don't initialize the RTC timers when Xen is available so that Qemu doesn't need to wake up needlessly. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> --- hw/mc146818rtc.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/mc146818rtc.c b/hw/mc146818rtc.c index cb3f56b..253b680 100644 --- a/hw/mc146818rtc.c +++ b/hw/mc146818rtc.c @@ -542,6 +542,7 @@ RTCState *rtc_init(int base, qemu_irq irq, int base_year) s->base_year = base_year; rtc_set_date_from_host(s); +#ifndef CONFIG_DM s->periodic_timer = qemu_new_timer(vm_clock, rtc_periodic_timer, s); s->second_timer = qemu_new_timer(vm_clock, @@ -551,6 +552,7 @@ RTCState *rtc_init(int base, qemu_irq irq, int base_year) s->next_second_time = qemu_get_clock(vm_clock) + (ticks_per_sec * 99) / 100; qemu_mod_timer(s->second_timer2, s->next_second_time); +#endif register_ioport_write(base, 2, 1, cmos_ioport_write, s); register_ioport_read(base, 2, 1, cmos_ioport_read, s); -- generated by git-patchbot for /home/xen/git/qemu-xen-unstable.git _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |