diff options
author | Wen Congyang <wency@cn.fujitsu.com> | 2015-11-11 14:53:29 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-11-25 13:42:38 +0200 |
commit | d39c87d70763f2755d1d7a719817b06f0281fb01 (patch) | |
tree | 98463068a2ec5d1e76ae687c00f260528813f282 /net | |
parent | 463b52f285164ec3dc0649763e06e40cea9e8a1f (diff) |
vhost-user: set link down when the char device is closed
Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/vhost-user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/vhost-user.c b/net/vhost-user.c index 0ebd7df528..5071602e9b 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -188,7 +188,7 @@ static void net_vhost_user_event(void *opaque, int event) qmp_set_link(name, true, &err); break; case CHR_EVENT_CLOSED: - qmp_set_link(name, true, &err); + qmp_set_link(name, false, &err); vhost_user_stop(queues, ncs); break; } |