git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1193eda
)
net/i40e: downgrade unnecessary error log
author
Wenzhuo Lu
<wenzhuo.lu@intel.com>
Fri, 14 Apr 2017 01:16:34 +0000
(09:16 +0800)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Wed, 19 Apr 2017 13:37:37 +0000
(15:37 +0200)
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>
drivers/net/i40e/i40e_ethdev.c
patch
|
blob
|
history
diff --git
a/drivers/net/i40e/i40e_ethdev.c
b/drivers/net/i40e/i40e_ethdev.c
index
c6398df
..
43c11cf
100644
(file)
--- a/
drivers/net/i40e/i40e_ethdev.c
+++ b/
drivers/net/i40e/i40e_ethdev.c
@@
-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;
}