Skip to content

Commit

Permalink
net/i40e: downgrade unnecessary error log
Browse files Browse the repository at this point in the history
When receiving the unsupported AQ messages, it's taken as
an error. It's not appropriate and triggers too much
unnecessary print.

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
  • Loading branch information
wenzhuol authored and Ferruh Yigit committed Apr 19, 2017
1 parent 1193eda commit e130425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/i40e/i40e_ethdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -5782,7 +5782,7 @@ i40e_dev_handle_aq_msg(struct rte_eth_dev *dev)
RTE_ETH_EVENT_INTR_LSC, NULL);
break;
default:
PMD_DRV_LOG(ERR, "Request %u is not supported yet",
PMD_DRV_LOG(DEBUG, "Request %u is not supported yet",
opcode);
break;
}
Expand Down

0 comments on commit e130425

Please sign in to comment.