CID 107114 (#1 of 1): Missing break in switch Fixes: 8f972312b8f4 ("vhost: support vhost-user")
Signed-off-by: Huawei Xie <huawei.xie at intel.com> --- lib/librte_vhost/vhost_user/vhost-net-user.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_vhost/vhost_user/vhost-net-user.c b/lib/librte_vhost/vhost_user/vhost-net-user.c index 549f907..8b7a448 100644 --- a/lib/librte_vhost/vhost_user/vhost-net-user.c +++ b/lib/librte_vhost/vhost_user/vhost-net-user.c @@ -389,6 +389,8 @@ vserver_message_handler(int connfd, void *dat, int *remove) case VHOST_USER_SET_LOG_BASE: RTE_LOG(INFO, VHOST_CONFIG, "not implemented.\n"); + break; + case VHOST_USER_SET_LOG_FD: close(msg.fds[0]); RTE_LOG(INFO, VHOST_CONFIG, "not implemented.\n"); -- 1.8.1.4