Instead of the stale value inside the periodic_time struct. Signed-off-by: Roger Pau Monné <roger....@citrix.com> --- Cc: Jan Beulich <jbeul...@suse.com> Cc: Andrew Cooper <andrew.coop...@citrix.com> --- xen/arch/x86/hvm/vpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/xen/arch/x86/hvm/vpt.c b/xen/arch/x86/hvm/vpt.c index d5363caec7..a0cc61fd28 100644 --- a/xen/arch/x86/hvm/vpt.c +++ b/xen/arch/x86/hvm/vpt.c @@ -445,8 +445,8 @@ void create_periodic_time( uint64_t period, uint8_t irq, time_cb *cb, void *data) { if ( !pt->source || - (pt->irq >= NR_ISAIRQS && pt->source == PTSRC_isa) || - (pt->irq >= hvm_domain_irq(v->domain)->nr_gsis && + (irq >= NR_ISAIRQS && pt->source == PTSRC_isa) || + (irq >= hvm_domain_irq(v->domain)->nr_gsis && pt->source == PTSRC_ioapic) ) { ASSERT_UNREACHABLE(); -- 2.17.1 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel