From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] examples/dpdk_qat: Fix RX queue start number to the one just received the packets Date: Mon, 07 Dec 2015 02:32:16 +0100 Message-ID: <1932701.vd3GWY9UVx@xps13> References: <1443524879-24865-1-git-send-email-zhe.tao@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Zhe Tao Return-path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 0704993D2 for ; Mon, 7 Dec 2015 02:33:29 +0100 (CET) Received: by wmec201 with SMTP id c201so144527916wme.0 for ; Sun, 06 Dec 2015 17:33:28 -0800 (PST) In-Reply-To: <1443524879-24865-1-git-send-email-zhe.tao@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 < qconf->n_rx_queue; i++) { Anyone to confirm?