From: Eelco Chaudron Date: Thu, 12 Sep 2019 10:38:35 +0000 (-0400) Subject: net/i40e: downgrade error log X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9763595925aa0488392035dbb15522dc2200c6d4;p=dpdk.git net/i40e: downgrade error log When receiving the unsupported AQ messages, it's taken as an error. It's not appropriate and triggers too much unnecessary print. This commit is similar to commit e130425300b0 ("net/i40e: downgrade unnecessary error log") which made the same change for the PF instance. Fixes: ae19955e7c86 ("i40evf: support reporting PF reset") Cc: stable@dpdk.org Signed-off-by: Eelco Chaudron Reviewed-by: David Marchand Reviewed-by: Xiaolong Ye --- diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c index c77b30c54b..7b1d485c64 100644 --- a/drivers/net/i40e/i40e_ethdev_vf.c +++ b/drivers/net/i40e/i40e_ethdev_vf.c @@ -1411,7 +1411,7 @@ i40evf_handle_aq_msg(struct rte_eth_dev *dev) } break; default: - PMD_DRV_LOG(ERR, "Request %u is not supported yet", + PMD_DRV_LOG(DEBUG, "Request %u is not supported yet", aq_opc); break; }