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:
5e48db8
)
net/sfc: remove control path logging from Rx queue count
author
Andrew Rybchenko
<arybchenko@solarflare.com>
Thu, 7 Feb 2019 12:17:25 +0000
(12:17 +0000)
committer
Ferruh Yigit
<ferruh.yigit@intel.com>
Thu, 7 Feb 2019 15:06:30 +0000
(16:06 +0100)
Rx queue count may be used from data core and it should not
generate control path logs.
Fixes:
04aa6b9c5fd7
("net/sfc: get RxQ pending descriptors count")
Cc: stable@dpdk.org
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/sfc_ethdev.c
patch
|
blob
|
history
diff --git
a/drivers/net/sfc/sfc_ethdev.c
b/drivers/net/sfc/sfc_ethdev.c
index
a7322a1
..
67ce5a2
100644
(file)
--- a/
drivers/net/sfc/sfc_ethdev.c
+++ b/
drivers/net/sfc/sfc_ethdev.c
@@
-1124,8
+1124,6
@@
sfc_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
{
struct sfc_adapter *sa = dev->data->dev_private;
- sfc_log_init(sa, "RxQ=%u", rx_queue_id);
-
return sfc_rx_qdesc_npending(sa, rx_queue_id);
}