From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id CEFF22E83 for ; Tue, 10 Nov 2015 16:29:04 +0100 (CET) Received: by wmec201 with SMTP id c201so139295600wme.0 for ; Tue, 10 Nov 2015 07:29:04 -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=Nyo0NGl1+3CiKyw/9VkaVc60teu36sJqTNPqh2ACGLc=; b=dlvcEq4tQue9y9Ymau2M9qqchM9GXHHcpSOzGcD7bkrw4pBOA+3QBoBd0tvvEbQmuN NA1kMuOXFUg99bfSyarZL5uYDEFyeqph6m9Du+bwhV8E1msYArn2UCHF+Z5kycUfNODF /fiTtNYl03jUdUpW5NaHZfnBZuFAP6yrSYcJiqqAYh+++2LSYz9vxeBnpzi13XS8IV6S s14+QLgZnXAQxlcbg3BdBqRixfPWp92vqRQVLVC+xUBbaPuG+nINQoKaqkt18eQFvQF2 zs+1st98xQmVHj+O3zsQZg3/14O+QB2cpdpRmT6mgifqRg0q1iwVUDo5FFskYz9aY4ld mL5A== 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=Nyo0NGl1+3CiKyw/9VkaVc60teu36sJqTNPqh2ACGLc=; b=QuXNbmU4g51zHrmV/YNueVjqnuLty9F175iA3bypjWU+3+dKIlL0fKMR2Z8L67RoCV XFp2r/kuKKFNTfEw/adS6vlFL4h/MlGUSnfQUSRxlfN/EJsFNwEh35Wb3nTQ2bOt0S1d qA4T5SysLtFM7LpbDNXeEPxTvXHBE00He+cyJpsEnHkE2eJE8XN50HX4HgNlQ9O7k//u F1JYJllBHwpia/Y1AJlTTrbMOf88jU+d3uNeVxGJ2zd/oHKOLK/BMA6IXjWEJFkZsiAm BMCdz1dlNEOq9TjpAsR6fuE2ftoxz7J5EeCNrMknrk5LVTabcwnLv7NJhbqw0CDVEkZe lCgg== X-Gm-Message-State: ALoCoQle/5rAL1bnv+Uwz/U0eGr2N+I0xLFiCugHj03oA40dnONXK40Kw6W/0RClxrAQRz01n5LA X-Received: by 10.28.140.208 with SMTP id o199mr5730039wmd.58.1447169344671; Tue, 10 Nov 2015 07:29:04 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id r12sm20350355wmd.17.2015.11.10.07.29.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 10 Nov 2015 07:29:03 -0800 (PST) From: Thomas Monjalon To: pablo.de.lara.guarch@intel.com Date: Tue, 10 Nov 2015 16:27:52 +0100 Message-ID: <1782730.BzREnyClfV@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446108423-14231-1-git-send-email-david.marchand@6wind.com> References: <1446108423-14231-1-git-send-email-david.marchand@6wind.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] app/testpmd: fix icmp echo tx queues 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: Tue, 10 Nov 2015 15:29:05 -0000 2015-10-29 09:47, David Marchand: > icmp echo forward engine relies on the core rank rather than the number of > queues available. > This fix is still wrong, because if we set a nb-rxq > nb-txq, then we will use > an invalid txq, but with this, we are aligned on other fwd engines. > > Signed-off-by: David Marchand [...] > - fs->tx_queue = lc_id; > + fs->tx_queue = rxq; Pablo, any opinion?