From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54226) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWfz3-0006yZ-PH for qemu-devel@nongnu.org; Fri, 19 Feb 2016 03:00:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWfyy-0001rP-NT for qemu-devel@nongnu.org; Fri, 19 Feb 2016 03:00:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59793) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWfyy-0001rH-Ar for qemu-devel@nongnu.org; Fri, 19 Feb 2016 03:00:08 -0500 Date: Fri, 19 Feb 2016 10:00:05 +0200 From: "Michael S. Tsirkin" Message-ID: <1455868726-26350-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PULL 00/13] vhost, virtio, pci, pxe List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell The following changes since commit a5af12871fd4601c44f08d9e49131e9ca13ef102: Merge remote-tracking branch 'remotes/sstabellini/tags/xen-2016-02-12' into staging (2016-02-12 17:36:12 +0000) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream for you to fetch changes up to a28c393cc261afeb4863b05d7c33c2a5fc55ef38: tests/vhost-user-bridge: add scattering of incoming packets (2016-02-18 17:42:05 +0200) ---------------------------------------------------------------- vhost, virtio, pci, pxe Fixes all over the place. New tests for pxe. Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- Cao jin (2): dec: convert to realize() change type of pci_bridge_initfn() to void Greg Kurz (6): virtio-net: use the backend cross-endian capabilities vhost-net: revert support of cross-endian vnet headers virtio: move cross-endian helper to vhost vhost: move virtio 1.0 check to cross-endian helper vhost: simplify vhost_needs_vring_endian() virtio: optimize virtio_access_is_big_endian() for little-endian targets Michael S. Tsirkin (2): msix: fix msix_vector_masked rules: filter out irrelevant files Victor Kaplansky (3): tests: add pxe e1000 and virtio-pci tests vhost-user interrupt management fixes tests/vhost-user-bridge: add scattering of incoming packets include/hw/pci/pci_bridge.h | 2 +- include/hw/virtio/virtio-access.h | 28 +-------- include/hw/virtio/virtio-net.h | 1 + include/hw/virtio/virtio.h | 1 + tests/boot-sector.h | 26 ++++++++ hw/net/vhost_net.c | 52 +++++----------- hw/net/virtio-net.c | 68 ++++++++++++++++++++- hw/pci-bridge/dec.c | 6 +- hw/pci-bridge/i82801b11.c | 5 +- hw/pci-bridge/ioh3420.c | 6 +- hw/pci-bridge/pci_bridge_dev.c | 8 +-- hw/pci-bridge/xio3130_downstream.c | 6 +- hw/pci-bridge/xio3130_upstream.c | 6 +- hw/pci-host/apb.c | 7 +-- hw/pci/msix.c | 4 +- hw/pci/pci_bridge.c | 3 +- hw/virtio/vhost.c | 36 +++++++++-- hw/virtio/virtio-pci.c | 14 +++-- hw/virtio/virtio.c | 1 + tests/bios-tables-test.c | 72 ++-------------------- tests/boot-sector.c | 119 +++++++++++++++++++++++++++++++++++++ tests/pxe-test.c | 69 +++++++++++++++++++++ tests/vhost-user-bridge.c | 92 ++++++++++++++++++---------- rules.mak | 2 +- tests/Makefile | 5 +- 25 files changed, 429 insertions(+), 210 deletions(-) create mode 100644 tests/boot-sector.h create mode 100644 tests/boot-sector.c create mode 100644 tests/pxe-test.c