diff options
| author | Marc-André Lureau | 2016-07-26 23:15:13 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2016-07-28 23:33:48 +0200 |
| commit | 1a5b68cee8a2b165ffd61b2e0641a4da3990f242 (patch) | |
| tree | 8ffd2cf6d7e4dda9b09310953c2ee6f8fbc1d10d | |
| parent | vhost-user: keep vhost_net after a disconnection (diff) | |
| download | qemu-1a5b68cee8a2b165ffd61b2e0641a4da3990f242.tar.gz qemu-1a5b68cee8a2b165ffd61b2e0641a4da3990f242.tar.xz qemu-1a5b68cee8a2b165ffd61b2e0641a4da3990f242.zip | |
vhost-user: add get_vhost_net() assertions
Add a few assertions to be more explicit about the runtime behaviour
after the previous patch: get_vhost_net() is non-null after
net_vhost_user_init().
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
| -rw-r--r-- | hw/net/vhost_net.c | 1 | ||||
| -rw-r--r-- | net/vhost-user.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c index 7b76591409..4e6495e069 100644 --- a/hw/net/vhost_net.c +++ b/hw/net/vhost_net.c @@ -417,6 +417,7 @@ VHostNetState *get_vhost_net(NetClientState *nc) break; case NET_CLIENT_DRIVER_VHOST_USER: vhost_net = vhost_user_get_vhost_net(nc); + assert(vhost_net); break; default: break; diff --git a/net/vhost-user.c b/net/vhost-user.c index d2a984d767..39987a3c8a 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -259,6 +259,8 @@ static int net_vhost_user_init(NetClientState *peer, const char *device, qemu_chr_add_handlers(chr, NULL, NULL, net_vhost_user_event, nc[0].name); + assert(s->vhost_net); + return 0; } |
