From: "Michael S. Tsirkin" <mst@redhat.com>
To: Changpeng Liu <changpeng.liu@intel.com>
Cc: qemu-devel@nongnu.org, marcandre.lureau@redhat.com,
maxime.coquelin@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] contrib/vhost-user-blk: enable protocol feature for vhost-user-blk
Date: Fri, 30 Mar 2018 06:13:21 +0300 [thread overview]
Message-ID: <20180330061213-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1522377977-29623-2-git-send-email-changpeng.liu@intel.com>
On Fri, Mar 30, 2018 at 10:46:17AM +0800, Changpeng Liu wrote:
> This patch reports the protocol feature that is only advertised by
> QEMU if the device implements the config ops.
>
> Signed-off-by: Changpeng Liu <changpeng.liu@intel.com>
OK but pls just send a single patch next time.
People often split out just the headers or some
utility functions with little value, but this
does not help review at all.
No need to repost just for this.
> ---
> contrib/vhost-user-blk/vhost-user-blk.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/contrib/vhost-user-blk/vhost-user-blk.c b/contrib/vhost-user-blk/vhost-user-blk.c
> index 67dac81..f6e0170 100644
> --- a/contrib/vhost-user-blk/vhost-user-blk.c
> +++ b/contrib/vhost-user-blk/vhost-user-blk.c
> @@ -311,6 +311,12 @@ vub_get_features(VuDev *dev)
> 1ull << VHOST_USER_F_PROTOCOL_FEATURES;
> }
>
> +static uint64_t
> +vub_get_protocol_features(VuDev *dev)
> +{
> + return 1ull << VHOST_USER_PROTOCOL_F_CONFIG;
> +}
> +
> static int
> vub_get_config(VuDev *vu_dev, uint8_t *config, uint32_t len)
> {
> @@ -372,6 +378,7 @@ vub_set_config(VuDev *vu_dev, const uint8_t *data,
>
> static const VuDevIface vub_iface = {
> .get_features = vub_get_features,
> + .get_protocol_features = vub_get_protocol_features,
> .queue_set_started = vub_queue_set_started,
> .get_config = vub_get_config,
> .set_config = vub_set_config,
> --
> 1.9.3
prev parent reply other threads:[~2018-03-30 3:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-30 2:46 [Qemu-devel] [PATCH 1/2] contrib/libvhost-user: add the protocol feature used for SET/GET message Changpeng Liu
2018-03-30 2:41 ` Liu, Changpeng
2018-03-30 2:46 ` [Qemu-devel] [PATCH 2/2] contrib/vhost-user-blk: enable protocol feature for vhost-user-blk Changpeng Liu
2018-03-30 3:13 ` 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=20180330061213-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=changpeng.liu@intel.com \
--cc=marcandre.lureau@redhat.com \
--cc=maxime.coquelin@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).