Re: [Qemu-devel] [PATCH 2/5] apic: add send_msi() to APICCommonClass

2016-09-27 Thread Radim Krčmář
2016-09-26 14:38+0200, Igor Mammedov: > On Thu, 22 Sep 2016 23:04:29 +0200 > Radim Krčmář wrote: > >> The MMIO based interface to APIC doesn't work well with MSIs that have >> upper address bits set (remapped x2APIC MSIs). A specialized interface >> is a quick and dirty way

Re: [Qemu-devel] [PATCH 2/5] apic: add send_msi() to APICCommonClass

2016-09-26 Thread Igor Mammedov
On Thu, 22 Sep 2016 23:04:29 +0200 Radim Krčmář wrote: > The MMIO based interface to APIC doesn't work well with MSIs that have > upper address bits set (remapped x2APIC MSIs). A specialized interface > is a quick and dirty way to avoid the shortcoming. > > Signed-off-by:

Re: [Qemu-devel] [PATCH 2/5] apic: add send_msi() to APICCommonClass

2016-09-23 Thread Peter Xu
On Thu, Sep 22, 2016 at 11:04:29PM +0200, Radim Krčmář wrote: > The MMIO based interface to APIC doesn't work well with MSIs that have > upper address bits set (remapped x2APIC MSIs). A specialized interface > is a quick and dirty way to avoid the shortcoming. > > Signed-off-by: Radim Krčmář

[Qemu-devel] [PATCH 2/5] apic: add send_msi() to APICCommonClass

2016-09-22 Thread Radim Krčmář
The MMIO based interface to APIC doesn't work well with MSIs that have upper address bits set (remapped x2APIC MSIs). A specialized interface is a quick and dirty way to avoid the shortcoming. Signed-off-by: Radim Krčmář --- hw/i386/kvm/apic.c | 19