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:
dd52fa0
)
net/iavf: downgrade error log
author
Steve Yang
<stevex.yang@intel.com>
Fri, 4 Sep 2020 07:29:07 +0000
(07:29 +0000)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Fri, 18 Sep 2020 16:55:07 +0000
(18:55 +0200)
When receiving the unsupported AQ messages, it's taken as an
error. It's not appropriate and triggers too much unnecessary print.
Fixes:
22b123a36d07
("net/avf: initialize PMD")
Cc: stable@dpdk.org
Signed-off-by: Steve Yang <stevex.yang@intel.com>
Acked-by: Beilei Xing <beilei.xing@intel.com>
drivers/net/iavf/iavf_vchnl.c
patch
|
blob
|
history
diff --git
a/drivers/net/iavf/iavf_vchnl.c
b/drivers/net/iavf/iavf_vchnl.c
index
a163548
..
ea9b53a
100644
(file)
--- a/
drivers/net/iavf/iavf_vchnl.c
+++ b/
drivers/net/iavf/iavf_vchnl.c
@@
-268,7
+268,7
@@
iavf_handle_virtchnl_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;
}