diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-03-22 13:12:18 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-03-27 14:41:01 +0200 |
commit | 5354edd286ea6e956b81da66c9dcc5e47028198e (patch) | |
tree | 93a756bc6c87170f75ebb957582c9f4656d643f3 /include | |
parent | e4548bb640497bf4d6df3850c0838d1b581fddc9 (diff) | |
download | qemu-5354edd286ea6e956b81da66c9dcc5e47028198e.zip qemu-5354edd286ea6e956b81da66c9dcc5e47028198e.tar.gz qemu-5354edd286ea6e956b81da66c9dcc5e47028198e.tar.bz2 |
Revert "apic: save apic_delivered flag"
This reverts commit 07bfa354772f2de67008dc66c201b627acff0106.
The global variable is only read as part of a
apic_reset_irq_delivered();
qemu_irq_raise(s->irq);
if (!apic_get_irq_delivered()) {
sequence, so the value never matters at migration time.
Reported-by: Dr. David Alan Gilbert <dglibert@redhat.com>
Cc: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/i386/apic_internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/hw/i386/apic_internal.h b/include/hw/i386/apic_internal.h index 20ad28c..1209eb4 100644 --- a/include/hw/i386/apic_internal.h +++ b/include/hw/i386/apic_internal.h @@ -189,8 +189,6 @@ struct APICCommonState { DeviceState *vapic; hwaddr vapic_paddr; /* note: persistence via kvmvapic */ bool legacy_instance_id; - - int apic_irq_delivered; /* for saving static variable */ }; typedef struct VAPICState { |