Re: [Qemu-devel] [PATCH master/v1.0.x] ivshmem: add missing msix calls

2012-01-15 Thread Andreas Färber
Am 13.01.2012 23:43, schrieb Cam Macdonell: > Can this patch be merged, please? You need to cc qemu-stable if you want it backported to v1.0.x once applied. Andreas > On Mon, Dec 5, 2011 at 12:48 PM, Michael S. Tsirkin wrote: >> ivshmem used msix but didn't call it on either reset or >> config

Re: [Qemu-devel] [PATCH master/v1.0.x] ivshmem: add missing msix calls

2012-01-13 Thread Cam Macdonell
Hello, Can this patch be merged, please? Thanks, Cam On Mon, Dec 5, 2011 at 12:48 PM, Michael S. Tsirkin wrote: > ivshmem used msix but didn't call it on either reset or > config write paths. This used to partically work since > guests don't use all of msi-x configuration fields, > and reset is

[Qemu-devel] [PATCH master/v1.0.x] ivshmem: add missing msix calls

2011-12-05 Thread Michael S. Tsirkin
ivshmem used msix but didn't call it on either reset or config write paths. This used to partically work since guests don't use all of msi-x configuration fields, and reset is rarely used, but the patch 'msix: track function masked in pci device state' broke that. Fix by adding appropriate calls.