From: Pavel Dovgalyuk Date: Tue, 31 Jan 2017 11:40:54 +0000 (+0300) Subject: apic: reset apic_delivered global variable on machine reset X-Git-Tag: v2.8.1~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=270a46ea0d50bbb24aafaa92cbd35a01fad48ec3;p=thirdparty%2Fqemu.git apic: reset apic_delivered global variable on machine reset This patch adds call to apic_reset_irq_delivered when the virtual machine is reset. Signed-off-by: Pavel Dovgalyuk Message-Id: <20170131114054.276.62201.stgit@PASHA-ISP> Cc: qemu-stable@nongnu.org Signed-off-by: Paolo Bonzini (cherry picked from commit f65e821262029ee30c6b228e80ddeb86acdf7ff0) Signed-off-by: Michael Roth --- diff --git a/hw/intc/apic_common.c b/hw/intc/apic_common.c index d78c8855092..7dfcca437a4 100644 --- a/hw/intc/apic_common.c +++ b/hw/intc/apic_common.c @@ -250,6 +250,8 @@ static void apic_reset_common(DeviceState *dev) s->apicbase = APIC_DEFAULT_ADDRESS | bsp | MSR_IA32_APICBASE_ENABLE; s->id = s->initial_apic_id; + apic_reset_irq_delivered(); + s->vapic_paddr = 0; info->vapic_base_update(s);