vhost: change log levels in client mode

Inability to connect to socket is a normal situation
in client mode because, in common case, server isn't
started yet. RTE_LOG_WARNING should be suitable for
the case of some unusual errors.
Message about reconnection is not an error at all.

Fixes: e623e0c6d8a5 ("vhost: add reconnect ability")
Cc: stable@dpdk.org

Signed-off-by: Ilya Maximets <i.maximets@samsung.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
This commit is contained in:
Ilya Maximets 2017-03-02 12:39:34 +03:00 committed by Yuanhan Liu
parent 76a1df4d0d
commit 29b851e8de

View File

@ -448,7 +448,7 @@ vhost_user_create_client(struct vhost_user_socket *vsocket)
return 0;
}
RTE_LOG(ERR, VHOST_CONFIG,
RTE_LOG(WARNING, VHOST_CONFIG,
"failed to connect to %s: %s\n",
path, strerror(errno));
@ -457,7 +457,7 @@ vhost_user_create_client(struct vhost_user_socket *vsocket)
return -1;
}
RTE_LOG(ERR, VHOST_CONFIG, "%s: reconnecting...\n", path);
RTE_LOG(INFO, VHOST_CONFIG, "%s: reconnecting...\n", path);
reconn = malloc(sizeof(*reconn));
if (reconn == NULL) {
RTE_LOG(ERR, VHOST_CONFIG,