From: Alexandru Isaila Date: Tue, 25 Sep 2018 14:29:18 +0000 (+0200) Subject: x86/hvm: change gethvmcontext_partial error code for offline vcpus X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3236 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7cbcd02ff302ea558d870ac7b21d30343b695af9;p=xen.git x86/hvm: change gethvmcontext_partial error code for offline vcpus This patch is needed in order to have a different return error for invalid vcpu and offline vcpu on the per vcpu king. Signed-off-by: Alexandru Isaila Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/hvm/save.c b/xen/arch/x86/hvm/save.c index d520898843..0fc59d3487 100644 --- a/xen/arch/x86/hvm/save.c +++ b/xen/arch/x86/hvm/save.c @@ -165,7 +165,8 @@ int hvm_save_one(struct domain *d, unsigned int typecode, unsigned int instance, 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); - else if ( rv = -ENOENT, ctxt.cur >= sizeof(*desc) ) + else if ( (rv = hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ? + -ENODATA : -ENOENT), ctxt.cur >= sizeof(*desc) ) { uint32_t off;