[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86, hvm: set vcpu->is_initialised after restore/migration
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1245155940 -3600 # Node ID f2a3b71889068551ec42f1d3fe362cfab202fb40 # Parent 775afcdc2759082e56ac22918c1f51a84917d160 x86, hvm: set vcpu->is_initialised after restore/migration After restore/migration, the xenctx command for auxiliary vcpus fails with a message "xc_vcpu_getcontext: No data available". Signed-off-by: Kouya Shimura <kouya@xxxxxxxxxxxxxx> --- xen/arch/x86/hvm/hvm.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff -r 775afcdc2759 -r f2a3b7188906 xen/arch/x86/hvm/hvm.c --- a/xen/arch/x86/hvm/hvm.c Tue Jun 16 13:33:12 2009 +0100 +++ b/xen/arch/x86/hvm/hvm.c Tue Jun 16 13:39:00 2009 +0100 @@ -662,8 +662,9 @@ static int hvm_load_cpu_ctxt(struct doma v->fpu_initialised = 1; /* Auxiliary processors should be woken immediately. */ - if ( test_and_clear_bit(_VPF_down, &v->pause_flags) ) - vcpu_wake(v); + v->is_initialised = 1; + clear_bit(_VPF_down, &v->pause_flags); + vcpu_wake(v); return 0; } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |