From patchwork Mon Oct 29 17:20:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 195074 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6F3FE2C008B for ; Tue, 30 Oct 2012 04:17:58 +1100 (EST) Received: from localhost ([::1]:59518 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TSsyK-0003Z5-DA for incoming@patchwork.ozlabs.org; Mon, 29 Oct 2012 13:17:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TSsyC-0003YZ-H3 for qemu-devel@nongnu.org; Mon, 29 Oct 2012 13:17:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TSsyB-0005cF-44 for qemu-devel@nongnu.org; Mon, 29 Oct 2012 13:17:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36034) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TSsyA-0005c6-Rq for qemu-devel@nongnu.org; Mon, 29 Oct 2012 13:17:47 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9THHiaK025564 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 29 Oct 2012 13:17:44 -0400 Received: from redhat.com (vpn1-7-85.ams2.redhat.com [10.36.7.85]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id q9THHc2m004685; Mon, 29 Oct 2012 13:17:39 -0400 Date: Mon, 29 Oct 2012 19:20:00 +0200 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org, Anthony Liguori Message-ID: <20121029172000.GA25643@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: mst@redhat.com, jan.kiszka@siemens.com, jbaron@redhat.com, yamahata@valinux.co.jp, alex.williamson@redhat.com, avi@redhat.com, afaerber@suse.de Subject: [Qemu-devel] [PULL rebased] virtio,pci infrastructure X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit d262cb02861dd33375c08fc798930653b14769e9: Merge branch 'ppc-for-upstream' of git://repo.or.cz/qemu/agraf (2012-10-29 14:56:17 +0100) 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 523a59f596a3e62f5a28eb171adba35e71310040: pci: avoid destroying bridge address space windows in a transaction (2012-10-29 18:39:49 +0200) ---------------------------------------------------------------- virtio,pci infrastructure This includes infrastructure patches that don't do much by themselves but should help vfio and q35 make progress. Also included is rework of virtio-net to use iovec APIs for vector access - helpful to make it more secure and in preparation for a new feature that will allow arbitrary s/g layout for guests. Also included is a pci bridge bugfix by Avi. Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- Alex Williamson (5): pci: Helper function for testing if an INTx route changed pci-assign: Use pci_intx_route_changed() msi: Add msi_get_message() pci-assign: Use msi_get_message() pci: Return PCI_INTX_DISABLED when no bus INTx routing support Avi Kivity (1): pci: avoid destroying bridge address space windows in a transaction Isaku Yamahata (3): pci: pci capability must be in PCI space pci_ids: add intel 82801BA pci-to-pci bridge id pci: introduce pci_swizzle_map_irq_fn() for standardized interrupt pin swizzle Jan Kiszka (1): pci: Add class 0xc05 as 'SMBus' Jason Baron (2): pcie: pass pcie window size to pcie_host_mmcfg_update() pcie: Convert PCIExpressHost to use the QOM. Michael S. Tsirkin (13): qemu: enable PV EOI for qemu 1.3 pci: make each capability DWORD aligned virtio-net: track host/guest header length iov: add iov_cpy virtio-net: avoid sg copy virtio-net: use safe iov operations for rx virtio-net: refactor receive_hdr virtio-net: first s/g is always at start of buf virtio-net: switch tx to safe iov functions virtio-net: simplify rx code virtio-net: minor code simplification virtio-net: test peer header support at init time virtio-net: enable mrg buf header in tap on linux hw/kvm/pci-assign.c | 8 +-- hw/msi.c | 45 +++++++++----- hw/msi.h | 1 + hw/pc_piix.c | 9 ++- hw/pci.c | 42 +++++++++++-- hw/pci.h | 3 + hw/pci_bridge.c | 50 ++++++++------- hw/pci_ids.h | 2 + hw/pci_internals.h | 24 ++++--- hw/pcie_host.c | 35 ++++++++--- hw/pcie_host.h | 11 +++- hw/vhost_net.c | 13 ---- hw/virtio-net.c | 176 +++++++++++++++++++++++++++++----------------------- iov.c | 23 +++++++ iov.h | 9 +++ target-i386/cpu.c | 33 ++++++---- target-i386/cpu.h | 2 + 17 files changed, 310 insertions(+), 176 deletions(-)