From: "Michael S. Tsirkin" <mst@redhat.com>
To: huangy81@chinatelecom.cn
Cc: qemu-devel <qemu-devel@nongnu.org>,
Jason Wang <jasowang@redhat.com>,
tugy@chinatelecom.cn, baiyw2@chinatelecom.cn,
dengpc12@chinatelecom.cn, liuym16@chinatelecom.cn,
yangchg@chinatelecom.cn, yuanmh12@chinatelecom.cn,
zhoupx@chinatelecom.cn, lic121@chinatelecom.cn,
Stefano Garzarella <sgarzare@redhat.com>,
Raphael Norwitz <raphael.norwitz@nutanix.com>
Subject: Re: [PATCH 1/2] vhost-user: Refactor vhost acked features saving
Date: Fri, 7 Oct 2022 10:01:21 -0400 [thread overview]
Message-ID: <20221007095800-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20220926063641.25038-2-huangy81@chinatelecom.cn>
On Mon, Sep 26, 2022 at 02:36:40PM +0800, huangy81@chinatelecom.cn wrote:
> From: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
>
> Abstract vhost acked features saving into
> vhost_user_save_acked_features, export it as util function.
>
> Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
> Signed-off-by: Guoyi Tu <tugy@chinatelecom.cn>
> ---
> include/net/vhost-user.h | 2 ++
> net/vhost-user.c | 35 +++++++++++++++++++----------------
> 2 files changed, 21 insertions(+), 16 deletions(-)
>
> diff --git a/include/net/vhost-user.h b/include/net/vhost-user.h
> index 5bcd8a6285..00d46613d3 100644
> --- a/include/net/vhost-user.h
> +++ b/include/net/vhost-user.h
> @@ -14,5 +14,7 @@
> struct vhost_net;
> struct vhost_net *vhost_user_get_vhost_net(NetClientState *nc);
> uint64_t vhost_user_get_acked_features(NetClientState *nc);
> +void vhost_user_save_acked_features(NetClientState *nc,
> + bool cleanup);
>
> #endif /* VHOST_USER_H */
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index b1a0247b59..c512cc9727 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -45,24 +45,31 @@ uint64_t vhost_user_get_acked_features(NetClientState *nc)
> return s->acked_features;
> }
>
> -static void vhost_user_stop(int queues, NetClientState *ncs[])
> +void vhost_user_save_acked_features(NetClientState *nc, bool cleanup)
> {
> NetVhostUserState *s;
> +
> + s = DO_UPCAST(NetVhostUserState, nc, nc);
> + if (s->vhost_net) {
> + uint64_t features = vhost_net_get_acked_features(s->vhost_net);
> + if (features) {
> + s->acked_features = features;
> + }
Note it does not set acked_features if features are 0.
Which might be the case for legacy ...
I will need to analyze this more to figure out what's
the correct behaviour....
Stefano? Raphael?
> +
> + if (cleanup) {
> + vhost_net_cleanup(s->vhost_net);
> + }
> + }
> +}
> +
> +static void vhost_user_stop(int queues, NetClientState *ncs[])
> +{
> int i;
>
> for (i = 0; i < queues; i++) {
> assert(ncs[i]->info->type == NET_CLIENT_DRIVER_VHOST_USER);
>
> - s = DO_UPCAST(NetVhostUserState, nc, ncs[i]);
> -
> - if (s->vhost_net) {
> - /* save acked features */
> - uint64_t features = vhost_net_get_acked_features(s->vhost_net);
> - if (features) {
> - s->acked_features = features;
> - }
> - vhost_net_cleanup(s->vhost_net);
> - }
> + vhost_user_save_acked_features(ncs[i], true);
> }
> }
>
> @@ -251,11 +258,7 @@ static void chr_closed_bh(void *opaque)
> s = DO_UPCAST(NetVhostUserState, nc, ncs[0]);
>
> for (i = queues -1; i >= 0; i--) {
> - s = DO_UPCAST(NetVhostUserState, nc, ncs[i]);
> -
> - if (s->vhost_net) {
> - s->acked_features = vhost_net_get_acked_features(s->vhost_net);
> - }
> + vhost_user_save_acked_features(ncs[i], false);
> }
>
> qmp_set_link(name, false, &err);
> --
> 2.27.0
next prev parent reply other threads:[~2022-10-07 15:43 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-26 6:36 [PATCH 0/2] Fix the virito features negotiation flaw huangy81
2022-09-26 6:36 ` [PATCH 1/2] vhost-user: Refactor vhost acked features saving huangy81
2022-10-07 14:01 ` Michael S. Tsirkin [this message]
2022-10-07 14:57 ` Stefano Garzarella
2022-10-07 16:58 ` Hyman Huang
2022-09-26 6:36 ` [PATCH 2/2] vhost-net: Fix the virito features negotiation flaw huangy81
2022-10-05 8:17 ` [PATCH 0/2] " Hyman Huang
2022-10-26 15:00 ` Michael S. Tsirkin
2022-10-26 16:31 ` Hyman Huang
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=20221007095800-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=baiyw2@chinatelecom.cn \
--cc=dengpc12@chinatelecom.cn \
--cc=huangy81@chinatelecom.cn \
--cc=jasowang@redhat.com \
--cc=lic121@chinatelecom.cn \
--cc=liuym16@chinatelecom.cn \
--cc=qemu-devel@nongnu.org \
--cc=raphael.norwitz@nutanix.com \
--cc=sgarzare@redhat.com \
--cc=tugy@chinatelecom.cn \
--cc=yangchg@chinatelecom.cn \
--cc=yuanmh12@chinatelecom.cn \
--cc=zhoupx@chinatelecom.cn \
/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.