]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
Actually set a HVM domain's time offset when it sets the RTC
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 18 Mar 2009 13:24:42 +0000 (13:24 +0000)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 18 Mar 2009 13:24:42 +0000 (13:24 +0000)
Signed-off-by: Tim Deegan <Tim.Deegan@citrix.com>
xen/arch/x86/hvm/rtc.c

index 2df9fea706656f5313e5043a7645e411ea0dccfc..9ab69033b05a55350e6dbab8b92a6656004caef1 100644 (file)
@@ -160,6 +160,7 @@ static inline int from_bcd(RTCState *s, int a)
 static void rtc_set_time(RTCState *s)
 {
     struct tm *tm = &s->current_tm;
+    struct domain *d = vrtc_domain(s);
     unsigned long before, after; /* XXX s_time_t */
       
     ASSERT(spin_is_locked(&s->lock));
@@ -180,6 +181,12 @@ static void rtc_set_time(RTCState *s)
 
     after = mktime(tm->tm_year, tm->tm_mon, tm->tm_mday,
                    tm->tm_hour, tm->tm_min, tm->tm_sec);
+
+    /* We use the guest's setting of the RTC to define the local-time 
+     * offset for this domain. */
+    d->time_offset_seconds += (after - before);
+    update_domain_wallclock_time(d);
+    /* Also tell qemu-dm about it so it will be remembered for next boot. */
     send_timeoffset_req(after - before);
 }