qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL 00/22] virtio,pc features, fixes
Date: Thu, 24 Sep 2015 16:20:03 +0300	[thread overview]
Message-ID: <1443100738-14970-1-git-send-email-mst@redhat.com> (raw)

The following changes since commit fefa4b128de06cec6d513f00ee61e8208aed4a87:

  Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20150923.0' into staging (2015-09-23 21:39:46 +0100)

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 27fa11c68072398beb31af8828e25da5c2295814:

  virtio-net: correctly drop truncated packets (2015-09-24 16:16:24 +0300)

----------------------------------------------------------------
virtio,pc features, fixes

New features:
    vhost-user multiqueue support
    virtio-ccw virtio 1 support
    pci bridge support in iommu

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Changchun Ouyang (2):
      vhost-user: add multiple queue support
      vhost-user: add a new message to disable/enable a specific virt queue.

Cornelia Huck (4):
      virtio: ring sizes vs. reset
      virtio-ccw: support ring size changes
      virtio-ccw: feature bits > 31 handling
      virtio-ccw: enable virtio-1

Eduardo Habkost (3):
      q35: Move options common to all classes to pc_q35_machine_options()
      q35: Move options common to all classes to pc_i440fx_machine_options()
      pc: Introduce pc-*-2.5 machine classes

Jason Wang (4):
      virtio-net: unbreak self announcement and guest offloads after migration
      virtio: introduce virtqueue_unmap_sg()
      virtio: introduce virtqueue_discard()
      virtio-net: correctly drop truncated packets

Knut Omang (1):
      intel_iommu: Add support for translation for devices behind bridges

Michael S. Tsirkin (1):
      vhost-user: add protocol feature negotiation

Paolo Bonzini (2):
      MAINTAINERS: add more devices to the PC section
      MAINTAINERS: add more devices to the PCI section

Pierre Morel (1):
      virtio: right size for virtio_queue_get_avail_size

Yuanhan Liu (4):
      vhost-user: use VHOST_USER_XXX macro for switch statement
      vhost: rename VHOST_RESET_OWNER to VHOST_RESET_DEVICE
      vhost-user: add VHOST_USER_GET_QUEUE_NUM message
      vhost: introduce vhost_backend_get_vq_index method

 qapi-schema.json                  |   6 +-
 hw/s390x/virtio-ccw.h             |   6 +-
 include/hw/compat.h               |   3 +
 include/hw/i386/intel_iommu.h     |  16 ++++-
 include/hw/i386/pc.h              |   4 ++
 include/hw/virtio/vhost-backend.h |   4 ++
 include/hw/virtio/vhost.h         |   2 +
 include/hw/virtio/virtio.h        |   2 +
 include/net/vhost_net.h           |   3 +
 linux-headers/linux/vhost.h       |   2 +-
 hw/i386/intel_iommu.c             |  90 +++++++++++++++++++-----
 hw/i386/pc_piix.c                 |  22 ++++--
 hw/i386/pc_q35.c                  |  22 ++++--
 hw/net/vhost_net.c                |  44 ++++++++++--
 hw/net/virtio-net.c               |  56 ++++++++-------
 hw/pci-host/q35.c                 |  25 +------
 hw/s390x/s390-virtio-ccw.c        |  20 ++++++
 hw/s390x/virtio-ccw.c             |  64 ++++++++++++-----
 hw/virtio/vhost-backend.c         |  10 ++-
 hw/virtio/vhost-user.c            | 139 +++++++++++++++++++++++++++++++------
 hw/virtio/vhost.c                 |  20 +++---
 hw/virtio/virtio.c                |  88 ++++++++++++++++++++++--
 net/vhost-user.c                  | 141 +++++++++++++++++++++++++-------------
 tests/vhost-user-test.c           |   2 +-
 MAINTAINERS                       |  21 ++++++
 docs/specs/vhost-user.txt         |  77 ++++++++++++++++++++-
 qemu-options.hx                   |   5 +-
 27 files changed, 701 insertions(+), 193 deletions(-)

             reply	other threads:[~2015-09-24 13:26 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-24 13:20 Michael S. Tsirkin [this message]
2015-09-24 13:20 ` [Qemu-devel] [PULL 01/22] virtio: right size for virtio_queue_get_avail_size Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 02/22] virtio-net: unbreak self announcement and guest offloads after migration Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 03/22] q35: Move options common to all classes to pc_q35_machine_options() Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 04/22] q35: Move options common to all classes to pc_i440fx_machine_options() Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 05/22] pc: Introduce pc-*-2.5 machine classes Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 06/22] virtio: ring sizes vs. reset Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 07/22] virtio-ccw: support ring size changes Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 08/22] virtio-ccw: feature bits > 31 handling Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 09/22] virtio-ccw: enable virtio-1 Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 10/22] vhost-user: use VHOST_USER_XXX macro for switch statement Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 11/22] vhost-user: add protocol feature negotiation Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 12/22] vhost: rename VHOST_RESET_OWNER to VHOST_RESET_DEVICE Michael S. Tsirkin
2015-10-02 16:18   ` Paolo Bonzini
2015-10-03 16:33     ` Michael S. Tsirkin
2015-10-08  5:24       ` Yuanhan Liu
2015-11-05 11:42       ` Peter Maydell
2015-11-06  1:34         ` Yuanhan Liu
2015-11-06 10:01           ` Peter Maydell
2015-11-09  3:56             ` Yuanhan Liu
2015-09-24 13:20 ` [Qemu-devel] [PULL 13/22] vhost-user: add VHOST_USER_GET_QUEUE_NUM message Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 14/22] vhost: introduce vhost_backend_get_vq_index method Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 15/22] vhost-user: add multiple queue support Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 16/22] vhost-user: add a new message to disable/enable a specific virt queue Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 17/22] intel_iommu: Add support for translation for devices behind bridges Michael S. Tsirkin
2015-09-25  6:43   ` Michael S. Tsirkin
2015-09-25  7:33     ` Knut Omang
2015-09-24 13:20 ` [Qemu-devel] [PULL 18/22] MAINTAINERS: add more devices to the PC section Michael S. Tsirkin
2015-09-24 13:20 ` [Qemu-devel] [PULL 19/22] MAINTAINERS: add more devices to the PCI section Michael S. Tsirkin
2015-09-24 13:21 ` [Qemu-devel] [PULL 20/22] virtio: introduce virtqueue_unmap_sg() Michael S. Tsirkin
2015-09-24 18:58   ` Michael S. Tsirkin
2015-09-25  3:26     ` Jason Wang
2015-09-24 13:21 ` [Qemu-devel] [PULL 21/22] virtio: introduce virtqueue_discard() Michael S. Tsirkin
2015-09-24 13:21 ` [Qemu-devel] [PULL 22/22] virtio-net: correctly drop truncated packets Michael S. Tsirkin
2015-09-24 13:30 ` [Qemu-devel] [PULL 00/22] virtio,pc features, fixes Michael S. Tsirkin
2015-09-24 18:36 ` Peter Maydell
2015-09-24 18:57   ` Michael S. Tsirkin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1443100738-14970-1-git-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).