aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Pau Monné <roger.pau@citrix.com>2013-07-01 11:59:31 +0200
committerJan Beulich <jbeulich@suse.com>2013-07-01 11:59:31 +0200
commit2967614da4953e7af34b3f015df3eb8fd4201f89 (patch)
tree69a837a8bd06d95a47c4a13c1c0648201bddf1fc
parenta0c56a2b9f5b3232ee83618bd82eb0439e30d2be (diff)
downloadxen-2967614da4953e7af34b3f015df3eb8fd4201f89.tar.gz
xen-2967614da4953e7af34b3f015df3eb8fd4201f89.tar.bz2
xen-2967614da4953e7af34b3f015df3eb8fd4201f89.zip
x86/HVM: fix initialization of wallclock time for PVHVM on migration
Call update_domain_wallclock_time on hvm_latch_shinfo_size even if the bitness of the guest has already been set, this fixes the problem with the wallclock not being set for PVHVM guests on resume from migration. Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> Clean up the resulting code and retain the (slightly adjusted) original comment. Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org> master commit: f8e8fd56bd7d5675e8331b4ec74bae76c9dbf24e master date: 2013-06-12 10:05:39 +0200
-rw-r--r--xen/arch/x86/hvm/hvm.c33
1 files changed, 14 insertions, 19 deletions
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index be79fb607a..130c84b7ed 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -3338,31 +3338,26 @@ int hvm_do_hypercall(struct cpu_user_regs *regs)
static void hvm_latch_shinfo_size(struct domain *d)
{
- bool_t new_has_32bit;
-
/*
* Called from operations which are among the very first executed by
* PV drivers on initialisation or after save/restore. These are sensible
* points at which to sample the execution mode of the guest and latch
* 32- or 64-bit format for shared state.
*/
- if ( current->domain == d ) {
- new_has_32bit = (hvm_guest_x86_mode(current) != 8);
- if (new_has_32bit != d->arch.has_32bit_shinfo) {
- d->arch.has_32bit_shinfo = new_has_32bit;
- /*
- * Make sure that the timebase in the shared info
- * structure is correct for its new bit-ness. We should
- * arguably try to convert the other fields as well, but
- * that's much more problematic (e.g. what do you do if
- * you're going from 64 bit to 32 bit and there's an event
- * channel pending which doesn't exist in the 32 bit
- * version?). Just setting the wallclock time seems to be
- * sufficient for everything we do, even if it is a bit of
- * a hack.
- */
- update_domain_wallclock_time(d);
- }
+ if ( current->domain == d )
+ {
+ d->arch.has_32bit_shinfo = (hvm_guest_x86_mode(current) != 8);
+ /*
+ * Make sure that the timebase in the shared info structure is correct.
+ *
+ * If the bit-ness changed we should arguably try to convert the other
+ * fields as well, but that's much more problematic (e.g. what do you
+ * do if you're going from 64 bit to 32 bit and there's an event
+ * channel pending which doesn't exist in the 32 bit version?). Just
+ * setting the wallclock time seems to be sufficient for everything
+ * we do, even if it is a bit of a hack.
+ */
+ update_domain_wallclock_time(d);
}
}