Skip to content

Commit

Permalink
net/i40e: downgrade error log
Browse files Browse the repository at this point in the history
[ upstream commit 9763595 ]

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 e130425 ("net/i40e: downgrade unnecessary error log")
which made the same change for the PF instance.

Fixes: ae19955 ("i40evf: support reporting PF reset")

Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>
  • Loading branch information
chaudron authored and kevintraynor committed Nov 22, 2019
1 parent 5818326 commit f4aa263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/i40e/i40e_ethdev_vf.c
Expand Up @@ -1359,7 +1359,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;
}
Expand Down

0 comments on commit f4aa263

Please sign in to comment.