From: Marc-André Lureau <marcandre.lur...@redhat.com> On init, vhost-user does qemu_chr_fe_claim_no_fail(). Do the opposite on cleanup to allow removing or reusing the chardev.
Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> --- net/vhost-user.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/vhost-user.c b/net/vhost-user.c index 1b9e73a..29fe097 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -142,6 +142,8 @@ static void vhost_user_cleanup(NetClientState *nc) } qemu_purge_queued_packets(nc); + + qemu_chr_fe_release(s->chr); } static bool vhost_user_has_vnet_hdr(NetClientState *nc) -- 2.5.5