From: Alexandru Isaila Date: Mon, 10 Sep 2018 14:26:00 +0000 (+0200) Subject: x86/hvm: introduce hvm_save_tsc_adjust_one() X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3283 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a0a173ef59cf3c2621ccf6991c8c45f6244f700c;p=xen.git x86/hvm: introduce hvm_save_tsc_adjust_one() This is used to save data from a single instance. Signed-off-by: Alexandru Isaila Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index 062872cb71..c99387f704 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -731,16 +731,23 @@ void hvm_domain_destroy(struct domain *d) destroy_vpci_mmcfg(d); } +static int hvm_save_tsc_adjust_one(struct vcpu *v, hvm_domain_context_t *h) +{ + struct hvm_tsc_adjust ctxt = { + .tsc_adjust = v->arch.hvm.msr_tsc_adjust, + }; + + return hvm_save_entry(TSC_ADJUST, v->vcpu_id, h, &ctxt); +} + static int hvm_save_tsc_adjust(struct domain *d, hvm_domain_context_t *h) { struct vcpu *v; - struct hvm_tsc_adjust ctxt; int err = 0; for_each_vcpu ( d, v ) { - ctxt.tsc_adjust = v->arch.hvm.msr_tsc_adjust; - err = hvm_save_entry(TSC_ADJUST, v->vcpu_id, h, &ctxt); + err = hvm_save_tsc_adjust_one(v, h); if ( err ) break; }