xen/21460-xend-timeoffset.patch
Charles Arnold 986d3927c4 - bnc#608191 - /var/adm/fillup-templates/sysconfig.xend from
package xen-tools is no valid sysconfig file
  xend-sysconfig.patch

- bnc#608194 - /etc/xen/* config files are not packaged with
  noreplace

- bnc#569744 - SLE HVM guest clock/timezone is incorrect after
  reboot
  21460-xend-timeoffset.patch
  21459-block-script.patch
- bnc#607219 - AMD Erratum 383 workaround for Xen

OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=53
2010-06-03 15:11:51 +00:00

26 lines
1.0 KiB
Diff

# HG changeset patch
# User Jim Fehlig <jfehlig@novell.com>
# Date 1274822804 21600
# Node ID a83e97657ba0f3ea232fe0dfb9edccf8e28aa982
# Parent 14d040342c6618365750b2c3b96ca01ff4a5e5dd
tools: Fix time offset when localtime=0
localtime can be stored in vm config as a string, resulting in
incorrect calculation of rtc_timeoffset. Cast localtime to int
to ensure rtc_timeoffset is calculated properly.
Signed-off-by: Jim Fehlig <jfehlig@novell.com>
diff -r 14d040342c66 -r a83e97657ba0 tools/python/xen/xend/image.py
--- a/tools/python/xen/xend/image.py Tue May 25 11:13:22 2010 -0600
+++ b/tools/python/xen/xend/image.py Tue May 25 15:26:44 2010 -0600
@@ -129,7 +129,7 @@
self.dmargs = self.parseDeviceModelArgs(vmConfig)
self.pid = None
rtc_timeoffset = int(vmConfig['platform'].get('rtc_timeoffset', 0))
- if vmConfig['platform'].get('localtime', 0):
+ if int(vmConfig['platform'].get('localtime', 0)):
if time.localtime(time.time())[8]:
rtc_timeoffset -= time.altzone
else: