[dpdk-dev] [PATCH] examples/dpdk_qat: Fix RX queue start number to the one just received the packets

Zhe Tao zhe.tao at intel.com
Tue Sep 29 13:07:59 CEST 2015


Every time we started to receive the packets, the start queue number
should be the one that just received the packets, should not start from zero!

Signed-off-by: Zhe Tao <zhe.tao at intel.com>
---
 examples/dpdk_qat/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/dpdk_qat/main.c b/examples/dpdk_qat/main.c
index dc68989..b818e4e 100644
--- a/examples/dpdk_qat/main.c
+++ b/examples/dpdk_qat/main.c
@@ -187,7 +187,7 @@ nic_rx_get_packet(struct lcore_conf *qconf)
 		uint32_t i;
 
 		qconf->rx_mbuf_pos = 0;
-		for (i = 0; i < qconf->n_rx_queue; i++) {
+		for (i = qconf->rx_curr_queue; i < qconf->n_rx_queue; i++) {
 			qconf->rx_mbuf.len = rte_eth_rx_burst(
 				qconf->rx_queue_list[qconf->rx_curr_queue].port_id,
 				qconf->rx_queue_list[qconf->rx_curr_queue].queue_id,
-- 
1.9.3



More information about the dev mailing list