From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8bmO-0002Yr-OM for qemu-devel@nongnu.org; Fri, 16 Mar 2012 14:21:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S8bm4-0006z2-HM for qemu-devel@nongnu.org; Fri, 16 Mar 2012 14:21:32 -0400 Received: from mail-pz0-f45.google.com ([209.85.210.45]:58750) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S8bm4-0006yo-B3 for qemu-devel@nongnu.org; Fri, 16 Mar 2012 14:21:12 -0400 Received: by dadp14 with SMTP id p14so6642102dad.4 for ; Fri, 16 Mar 2012 11:21:10 -0700 (PDT) Message-ID: <4F638491.2010303@codemonkey.ws> Date: Fri, 16 Mar 2012 13:21:05 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <20120315234957.GA29842@redhat.com> In-Reply-To: <20120315234957.GA29842@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL] pci, virtio, net List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: anthony.perard@citrix.com, jasowang@redhat.com, qemu-devel@nongnu.org, kraxel@redhat.com On 03/15/2012 06:49 PM, Michael S. Tsirkin wrote: > I'm trying a signed pull request now. You can check the signature > on for_anthony if you like, and if your git is recent enough > it will do it for you automatically. > > The following changes since commit ae7d54d489540b49b7c13a7df7ddc220588a2ced: > > target-lm32/microblaze: Drop second CPU{LM32, MB}State typedef (2012-03-14 19:48:37 -0500) > > are available in the git repository at: > > git://github.com/mstsirkin/qemu.git for_anthony I don't see a for_anthony branch in that tree. I do see a pci branch, did you mess up the pull request? Regards, Anthony Liguori > > for you to fetch changes up to ff71f2e8cacefae99179993204172bc65e4303df: > > rtl8139: do the network/host communication only in normal operating mode (2012-03-16 01:04:51 +0200) > > ---------------------------------------------------------------- > pci, virtio, net > > This includes a new standard pci bridge device, > as well as a collection of misc fixes for > pci, virito and rtl8139. > > Signed-off-by: Michael S. Tsirkin > > ---------------------------------------------------------------- > Anthony PERARD (3): > pci: Do not check if a bus exist in pci_parse_devaddr. > pci_regs: Fix value of PCI_EXP_TYPE_RC_EC. > pci_regs: Add PCI_EXP_TYPE_PCIE_BRIDGE > > Jason Wang (6): > rtl8139: limit transmission buffer size in c+ mode > rtl8139: remove unused marco > rtl8139: support byte read to TxStatus registers > net: move compute_mcast_idx() to net.h > rtl8139: correctly check the opmode > rtl8139: do the network/host communication only in normal operating mode > > Michael S. Tsirkin (12): > pci_bridge: fix status: do not override cap bit > pci: don't export an internal function > pci: make another unused extern function static > pci_bridge: user-friendly default bus name > shpc: standard hot plug controller > slotid: add slot id capability > pci: add standard bridge device > pci: set memory type for memory behind the bridge > pcie: drop functionality moved to core > pci: fix bridge IO/BASE > pci_bridge: upper 32 bit are long registers > virtio-net: add DATA_VALID flag > > Makefile.objs | 4 +- > hw/eepro100.c | 25 -- > hw/ne2000.c | 24 -- > hw/opencores_eth.c | 25 -- > hw/pci.c | 28 +- > hw/pci.h | 11 +- > hw/pci_bridge.c | 22 ++- > hw/pci_bridge_dev.c | 174 +++++++++++++ > hw/pci_regs.h | 3 +- > hw/pcie_port.c | 12 +- > hw/rtl8139.c | 88 ++++--- > hw/shpc.c | 681 +++++++++++++++++++++++++++++++++++++++++++++++++++ > hw/shpc.h | 48 ++++ > hw/slotid_cap.c | 44 ++++ > hw/slotid_cap.h | 11 + > hw/virtio-net.h | 1 + > net.c | 23 ++ > net.h | 3 + > qemu-common.h | 1 + > 19 files changed, 1078 insertions(+), 150 deletions(-) > create mode 100644 hw/pci_bridge_dev.c > create mode 100644 hw/shpc.c > create mode 100644 hw/shpc.h > create mode 100644 hw/slotid_cap.c > create mode 100644 hw/slotid_cap.h > >