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 <echaudro@redhat.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>
This commit is contained in:
Eelco Chaudron 2019-09-12 06:38:35 -04:00 committed by Ferruh Yigit
parent d6956e9239
commit 9763595925

View File

@ -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;
}