From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B6517A034F; Mon, 11 Oct 2021 16:53:34 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C947541130; Mon, 11 Oct 2021 16:51:10 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id ED7C1410DC for ; Mon, 11 Oct 2021 16:51:08 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 9301F7F508; Mon, 11 Oct 2021 17:51:08 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 9301F7F508 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1633963868; bh=2eQPs/ewJ4ruVALF18I0PJw9j1Z+yxqem4MiPNIEYsw=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=gqHg0TdLNXAu+eeAFIqb2F/+6xD5HrgpNwa2kp2qr3XFmEuZtRrmS6R0HQ5Njrf3U j3ug4McFZEZnapeSiBh5b3V+q/f9iRBPcT0CRdgr5nUeIf7kpvhmupOuU3ZaW57B2a v174wXW5dllKP2qc1djCbjhPD4btp/cZwBilQFxs= To: Olivier Matz Cc: Ray Kinsella , dev@dpdk.org References: <20210929073734.1382905-1-andrew.rybchenko@oktetlabs.ru> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <4710ce54-b0b1-8c41-85ca-38cd13c2b5b1@oktetlabs.ru> Date: Mon, 11 Oct 2021 17:51:08 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] mbuf: remove deprecated bad outer IPv4 checksum flag on Rx X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Olivier, On 9/30/21 12:51 AM, Olivier Matz wrote: > Hi Andrew, > > On Wed, Sep 29, 2021 at 10:37:34AM +0300, Andrew Rybchenko wrote: >> Removed offload flag PKT_RX_EIP_CKSUM_BAD. PKT_RX_OUTER_IP_CKSUM_BAD >> should be used as a replacement. >> >> Signed-off-by: Andrew Rybchenko > > FYI, I just submitted a patchset that removes all PKT_ flags and > fixes the namespace. I will rebase it on top of your patch. I'm sorry for inconvenience. >> --- >> doc/guides/rel_notes/deprecation.rst | 7 +------ >> doc/guides/rel_notes/release_21_11.rst | 3 +++ >> lib/mbuf/rte_mbuf_core.h | 7 ------- >> 3 files changed, 4 insertions(+), 13 deletions(-) >> >> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst >> index 59445a6f42..3175426dad 100644 >> --- a/doc/guides/rel_notes/deprecation.rst >> +++ b/doc/guides/rel_notes/deprecation.rst >> @@ -42,7 +42,7 @@ Deprecation Notices >> * mbuf: The mbuf offload flags ``PKT_*`` will be renamed as ``RTE_MBUF_F_*``. >> A compatibility layer will be kept until DPDK 22.11, except for the flags >> that are already deprecated (``PKT_RX_L4_CKSUM_BAD``, ``PKT_RX_IP_CKSUM_BAD``, >> - ``PKT_RX_EIP_CKSUM_BAD``, ``PKT_TX_QINQ_PKT``) which will be removed. >> + ``PKT_RX_OUTER_IP_CKSUM_BAD``, ``PKT_TX_QINQ_PKT``) which will be removed. >> > > I think this one should not be modified. > > You can add my ack to the v2. Fixed in v2. Thanks, Andrew.