From: Yuanhan Liu <yuanhan.liu@linux.intel.com>
To: qemu-devel@nongnu.org
Cc: Yuanhan Liu <yuanhan.liu@linux.intel.com>, mst@redhat.com
Subject: [Qemu-devel] [PATCH v4 3/5] vhost: introduce vhost_set/get_protocol_features callbacks
Date: Wed, 11 Nov 2015 21:24:39 +0800 [thread overview]
Message-ID: <1447248281-15227-4-git-send-email-yuanhan.liu@linux.intel.com> (raw)
In-Reply-To: <1447248281-15227-1-git-send-email-yuanhan.liu@linux.intel.com>
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
---
hw/virtio/vhost-user.c | 7 +++++++
include/hw/virtio/vhost-backend.h | 6 ++++++
2 files changed, 13 insertions(+)
diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c
index 4766f98..2d8bdbd 100644
--- a/hw/virtio/vhost-user.c
+++ b/hw/virtio/vhost-user.c
@@ -471,6 +471,11 @@ static int vhost_user_get_features(struct vhost_dev *dev, uint64_t *features)
return vhost_user_get_u64(dev, VHOST_USER_GET_FEATURES, features);
}
+static int vhost_user_get_protocol_features(struct vhost_dev *dev, uint64_t *features)
+{
+ return vhost_user_get_u64(dev, VHOST_USER_GET_PROTOCOL_FEATURES, features);
+}
+
static int vhost_user_set_owner(struct vhost_dev *dev)
{
VhostUserMsg msg = {
@@ -616,6 +621,8 @@ const VhostOps user_ops = {
.vhost_set_vring_call = vhost_user_set_vring_call,
.vhost_set_features = vhost_user_set_features,
.vhost_get_features = vhost_user_get_features,
+ .vhost_set_protocol_features = vhost_user_set_protocol_features,
+ .vhost_get_protocol_features = vhost_user_get_protocol_features,
.vhost_set_owner = vhost_user_set_owner,
.vhost_reset_device = vhost_user_reset_device,
.vhost_get_vq_index = vhost_user_get_vq_index,
diff --git a/include/hw/virtio/vhost-backend.h b/include/hw/virtio/vhost-backend.h
index c59cc81..7e705ce 100644
--- a/include/hw/virtio/vhost-backend.h
+++ b/include/hw/virtio/vhost-backend.h
@@ -62,6 +62,10 @@ typedef int (*vhost_set_features_op)(struct vhost_dev *dev,
uint64_t features);
typedef int (*vhost_get_features_op)(struct vhost_dev *dev,
uint64_t *features);
+typedef int (*vhost_set_protocol_features_op)(struct vhost_dev *dev,
+ uint64_t features);
+typedef int (*vhost_get_protocol_features_op)(struct vhost_dev *dev,
+ uint64_t *features);
typedef int (*vhost_set_owner_op)(struct vhost_dev *dev);
typedef int (*vhost_reset_device_op)(struct vhost_dev *dev);
typedef int (*vhost_get_vq_index_op)(struct vhost_dev *dev, int idx);
@@ -91,6 +95,8 @@ typedef struct VhostOps {
vhost_set_vring_call_op vhost_set_vring_call;
vhost_set_features_op vhost_set_features;
vhost_get_features_op vhost_get_features;
+ vhost_set_protocol_features_op vhost_set_protocol_features;
+ vhost_get_protocol_features_op vhost_get_protocol_features;
vhost_set_owner_op vhost_set_owner;
vhost_reset_device_op vhost_reset_device;
vhost_get_vq_index_op vhost_get_vq_index;
--
1.9.0
next prev parent reply other threads:[~2015-11-11 13:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-11 13:24 [Qemu-devel] [PATCH v4 0/5] handle vhost reset/start/stop correctly Yuanhan Liu
2015-11-11 13:24 ` [Qemu-devel] [PATCH v4 1/5] vhost: rename RESET_DEVICE backto RESET_OWNER Yuanhan Liu
2015-11-11 13:24 ` [Qemu-devel] [PATCH v4 2/5] vhost: reset vhost net when virtio_net_reset happens Yuanhan Liu
2015-11-12 13:23 ` Michael S. Tsirkin
2015-11-11 13:24 ` Yuanhan Liu [this message]
2015-11-11 13:24 ` [Qemu-devel] [PATCH v4 4/5] vhost: send SET_PROTOCOL_FEATURES at start Yuanhan Liu
2015-11-11 13:24 ` [Qemu-devel] [PATCH v4 5/5] vhost: send SET_VRING_ENABLE at start/stop Yuanhan Liu
2015-11-12 13:33 ` [Qemu-devel] [PATCH v4 0/5] handle vhost reset/start/stop correctly Michael S. Tsirkin
2015-11-12 14:08 ` Yuanhan Liu
2015-11-12 14:44 ` Michael S. Tsirkin
2015-11-13 2:03 ` Yuanhan Liu
2015-11-13 10:24 ` Michael S. Tsirkin
2015-11-13 15:42 ` Yuanhan Liu
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=1447248281-15227-4-git-send-email-yuanhan.liu@linux.intel.com \
--to=yuanhan.liu@linux.intel.com \
--cc=mst@redhat.com \
--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).