[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v16 08/13] x86/hvm: Introduce lapic_save_hidden_one
This is used to save data from a single instance. Signed-off-by: Alexandru Isaila <aisaila@xxxxxxxxxxxxxxx> --- Changes since v15: - Drop struct vlapic *s. --- xen/arch/x86/hvm/vlapic.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index 1b9f00a..429ffb5 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -1435,23 +1435,27 @@ static void lapic_rearm(struct vlapic *s) s->timer_last_update = s->pt.last_plt_gtime; } +static int lapic_save_hidden_one(struct vcpu *v, hvm_domain_context_t *h) +{ + if ( !has_vlapic(v->domain) ) + return 0; + + return hvm_save_entry(LAPIC, v->vcpu_id, h, &vcpu_vlapic(v)->hw); +} + static int lapic_save_hidden(struct domain *d, hvm_domain_context_t *h) { struct vcpu *v; - struct vlapic *s; - int rc = 0; - - if ( !has_vlapic(d) ) - return 0; + int err = 0; for_each_vcpu ( d, v ) { - s = vcpu_vlapic(v); - if ( (rc = hvm_save_entry(LAPIC, v->vcpu_id, h, &s->hw)) != 0 ) + err = lapic_save_hidden_one(v, h); + if ( err ) break; } - return rc; + return err; } static int lapic_save_regs(struct domain *d, hvm_domain_context_t *h) -- 2.7.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |