[dpdk-stable] patch 'net/ark: fix loop counter' has been queued to	stable release 17.08.1
    Yuanhan Liu 
    yliu at fridaylinux.org
       
    Tue Nov 21 14:17:16 CET 2017
    
    
  
Hi,
FYI, your patch has been queued to stable release 17.08.1
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/24/17. So please
shout if anyone has objections.
Thanks.
	--yliu
---
>From 31a706d95c1d5e9c8bb6b771dd931ee135eb981f Mon Sep 17 00:00:00 2001
From: John Miller <john.miller at atomicrules.com>
Date: Fri, 6 Oct 2017 14:03:27 -0400
Subject: [PATCH] net/ark: fix loop counter
[ upstream commit 22862a0213d3888d4ba22f8ae0d62d5e0c44b683 ]
Change loop counter that should be based on the number
of rx queues, not tx queues.  This only affects debug
output.
Fixes: 727b3fe292bc ("net/ark: integrate PMD")
Signed-off-by: John Miller <john.miller at atomicrules.com>
---
 drivers/net/ark/ark_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c
index 6db362b..88eb592 100644
--- a/drivers/net/ark/ark_ethdev.c
+++ b/drivers/net/ark/ark_ethdev.c
@@ -693,7 +693,7 @@ eth_ark_dev_stop(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 */
-- 
2.7.4
    
    
More information about the stable
mailing list