From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34430) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Se8E1-0007Xk-QO for qemu-devel@nongnu.org; Mon, 11 Jun 2012 13:16:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Se8Dw-0003xw-2t for qemu-devel@nongnu.org; Mon, 11 Jun 2012 13:16:21 -0400 Received: from mail-pz0-f45.google.com ([209.85.210.45]:62433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Se8Dv-0003x7-T3 for qemu-devel@nongnu.org; Mon, 11 Jun 2012 13:16:16 -0400 Received: by dadv2 with SMTP id v2so6250717dad.4 for ; Mon, 11 Jun 2012 10:16:13 -0700 (PDT) Message-ID: <4FD627D9.5060601@codemonkey.ws> Date: Mon, 11 Jun 2012 12:16:09 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <20120607163830.GA13873@redhat.com> In-Reply-To: <20120607163830.GA13873@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PULL] rtl8139,pci,msi List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: jan.kiszka@siemens.com, fernando@oss.ntt.co.jp, jbaron@redhat.com, qemu-devel@nongnu.org, kakuta.hayato@oss.ntt.co.jp On 06/07/2012 11:38 AM, Michael S. Tsirkin wrote: > The following changes since commit 8cc9b43f7c5f826b39af4b012ad89bb55faac29c: > > target-microblaze: lwx/swx: first implementation (2012-06-04 10:19:46 +0200) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony > > for you to fetch changes up to 11e02c393109508fde4d99650f003dd2d6029bc5: > > pci_bridge_dev: fix error path in pci_bridge_dev_initfn() (2012-06-07 17:19:01 +0300) > > ---------------------------------------------------------------- > rtl8139,pci,msi > > This pull includes a bugfix for rtl8139 (this is independent of > Jason Wang's fix which Anthony has merged) and pci bridge hotplug bugfixes. > Further there are MSI/MSIX fixes and changes by Jan which should > also help merging device assignment down the road. > > Signed-off-by: Michael S. Tsirkin > > ---------------------------------------------------------------- > Fernando Luis Vazquez Cao (1): > rtl8139: honor RxOverflow flag in can_receive method > > Jan Kiszka (9): > ahci: Fix reset of MSI function > intel-hda: Fix reset of MSI function > ahci: Clean up reset functions > msi: Guard msi_reset with msi_present > msi: Invoke msi/msix_reset from PCI core > msi: Guard msi/msix_write_config with msi_present > msi: Invoke msi/msix_write_config from PCI core > msi: Use msi/msix_present more consistently > msix: Drop unused msix_bar_size This last commit made GCC unhappy. CC libhw64/hw/msix.o /home/anthony/git/qemu/hw/msix.c: In function ‘msix_add_config’: /home/anthony/git/qemu/hw/msix.c:58:14: error: variable ‘new_size’ set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors Regards, Anthony Liguori > > Jason Baron (2): > qdev: release parent properties on dc->init failure > pci_bridge_dev: fix error path in pci_bridge_dev_initfn() > > Michael S. Tsirkin (1): > shpc: unparent device before free > > hw/ide/ahci.c | 25 +++++++++++++++---------- > hw/ide/ahci.h | 2 +- > hw/ide/ich.c | 19 ++++++++----------- > hw/intel-hda.c | 12 ------------ > hw/ioh3420.c | 3 +-- > hw/ivshmem.c | 1 - > hw/msi.c | 11 ++++++++--- > hw/msix.c | 23 +++++++++-------------- > hw/msix.h | 2 -- > hw/pci.c | 8 ++++++++ > hw/pci.h | 2 -- > hw/pci_bridge.c | 10 ++-------- > hw/pci_bridge_dev.c | 8 ++++---- > hw/qdev.c | 1 + > hw/rtl8139.c | 2 +- > hw/shpc.c | 1 + > hw/virtio-pci.c | 3 --- > hw/xio3130_downstream.c | 3 +-- > hw/xio3130_upstream.c | 3 +-- > 19 files changed, 61 insertions(+), 78 deletions(-) > >