Remove debug log inside of mlx5_list_init to avoid flooding debug
messages when creating hash list with large actual size.
Fixes: 9c373c524bae ("common/mlx5: move list utility from net driver")
Cc: stable@dpdk.org
Signed-off-by: Sean Zhang <xiazhang@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
l_inconst->cache[MLX5_LIST_GLOBAL] = gc;
LIST_INIT(&l_inconst->cache[MLX5_LIST_GLOBAL]->h);
}
- DRV_LOG(DEBUG, "mlx5 list %s initialized.", l_const->name);
return 0;
}
mlx5_free(list);
return NULL;
}
+ DRV_LOG(DEBUG, "mlx5 list %s was created.", name);
return list;
}