summaryrefslogtreecommitdiffstats
path: root/include/hw/i386/apic.h
diff options
context:
space:
mode:
authorSergio Andres Gomez Del Real2017-09-13 11:05:15 +0200
committerPaolo Bonzini2017-12-22 15:01:19 +0100
commit2cb9f06e3d2c8649166a95e01b05433fa9d14384 (patch)
tree34df01dea4f23c5440f91cffc83187d58481cd5e /include/hw/i386/apic.h
parenthw/i386/vmport: fix missing definitions with non-log trace backends (diff)
downloadqemu-2cb9f06e3d2c8649166a95e01b05433fa9d14384.tar.gz
qemu-2cb9f06e3d2c8649166a95e01b05433fa9d14384.tar.xz
qemu-2cb9f06e3d2c8649166a95e01b05433fa9d14384.zip
apic: add function to apic that will be used by hvf
This patch adds the function apic_get_highest_priority_irr to apic.c and exports it through the interface in apic.h for use by hvf. Signed-off-by: Sergio Andres Gomez Del Real <Sergio.G.DelReal@gmail.com> Message-Id: <20170913090522.4022-8-Sergio.G.DelReal@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/i386/apic.h')
-rw-r--r--include/hw/i386/apic.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/i386/apic.h b/include/hw/i386/apic.h
index ea48ea9389..a9f6c0aa33 100644
--- a/include/hw/i386/apic.h
+++ b/include/hw/i386/apic.h
@@ -20,6 +20,7 @@ void apic_init_reset(DeviceState *s);
void apic_sipi(DeviceState *s);
void apic_poll_irq(DeviceState *d);
void apic_designate_bsp(DeviceState *d, bool bsp);
+int apic_get_highest_priority_irr(DeviceState *dev);
/* pc.c */
DeviceState *cpu_get_current_apic(void);