From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XOnfE-0007AV-OD for qemu-devel@nongnu.org; Tue, 02 Sep 2014 08:58:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XOnf9-0000xG-R6 for qemu-devel@nongnu.org; Tue, 02 Sep 2014 08:58:24 -0400 Date: Tue, 2 Sep 2014 15:57:29 +0300 From: "Michael S. Tsirkin" Message-ID: <20140902125729.GA14127@redhat.com> References: <1409655606-19150-1-git-send-email-knut.omang@oracle.com> <1409655606-19150-3-git-send-email-knut.omang@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1409655606-19150-3-git-send-email-knut.omang@oracle.com> Subject: Re: [Qemu-devel] [PATCH v2 2/4] pci: Avoid losing config updates to MSI/MSIX cap regs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Knut Omang Cc: Peter Maydell , Peter Crosthwaite , Stefan Hajnoczi , Laszlo Ersek , Alexander Graf , qemu-devel@nongnu.org, Fabien Chouteau , Luiz Capitulino , Beniamino Galvani , Alex Williamson , "Gonglei (Arei)" , Jan Kiszka , Anthony Liguori , Paolo Bonzini , Amos Kong , Gabriel Somlo , qemu-stable@nongnu.org On Tue, Sep 02, 2014 at 01:00:04PM +0200, Knut Omang wrote: > Introduce an extra local variable to avoid that the > shifting in the for loop causes updates to msi/msix capability > registers to get lost in pci_default_write_config. > > Signed-off-by: Knut Omang OK So this is a regression introduced by: commit 95d658002401e2e47a5404298ebe9508846e8a39 Author: Jan Kiszka Date: Fri May 11 11:42:40 2012 -0300 msi: Invoke msi/msix_write_config from PCI core Will queue to qemu-stable as well. > --- > hw/pci/pci.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/hw/pci/pci.c b/hw/pci/pci.c > index 6b21dee..af547dc 100644 > --- a/hw/pci/pci.c > +++ b/hw/pci/pci.c > @@ -1146,9 +1146,10 @@ uint32_t pci_default_read_config(PCIDevice *d, > return le32_to_cpu(val); > } > > -void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l) > +void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val_in, int l) > { > int i, was_irq_disabled = pci_irq_disabled(d); > + uint32_t val = val_in; > > for (i = 0; i < l; val >>= 8, ++i) { > uint8_t wmask = d->wmask[addr + i]; > @@ -1170,8 +1171,8 @@ void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l) > & PCI_COMMAND_MASTER); > } > > - msi_write_config(d, addr, val, l); > - msix_write_config(d, addr, val, l); > + msi_write_config(d, addr, val_in, l); > + msix_write_config(d, addr, val_in, l); > } > > /***********************************************************/ > -- > 1.9.0