[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: Fix save/restore after previous changeset.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1254142775 -3600 # Node ID 1e33261a814f1c099855008a7bd9c378e4dad800 # Parent 3e0675c57933be59b8d38bff1e61876e8672b0ab xend: Fix save/restore after previous changeset. Platform variable 'tsc_native' is saved/restored as a string, so must be converted to an integer before passing to domain_set_tsc_native(). Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r 3e0675c57933 -r 1e33261a814f tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Mon Sep 28 10:01:10 2009 +0100 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Sep 28 13:59:35 2009 +0100 @@ -2426,7 +2426,7 @@ class XendDomainInfo: # Set TSC mode of domain tsc_native = self.info["platform"].get("tsc_native") if arch.type == "x86" and tsc_native is not None: - xc.domain_set_tsc_native(self.domid, tsc_native) + xc.domain_set_tsc_native(self.domid, int(tsc_native)) # Set timer configuration of domain timer_mode = self.info["platform"].get("timer_mode") _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |