>>> On 10.09.18 at 14:36, <aisa...@bitdefender.com> wrote: > --- a/xen/arch/x86/hvm/save.c > +++ b/xen/arch/x86/hvm/save.c > @@ -155,6 +155,11 @@ int hvm_save_one(struct domain *d, unsigned int > typecode, unsigned int instance, > if ( !ctxt.data ) > return -ENOMEM; > > + if ( hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ) > + vcpu_pause(d->vcpu[instance]);
Is there any reason why you don't use v here and ... > + else > + domain_pause(d); > + > if ( (rv = hvm_sr_handlers[typecode].save(v, &ctxt)) != 0 ) > printk(XENLOG_G_ERR "HVM%d save: failed to save type %"PRIu16" > (%d)\n", > d->domain_id, typecode, rv); > @@ -186,6 +191,11 @@ int hvm_save_one(struct domain *d, unsigned int > typecode, unsigned int instance, > } > } > > + if ( hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ) > + vcpu_unpause(d->vcpu[instance]); ... here? Jan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel