From: Zerun Fu <zerun...@corigine.com> Now when the app starts it will enable some features, but sometimes the firmware doesn't support them. Then it will print some error messages.
Actually this doesn't affect the using of the app, so change the level of log to avoid exposing the information to users. Signed-off-by: Zerun Fu <zerun...@corigine.com> Reviewed-by: Chaoyong He <chaoyong...@corigine.com> Reviewed-by: Long Wu <long...@corigine.com> Reviewed-by: Peng Zhang <peng.zh...@corigine.com> --- drivers/net/nfp/nfp_net_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/nfp/nfp_net_common.c b/drivers/net/nfp/nfp_net_common.c index f76d5a6895..de7140db0a 100644 --- a/drivers/net/nfp/nfp_net_common.c +++ b/drivers/net/nfp/nfp_net_common.c @@ -717,7 +717,7 @@ nfp_net_set_allmulticast_mode(struct rte_eth_dev *dev, cap_extend = hw->cap_ext; if ((cap_extend & NFP_NET_CFG_CTRL_MCAST_FILTER) == 0) { - PMD_DRV_LOG(ERR, "Allmulticast mode not supported"); + PMD_DRV_LOG(DEBUG, "Allmulticast mode not supported"); return -ENOTSUP; } @@ -2814,7 +2814,7 @@ nfp_net_vf_queues_config(struct nfp_net_hw *net_hw, ret = nfp_net_sriov_check(pf_dev, NFP_NET_VF_CFG_MB_CAP_QUEUE_CONFIG); if (ret != 0) { if (ret == -ENOTSUP) { - PMD_INIT_LOG(WARNING, "Set VF max queue not supported"); + PMD_INIT_LOG(DEBUG, "Set VF max queue not supported"); return 0; } @@ -2844,7 +2844,7 @@ nfp_net_sriov_init(struct nfp_net_hw *net_hw, ret = nfp_net_sriov_check(pf_dev, NFP_NET_VF_CFG_MB_CAP_SPLIT); if (ret != 0) { if (ret == -ENOTSUP) { - PMD_INIT_LOG(WARNING, "Set VF split not supported"); + PMD_INIT_LOG(DEBUG, "Set VF split not supported"); return 0; } -- 2.39.1