From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PULL 00/14] virtio,vhost,pc: fixes and updates
Date: Sat, 10 Sep 2016 00:07:44 +0300 [thread overview]
Message-ID: <20160910000727-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1473453215-7556-1-git-send-email-mst@redhat.com>
On Fri, Sep 09, 2016 at 11:34:13PM +0300, Michael S. Tsirkin wrote:
> The following changes since commit c2a57aae9a1c3dd7de77daf5478df10379aeeebf:
>
> Merge remote-tracking branch 'remotes/famz/tags/docker-pull-request' into staging (2016-09-09 12:49:41 +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 420d429a1bd65d625f8d3c79bc3dbdd729cc94c6:
>
> tests/acpi: speedup acpi tests (2016-09-09 23:32:42 +0300)
Pls ignore, I saw a test failure.
Will repost.
> ----------------------------------------------------------------
> virtio,vhost,pc: fixes and updates
>
> balloon fixes wrt migration
> virtio-vsock device support
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> ----------------------------------------------------------------
> Greg Kurz (1):
> virtio-pci: error out when both legacy and modern modes are disabled
>
> Jason Wang (1):
> vhost: don't set vring call if no vector
>
> Ladi Prosek (2):
> virtio-balloon: discard virtqueue element on reset
> virtio-balloon: fix stats vq migration
>
> Longpeng(Mike) (2):
> pc: Add 2.8 machine
> target-i386: present virtual L3 cache info for vcpus
>
> Marcel Apfelbaum (2):
> virtio-pci: reduce modern_mem_bar size
> tests/acpi: speedup acpi tests
>
> Michael S. Tsirkin (2):
> virtio-pci: use size from correct structure
> virtio-pci: minor refactoring
>
> Stefan Hajnoczi (3):
> virtio: zero vq->inuse in virtio_reset()
> virtio: add virtqueue_rewind()
> vhost-vsock: add virtio sockets device
>
> Thomas Huth (1):
> virtio: Tell the user what went wrong when event_notifier_init failed
>
> configure | 10 +
> hw/s390x/virtio-ccw.h | 15 ++
> hw/virtio/virtio-pci.h | 23 +++
> include/hw/compat.h | 6 +-
> include/hw/i386/pc.h | 12 ++
> include/hw/pci/pci.h | 1 +
> include/hw/virtio/vhost-backend.h | 5 +
> include/hw/virtio/vhost-vsock.h | 41 ++++
> include/hw/virtio/virtio.h | 1 +
> target-i386/cpu.h | 6 +
> hw/i386/pc_piix.c | 16 +-
> hw/i386/pc_q35.c | 13 +-
> hw/s390x/virtio-ccw.c | 54 +++++
> hw/virtio/vhost-backend.c | 17 ++
> hw/virtio/vhost-vsock.c | 417 ++++++++++++++++++++++++++++++++++++++
> hw/virtio/vhost.c | 14 ++
> hw/virtio/virtio-balloon.c | 14 ++
> hw/virtio/virtio-bus.c | 3 +-
> hw/virtio/virtio-pci.c | 83 +++++++-
> hw/virtio/virtio.c | 23 +++
> target-i386/cpu.c | 49 ++++-
> tests/bios-tables-test.c | 39 ++--
> hw/virtio/Makefile.objs | 2 +
> 23 files changed, 825 insertions(+), 39 deletions(-)
> create mode 100644 include/hw/virtio/vhost-vsock.h
> create mode 100644 hw/virtio/vhost-vsock.c
>
prev parent reply other threads:[~2016-09-09 21:07 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-09 20:34 [Qemu-devel] [PULL 00/14] virtio,vhost,pc: fixes and updates Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 01/14] virtio: Tell the user what went wrong when event_notifier_init failed Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 02/14] virtio-pci: use size from correct structure Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 03/14] pc: Add 2.8 machine Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 04/14] target-i386: present virtual L3 cache info for vcpus Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 05/14] virtio-pci: reduce modern_mem_bar size Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 06/14] virtio: zero vq->inuse in virtio_reset() Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 07/14] virtio-balloon: discard virtqueue element on reset Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 08/14] virtio: add virtqueue_rewind() Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 09/14] virtio-balloon: fix stats vq migration Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 10/14] virtio-pci: error out when both legacy and modern modes are disabled Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 11/14] vhost: don't set vring call if no vector Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 12/14] virtio-pci: minor refactoring Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 13/14] vhost-vsock: add virtio sockets device Michael S. Tsirkin
2016-09-09 20:34 ` [Qemu-devel] [PULL 14/14] tests/acpi: speedup acpi tests Michael S. Tsirkin
2016-09-09 21:07 ` Michael S. Tsirkin [this message]
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=20160910000727-mutt-send-email-mst@kernel.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.