[dpdk-dev] net/ark: repair incorrect loop counter

Message ID 1507313007-4081-1-git-send-email-john.miller@atomicrules.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

John Miller Oct. 6, 2017, 6:03 p.m. UTC
  Change loop counter that should be based on the number
of rx queues, not tx queues.  This only affects debug
output.

Signed-off-by: John Miller <john.miller@atomicrules.com>
---
 drivers/net/ark/ark_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Ferruh Yigit Oct. 6, 2017, 11:47 p.m. UTC | #1
On 10/6/2017 7:03 PM, John Miller wrote:
> Change loop counter that should be based on the number
> of rx queues, not tx queues.  This only affects debug
> output.
> 
> Signed-off-by: John Miller <john.miller@atomicrules.com>

Applied to dpdk-next-net/master, thanks.
  

Patch

diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c
index ba25a9d..7130dca 100644
--- a/drivers/net/ark/ark_ethdev.c
+++ b/drivers/net/ark/ark_ethdev.c
@@ -698,7 +698,7 @@  static void eth_ark_macaddr_remove(struct rte_eth_dev *dev,
 	ark_udm_dump_stats(ark->udm.v, "Post stop");
 	ark_udm_dump_perf(ark->udm.v, "Post stop");
 
-	for (i = 0; i < dev->data->nb_tx_queues; i++)
+	for (i = 0; i < dev->data->nb_rx_queues; i++)
 		eth_ark_rx_dump_queue(dev, i, __func__);
 
 	/* Stop the packet checker if it is running */