[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86/HVM: RTC periodic timer emulation adjustments
# HG changeset patch # User Jan Beulich <jbeulich@xxxxxxxx> # Date 1346654141 -7200 # Node ID d1736b98a702c375591931d5f61db3c47f381afc # Parent 8fbdcc1c5613dc55c23be8b56f52a37f4d89e9fa x86/HVM: RTC periodic timer emulation adjustments - don't call rtc_timer_update() on REG_A writes when the value didn't change (doing the call always was reported to cause wall clock time lagging with the JVM running on Windows) - don't call rtc_timer_update() on REG_B writes when RTC_PIE didn't change Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Keir Fraser <keir@xxxxxxx> --- diff -r 8fbdcc1c5613 -r d1736b98a702 xen/arch/x86/hvm/rtc.c --- a/xen/arch/x86/hvm/rtc.c Mon Sep 03 08:17:50 2012 +0200 +++ b/xen/arch/x86/hvm/rtc.c Mon Sep 03 08:35:41 2012 +0200 @@ -365,6 +365,7 @@ static int rtc_ioport_write(void *opaque { RTCState *s = opaque; struct domain *d = vrtc_domain(s); + uint32_t orig; spin_lock(&s->lock); @@ -382,6 +383,7 @@ static int rtc_ioport_write(void *opaque return 0; } + orig = s->hw.cmos_data[s->hw.cmos_index]; switch ( s->hw.cmos_index ) { case RTC_SECONDS_ALARM: @@ -405,9 +407,9 @@ static int rtc_ioport_write(void *opaque break; case RTC_REG_A: /* UIP bit is read only */ - s->hw.cmos_data[RTC_REG_A] = (data & ~RTC_UIP) | - (s->hw.cmos_data[RTC_REG_A] & RTC_UIP); - rtc_timer_update(s); + s->hw.cmos_data[RTC_REG_A] = (data & ~RTC_UIP) | (orig & RTC_UIP); + if ( (data ^ orig) & ~RTC_UIP ) + rtc_timer_update(s); break; case RTC_REG_B: if ( data & RTC_SET ) @@ -436,7 +438,8 @@ static int rtc_ioport_write(void *opaque hvm_isa_irq_assert(d, RTC_IRQ); } s->hw.cmos_data[RTC_REG_B] = data; - rtc_timer_update(s); + if ( (data ^ orig) & RTC_PIE ) + rtc_timer_update(s); check_update_timer(s); alarm_timer_update(s); break; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |