qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3] vhost-user: save features if the char dev is closed


From: Jason Wang
Subject: Re: [PATCH v3] vhost-user: save features if the char dev is closed
Date: Wed, 25 Sep 2019 12:14:50 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0

On 2019/9/25 上午12:20, Adrian Moreno wrote:
> That way the state can be correctly restored when the device is opened
> again. This might happen if the backend is restarted.
>
> Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1738768
> Reported-by: Pei Zhang <address@hidden>
> Fixes: 6ab79a20af3a (do not call vhost_net_cleanup() on running net from char 
> user event)
> Cc: address@hidden
> Cc: Michael S. Tsirkin <address@hidden>
>
> Signed-off-by: Adrian Moreno <address@hidden>
> ---
>  net/vhost-user.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index 51921de443..014199d600 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -235,6 +235,10 @@ static void chr_closed_bh(void *opaque)
>  
>      s = DO_UPCAST(NetVhostUserState, nc, ncs[0]);
>  
> +    if (s->vhost_net) {
> +        s->acked_features = vhost_net_get_acked_features(s->vhost_net);
> +    }
> +
>      qmp_set_link(name, false, &err);
>  
>      qemu_chr_fe_set_handlers(&s->chr, NULL, NULL, net_vhost_user_event,


Acked-by: Jason Wang <address@hidden>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]