From: Matan Azrad Date: Mon, 23 Nov 2020 15:56:42 +0000 (+0000) Subject: net/mlx5: reduce log level in hash list registration X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=e98f479df941e09984b54486f3286b0764846a88;p=dpdk.git net/mlx5: reduce log level in hash list registration In mlx5 internal hash list tool, there is a log print when an entry allocation is failed: Can't allocate hash list entry. Some initialization checks triggers hash list registration in order to check some capabilities. Here, the failure in registration doesn't lead to failure in the initialization flow, that is why the log level can be lower. Move the entry allocation failure log to debug level. Signed-off-by: Matan Azrad Reviewed-by: Asaf Penso Acked-by: Viacheslav Ovsiienko --- diff --git a/drivers/net/mlx5/mlx5_utils.c b/drivers/net/mlx5/mlx5_utils.c index 9889437c56..848d108bc6 100644 --- a/drivers/net/mlx5/mlx5_utils.c +++ b/drivers/net/mlx5/mlx5_utils.c @@ -156,7 +156,7 @@ mlx5_hlist_register(struct mlx5_hlist *h, uint64_t key, void *ctx) entry = h->cb_create(h, key, ctx); if (!entry) { rte_errno = ENOMEM; - DRV_LOG(ERR, "Can't allocate hash list %s entry.", h->name); + DRV_LOG(DEBUG, "Can't allocate hash list %s entry.", h->name); goto done; } entry->key = key;