From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=wItoGwcOvV6JQuI3e5z04G0Rww7qji+qr53uKFzejn4=; b=Q4GIsNEeBG3jtSXQUzekUM0JtQLF2S/gczlacsiel9wDgAnZNqPfvuugcU/9vmGmnk dOFixe3XgKWO/4hqMfH+7So760PWJEl0yv9R+loXxP6Xy13DuZbHmYWRQKMa0Crjvbff qBUB2I4orBjXFdbL4B8mykxa6kABonLn7S/pLF47iqTheDC5Dp0ZfyiByL2RuYYXXvRr Q4cbb78MoQX9JNtBgxsXHenfAkHEInGf0++ONA3KvS/oUqB7jrS4XLXDiHgTXXbw1HCn 2AcDpwE6yISMMZ5dNID5Xf9B4F19ECZe4IQ0oZ2VfeWbZr0MZQsQB8uza4lZlILYWZZM pQeA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=wItoGwcOvV6JQuI3e5z04G0Rww7qji+qr53uKFzejn4=; b=QpcInxxq1VIyiOOwhjLmn1FeLBAwaKvpG63YGYwZ5ronmraz3o1oyzSHnOyy6fGyAw UD2zoWoCX1/WwfMTdlxlUZaWTjhX6uW26mKGraicklzt08yD5+U5SgBgvXPFO+lHuHzy IeB4qa2sUYQJdHoHl6oiVlbeTCXyba1SQGvrYtOYa2hxc7c77hiIcTUwa58Bv27CGPli 3WG1c4AuExjCvrjbftVMkmcqCVUPLBYNntqS2WnYdJ/K/JW5hgxkGd4NLO0IXjmxCbqn REo7bO1E1egL/mPVNbXB/HloPIEPR/O1yoWE/t8aOpaC0X7A5IdiPy7yoOY3KUo/15uK TVVA== X-Gm-Message-State: ALoCoQkRBqQ9o5geRZGYQ4wM05eI1R9fhlJ+k5Npt4c98NP+X62Q9sMkzCjnZjkhSxN9it6mOGBG X-Received: by 10.194.123.8 with SMTP id lw8mr29756718wjb.72.1449452008881; Sun, 06 Dec 2015 17:33:28 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id m191sm14060208wma.3.2015.12.06.17.33.27 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 06 Dec 2015 17:33:28 -0800 (PST) From: Thomas Monjalon To: Zhe Tao Date: Mon, 07 Dec 2015 02:32:16 +0100 Message-ID: <1932701.vd3GWY9UVx@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1443524879-24865-1-git-send-email-zhe.tao@intel.com> References: <1443524879-24865-1-git-send-email-zhe.tao@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] examples/dpdk_qat: Fix RX queue start number to the one just received the packets X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Dec 2015 01:33:29 -0000 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?