From: Tiwei Bie <tiwei.bie@intel.com>
To: mst@redhat.com, jasowang@redhat.com, qemu-devel@nongnu.org,
virtio-dev@lists.oasis-open.org
Cc: tiwei.bie@intel.com
Subject: [virtio-dev] [PATCH v2 0/5] Support host notifiers in vhost-user
Date: Fri, 25 May 2018 19:04:36 +0800 [thread overview]
Message-ID: <20180525110441.7185-1-tiwei.bie@intel.com> (raw)
More details about this patch set can be found from:
http://lists.gnu.org/archive/html/qemu-devel/2018-04/msg01779.html
http://lists.gnu.org/archive/html/qemu-devel/2018-04/msg04626.html
v1 -> v2:
- Drop the VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD patch; (MST)
- In PATCH 2/5, for net/vhost-user, only save VhostUserState
in queue index 0, i.e. where `chr` is saved;
- In PATCH 4/5, check VHOST_USER_PROTOCOL_F_HOST_NOTIFIER
before sending msg (including fd) to master; (MST)
Tiwei Bie (5):
vhost: allow backends to filter memory sections
vhost-user: introduce shared vhost-user state
vhost-user: support registering external host notifiers
libvhost-user: support host notifier
vhost-user-bridge: support host notifier
backends/cryptodev-vhost-user.c | 20 +++-
contrib/libvhost-user/libvhost-user.c | 80 +++++++++++--
contrib/libvhost-user/libvhost-user.h | 31 +++++
docs/interop/vhost-user.txt | 33 ++++++
hw/block/vhost-user-blk.c | 22 +++-
hw/scsi/vhost-user-scsi.c | 20 +++-
hw/virtio/Makefile.objs | 2 +-
hw/virtio/vhost-stub.c | 10 ++
hw/virtio/vhost-user.c | 165 ++++++++++++++++++++++++--
hw/virtio/vhost.c | 9 +-
include/hw/virtio/vhost-backend.h | 4 +
include/hw/virtio/vhost-user-blk.h | 2 +
include/hw/virtio/vhost-user-scsi.h | 2 +
include/hw/virtio/vhost-user.h | 28 +++++
net/vhost-user.c | 57 ++++++---
tests/vhost-user-bridge.c | 98 ++++++++++++++-
16 files changed, 542 insertions(+), 41 deletions(-)
create mode 100644 include/hw/virtio/vhost-user.h
--
2.17.0
---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org
WARNING: multiple messages have this Message-ID (diff)
From: Tiwei Bie <tiwei.bie@intel.com>
To: mst@redhat.com, jasowang@redhat.com, qemu-devel@nongnu.org,
virtio-dev@lists.oasis-open.org
Cc: tiwei.bie@intel.com
Subject: [Qemu-devel] [PATCH v2 0/5] Support host notifiers in vhost-user
Date: Fri, 25 May 2018 19:04:36 +0800 [thread overview]
Message-ID: <20180525110441.7185-1-tiwei.bie@intel.com> (raw)
More details about this patch set can be found from:
http://lists.gnu.org/archive/html/qemu-devel/2018-04/msg01779.html
http://lists.gnu.org/archive/html/qemu-devel/2018-04/msg04626.html
v1 -> v2:
- Drop the VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD patch; (MST)
- In PATCH 2/5, for net/vhost-user, only save VhostUserState
in queue index 0, i.e. where `chr` is saved;
- In PATCH 4/5, check VHOST_USER_PROTOCOL_F_HOST_NOTIFIER
before sending msg (including fd) to master; (MST)
Tiwei Bie (5):
vhost: allow backends to filter memory sections
vhost-user: introduce shared vhost-user state
vhost-user: support registering external host notifiers
libvhost-user: support host notifier
vhost-user-bridge: support host notifier
backends/cryptodev-vhost-user.c | 20 +++-
contrib/libvhost-user/libvhost-user.c | 80 +++++++++++--
contrib/libvhost-user/libvhost-user.h | 31 +++++
docs/interop/vhost-user.txt | 33 ++++++
hw/block/vhost-user-blk.c | 22 +++-
hw/scsi/vhost-user-scsi.c | 20 +++-
hw/virtio/Makefile.objs | 2 +-
hw/virtio/vhost-stub.c | 10 ++
hw/virtio/vhost-user.c | 165 ++++++++++++++++++++++++--
hw/virtio/vhost.c | 9 +-
include/hw/virtio/vhost-backend.h | 4 +
include/hw/virtio/vhost-user-blk.h | 2 +
include/hw/virtio/vhost-user-scsi.h | 2 +
include/hw/virtio/vhost-user.h | 28 +++++
net/vhost-user.c | 57 ++++++---
tests/vhost-user-bridge.c | 98 ++++++++++++++-
16 files changed, 542 insertions(+), 41 deletions(-)
create mode 100644 include/hw/virtio/vhost-user.h
--
2.17.0
next reply other threads:[~2018-05-25 11:04 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-25 11:04 Tiwei Bie [this message]
2018-05-25 11:04 ` [Qemu-devel] [PATCH v2 0/5] Support host notifiers in vhost-user Tiwei Bie
2018-05-25 11:04 ` [virtio-dev] [PATCH v2 1/5] vhost: allow backends to filter memory sections Tiwei Bie
2018-05-25 11:04 ` [Qemu-devel] " Tiwei Bie
2018-05-25 11:04 ` [virtio-dev] [PATCH v2 2/5] vhost-user: introduce shared vhost-user state Tiwei Bie
2018-05-25 11:04 ` [Qemu-devel] " Tiwei Bie
2018-05-25 11:04 ` [virtio-dev] [PATCH v2 3/5] vhost-user: support registering external host notifiers Tiwei Bie
2018-05-25 11:04 ` [Qemu-devel] " Tiwei Bie
2018-05-25 11:26 ` [virtio-dev] " Jason Wang
2018-05-25 11:26 ` [Qemu-devel] " Jason Wang
2018-05-25 11:35 ` [virtio-dev] " Tiwei Bie
2018-05-25 11:35 ` [Qemu-devel] " Tiwei Bie
2018-05-25 11:04 ` [virtio-dev] [PATCH v2 4/5] libvhost-user: support host notifier Tiwei Bie
2018-05-25 11:04 ` [Qemu-devel] " Tiwei Bie
2018-05-25 11:04 ` [virtio-dev] [PATCH v2 5/5] vhost-user-bridge: " Tiwei Bie
2018-05-25 11:04 ` [Qemu-devel] " Tiwei Bie
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=20180525110441.7185-1-tiwei.bie@intel.com \
--to=tiwei.bie@intel.com \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=virtio-dev@lists.oasis-open.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.