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

2016-03-04 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zhe Tao > Sent: Tuesday, September 29, 2015 7:08 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] examples/dpdk_qat: Fix RX queue start > number to the one just received the packets

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

2015-12-07 Thread Declan Doherty
On 07/12/15 01:32, Thomas Monjalon wrote: > 2015-09-29 19:07, Zhe Tao: >> 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! >> > [...] >> -for (i = 0; i < qconf->n_rx_queue; i++) { >> +

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

2015-12-07 Thread Thomas Monjalon
2015-09-29 19:07, Zhe Tao: > 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! > [...] > - for (i = 0; i < qconf->n_rx_queue; i++) { > + for (i = qconf->rx_curr_queue; i < qco

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

2015-09-29 Thread Zhe Tao
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 --- examples/dpdk_qat/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dpdk_qat/main.c b/ex