diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-04-17 16:56:51 +0000 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-04-17 18:04:42 +0000 |
commit | 4c9f8d1b4eb0e1a7e69df6373e9c2d40a929494d (patch) | |
tree | c78b0b193fafc9d37c7765350a9aabea084602be /hw/pc.c | |
parent | 8688e0652dc4fde816316fbd10869e3e33411968 (diff) |
xen: add a dummy xc_hvm_inject_msi for Xen < 4.2
xc_hvm_inject_msi is only available on Xen >= 4.2: add a dummy
compatibility function for Xen < 4.2.
Also enable msi support only on Xen >= 4.2.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -916,7 +916,7 @@ static DeviceState *apic_init(void *env, uint8_t apic_id) msi_supported = true; } - if (xen_enabled()) { + if (xen_msi_support()) { msi_supported = true; } |