qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/13] vhost, virtio, pci, pxe
@ 2016-02-19  8:00 Michael S. Tsirkin
  2016-02-19  8:00 ` [Qemu-devel] [PULL 01/13] virtio-net: use the backend cross-endian capabilities Michael S. Tsirkin
                   ` (13 more replies)
  0 siblings, 14 replies; 23+ messages in thread
From: Michael S. Tsirkin @ 2016-02-19  8:00 UTC (permalink / raw)
  To: qemu-devel; +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 <mst@redhat.com>

----------------------------------------------------------------
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

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2016-03-23 12:45 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-19  8:00 [Qemu-devel] [PULL 00/13] vhost, virtio, pci, pxe Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 01/13] virtio-net: use the backend cross-endian capabilities Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 02/13] vhost-net: revert support of cross-endian vnet headers Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 03/13] virtio: move cross-endian helper to vhost Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 04/13] vhost: move virtio 1.0 check to cross-endian helper Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 05/13] vhost: simplify vhost_needs_vring_endian() Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 06/13] virtio: optimize virtio_access_is_big_endian() for little-endian targets Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 07/13] msix: fix msix_vector_masked Michael S. Tsirkin
2016-02-19 12:18   ` Stefano Stabellini
2016-02-19 12:20     ` Peter Maydell
2016-02-19 12:29       ` Stefano Stabellini
2016-02-19  8:00 ` [Qemu-devel] [PULL 08/13] tests: add pxe e1000 and virtio-pci tests Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 09/13] dec: convert to realize() Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 10/13] change type of pci_bridge_initfn() to void Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 11/13] rules: filter out irrelevant files Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 12/13] vhost-user interrupt management fixes Michael S. Tsirkin
2016-02-19  8:00 ` [Qemu-devel] [PULL 13/13] tests/vhost-user-bridge: add scattering of incoming packets Michael S. Tsirkin
2016-02-19 12:09 ` [Qemu-devel] [PULL 00/13] vhost, virtio, pci, pxe Peter Maydell
2016-02-19 12:41   ` Samuel Thibault
2016-02-19 14:17   ` Peter Maydell
2016-03-23  0:05   ` Samuel Thibault
2016-03-23 12:43     ` Peter Maydell
2016-03-23 12:45       ` Samuel Thibault

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).