From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id E7E1A2C39 for ; Sun, 27 May 2018 05:15:56 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7789C21511; Sat, 26 May 2018 23:15:56 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 26 May 2018 23:15:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=kZ0YaSegNzUcih3jMo90cPtNnUq/UNVMWQ0u5ZEPSos=; b=fX3dCgnM 9zWsR+Ezu1IT6JByeIndFjmVeHcRkKm/XSv9FWmyThBf3jdOvjFJQIZDmTPzMj+x Si6eNwofk0lLK0DlYl6thmd4jCpPvUSNSXQ1Gbyaziu94e8N26SOHpP5Cz+DqS1L m5eA2SYvOjPz9+rywWC3Yq+v6tMyx9Z1purNJ3CSywugVUrZTsMz7JhcgEqIIT2I /BB4649hakAXNNww4XWtq1r+Rm452KZxjx+WG9hnss76aAxRHwwT3OpNCpYgncGs Fgr//G8GAIFk+tc6hIf0l5qcqIiYUExuPPRL/afTaycmBLD5jBKwd1ET+HMTIVia YzOaQADkhIzgPg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm2; bh=kZ0YaSegNzUcih3jMo90cPtNnUq/U NVMWQ0u5ZEPSos=; b=C9RD/oC1UGRd0n2V3NvAvtrdV2QTmyqvv4TMVFUzVCwAj x2xs9Oxo129ZhQ1J2c/GWUxlW+ALMg/lEUGwy9gOIUXQS8y6RFgJuOJ74WGRXMbr mwZM4o/jR5D+mNxtkcYn7NIRGVQ7yQqObgYvKE0laOauFZHnqqoTr71Sr2JRkejy 4dpxrF63FzDslpWB4w4yxh+r12S4BKMM0Fas1Og7hMJyjjglnspI7dMiT7+LLNXk 0NINCilqAMXO43TrjqR4/T7N7VFtCd4U6rm1rqgH5v0FxtzPF6tW4WmPBQ5mUpxW L7BfudWmjkWYAXLQ2VAwSGsFeQRyvFFSLYFhiKgfQ== X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Sender: Received: from yuanhanliu-NB0 (unknown [223.74.148.22]) by mail.messagingengine.com (Postfix) with ESMTPA id 74493E4339; Sat, 26 May 2018 23:15:55 -0400 (EDT) Date: Sun, 27 May 2018 11:15:47 +0800 From: Yuanhan Liu To: Yongseok Koh Cc: "luca.boccassi@gmail.com" , Shahaf Shuler , Wisam Monther , dpdk stable Message-ID: <20180527031547.debfexmbbuwsl77m@yuanhanliu-NB0.tencent.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170113 (1.7.2) Subject: Re: [dpdk-stable] A missing mlx5 patch for stable 17.11 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 May 2018 03:15:57 -0000 On Wed, May 23, 2018 at 09:07:56PM +0000, Yongseok Koh wrote: > Hi, Yuanhan > > There's one missing patch from upstream repo. It is because the patch doesn't > have Cc tag. I should've asked when I acked it. > > Please push this one to the 17.11 queue for the next available release. > I confirmed it can be applied without any conflict. Hi Yongseok, Thank you for letting me know that! I have now pushed it to dpdk-stable/17.11. --yliu > > > commit 0915e287a6a7ed884a3de198f08926d8418366d4 > Author: Bin Huang > Date: Fri Mar 30 13:13:38 2018 +0800 > > net/mlx5: add packet type index for TCP ack > > According to CQE format: > - l4_hdr_type: > 0 - None > 1 - TCP header was present in the packet > 2 - UDP header was present in the packet > 3 - TCP header was present in the packet with Empty > TCP ACK indication. (TCP packet flag is set, > and packet carries no data) > 4 - TCP header was present in the packet with TCP ACK indication. > (TCP packet flag is set, and packet carries data). > > A packet should be identified as TCP packet if l4_hdr_type is 1, 3 or 4. > Add corresponding idx of TCP ACK to ptype table. > > previous discussion: > https://www.mail-archive.com/users@dpdk.org/msg02980.html > > Signed-off-by: Bin Huang > Acked-by: Yongseok Koh > > > > Thanks, > Yongseok