search for: a962ce2

Displaying 2 results from an estimated 2 matches for "a962ce2".

2013 Jun 11
8
[PATCH v2] xen: fix initialization of wallclock time for PVHVM on migration
...> --- Since this is a bug fix, I think it is suitable for inclusion in the 4.3 release, and backported to older releases. --- xen/arch/x86/hvm/hvm.c | 20 ++++++-------------- 1 files changed, 6 insertions(+), 14 deletions(-) diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index a962ce2..0dcfd81 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -3404,21 +3404,13 @@ static void hvm_latch_shinfo_size(struct domain *d) */ if ( current->domain == d ) { new_has_32bit = (hvm_guest_x86_mode(current) != 8); - if (new_has_32bit != d->arch....
2013 Jun 04
13
[PATCH] x86/vtsc: update vcpu_time after hvm_set_guest_time
...om> Cc: Keir Fraser <keir@xen.org> Cc: Jan Beulich <jbeulich@suse.com> Cc: George Dunlap <george.dunlap@eu.citrix.com> --- xen/arch/x86/hvm/hvm.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index a962ce2..e257dcf 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -343,6 +343,12 @@ void hvm_do_resume(struct vcpu *v) ioreq_t *p; pt_restore_timer(v); + /* + * Update vcpu_info, since the call to pt_restore_timer can change + * the value in v->arch.hvm_vcpu.sti...