From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id D7AAE2B83 for ; Tue, 17 Jan 2017 18:39:23 +0100 (CET) Received: by mail-wm0-f52.google.com with SMTP id c206so234353090wme.0 for ; Tue, 17 Jan 2017 09:39:23 -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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=WI23IDhI45VS6+HL+b0VAGvPOHCwjfj4ya52JX6LpLc=; b=anjzrO/ypV2ds3c2bYFj+oLuAUf7GkB1V9oL5uAGM493TbQ3Zr26SM23x2xCFs5Gch 5/ah9A0+EJvMUX1NefV5VeBYwjmZ89a8GAAxIb2uPLdLmG2CnpOYVlVOh0QAZvt0wToz SsJZegzF96N6aCwOkttloM+Dpv0vW2q/R06V8a14iF7hVCSfqmlMfQtZzbng4KWbuuo4 BKIG8pjQ6hd9DF3C2CjKRDymha5ELtEFwr44yZMCeQ5SDAbCG9Er7SukIKqfbxYHVzuw JvL5HJSWx87OnGroDNcFJdv0YiaLj6YYz4wpXElKwd6suah30WiLKyNmsGtFv350ODSe Aeww== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=WI23IDhI45VS6+HL+b0VAGvPOHCwjfj4ya52JX6LpLc=; b=eT4e6SOjje8CPWwZy0172ZCM93k2f6TpufGrFE6pWjegFUtFGlJB08twNoui/JhDFC Ugl2eDP9IpZgaEkHTnjHrP7wcSUnBBK7VrYFfKnvFVqGv3AFHFEGaL+KW8UYtILSRtkw UxrXHs93W9ajtkc2Y1LtGiyXhkVZy2vWL1CS7fcLxy3Z2ekwayYoXWtplqgbPWP7vlJw jxV6Z2IGFMPnBefCCqkW/c2bQyWRX1NR26Vxjd4sbpqhquqraQZQjGmQqkvPjvcllZ+5 HY6us5LfNThuVOyCwsmO7JoYJiVvoc1SC8JfXygjJTKTY10SpE4uikdJYwulPQop8l96 QEHg== X-Gm-Message-State: AIkVDXIJgvevxd/bWhH1RAdhgHwUn53mSWzi9KuFMkWRq1CJ9Osc6tS0M7R7PzgmWXfQPHVc X-Received: by 10.28.16.211 with SMTP id 202mr18918641wmq.133.1484674763517; Tue, 17 Jan 2017 09:39:23 -0800 (PST) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id e5sm38620079wma.12.2017.01.17.09.39.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 17 Jan 2017 09:39:22 -0800 (PST) From: Thomas Monjalon To: Tomasz Kulasek Cc: dev@dpdk.org Date: Tue, 17 Jan 2017 18:39:21 +0100 Message-ID: <3080969.Crb1XnCNDq@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1481901316-48216-1-git-send-email-tomaszx.kulasek@intel.com> References: <1481901316-48216-1-git-send-email-tomaszx.kulasek@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] performance-thread: add software packet type parsing X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 17:39:24 -0000 2016-12-16 16:15, Tomasz Kulasek: > Last changes in Niantic and Fortville NIC drivers causes that > vector Rx path is chosen by default in l3fwd-thread application. > This path doesn't support propagation of hw packet type recognition > to the packet_type field in mbuf, and packets cannot be classified > properly. > > The approach to solve this problem is similar to the commit: 71a7e2424e07 > ("examples/l3fwd: fix using packet type blindly"). > > To use sw packet analizer, new command line option "--parse-ptype" is > introduced. > > Signed-off-by: Tomasz Kulasek Applied, thanks