diff options
author | Jan Kiszka | 2012-05-16 20:41:11 +0200 |
---|---|---|
committer | Marcelo Tosatti | 2012-05-16 23:04:44 +0200 |
commit | 08a82ac01cb5409480128f8e1f144557d99b74a3 (patch) | |
tree | c7151763bac0097f5f8ca4ef67969729281b3e8d /hw/xen.h | |
parent | kvm: Introduce basic MSI support for in-kernel irqchips (diff) | |
download | qemu-08a82ac01cb5409480128f8e1f144557d99b74a3.tar.gz qemu-08a82ac01cb5409480128f8e1f144557d99b74a3.tar.xz qemu-08a82ac01cb5409480128f8e1f144557d99b74a3.zip |
pc: Enable MSI support at APIC level
Push msi_supported enabling to the APIC implementations where we can
encapsulate the decision more cleanly, hiding the details from the
generic code.
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'hw/xen.h')
-rw-r--r-- | hw/xen.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -57,14 +57,4 @@ void xen_register_framebuffer(struct MemoryRegion *mr); # define HVM_MAX_VCPUS 32 #endif -static inline int xen_msi_support(void) -{ -#if defined(CONFIG_XEN_CTRL_INTERFACE_VERSION) \ - && CONFIG_XEN_CTRL_INTERFACE_VERSION >= 420 - return xen_enabled(); -#else - return 0; -#endif -} - #endif /* QEMU_HW_XEN_H */ |