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 B42EFA0032; Wed, 29 Sep 2021 23:51:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A5417410EF; Wed, 29 Sep 2021 23:51:23 +0200 (CEST) Received: from mail-wr1-f49.google.com (mail-wr1-f49.google.com [209.85.221.49]) by mails.dpdk.org (Postfix) with ESMTP id 2EE48410EE for ; Wed, 29 Sep 2021 23:51:22 +0200 (CEST) Received: by mail-wr1-f49.google.com with SMTP id v17so6569681wrv.9 for ; Wed, 29 Sep 2021 14:51:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind.com; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=SEdnGRcyMvStKO/1H0p6eGxbeS0q4w3zvQZtX6lDKUM=; b=ar3GqNIeTHDAe8/wN4+pcuqLKs8dMpC2hlGs8JpCibBSQlbXupcNa+o9fBis89rh0+ 1frMrK1pgfmb8yzpw41F9MRkI2U52zbsn4wzZP5DdzcZZl0RUAJngEy6MmBIdnHxxjy7 EUmJ2VqktjDy/pQgg4x1ZXWVgP3TT8OykP0fnq2YhjNO44JdWDUFFPHMOWIAaUQNz7C2 lsVtXYBvJSCbAvhsrFqG54nHIcAMcIYUGi5351KEfYYc2vDjYKWWEZZPamayecXu1Dos QQELs9wGHlEhpRtz1fM/lVl+vJ0D5Jahy5N1f9Yqq2InEHdsfEczeQNu7W5vp7B4BigL t08w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=SEdnGRcyMvStKO/1H0p6eGxbeS0q4w3zvQZtX6lDKUM=; b=YQOSd6LJm4ZdZeFd7VCYshhbaXf3xyBm50xcyXVRJDnc6cqiDNcjAO+p0tjGwZ4DU4 MnWPHyumJEUa+1DFLXgLAuJH4Idkmkd6A8OlwYLtE10+duTjpohE+jZWN+42Rd2ciFm9 gDecGVRiEVbrchNCS6LYQ7eGkKs7E6riAr43iryvXNjhMjdqoTBYVwWqP/ZlX6I0zfCa wZshSZl3fKTHwDq1gCkaW+KR/7ZoIABt+kBD7/vOzSN+9oRht5+Dk6gYrNaTTR7+tFjQ h9wlKL1zvLljLmrCW6j29l6ddQABOABAlyssP0JjLJS79VapRnI+rPrLmnZBR3n845Zx M7ag== X-Gm-Message-State: AOAM530DQprADwRCylAdHXAyGwg5UNp+RWe1CwkZh+tMdDz648W2CeTU es9EVGEPtP5bdU2LhL5ba5MD8Q== X-Google-Smtp-Source: ABdhPJxfWQQaQIosKJkNOPxF9gmfCjFtuzUE+NRmrbwneLr7+bd6RCk4PIDo/r1T4H7r1+39fHRHaQ== X-Received: by 2002:adf:d21b:: with SMTP id j27mr2481960wrh.33.1632952281974; Wed, 29 Sep 2021 14:51:21 -0700 (PDT) Received: from 6wind.com ([2a01:e0a:5ac:6460:c065:401d:87eb:9b25]) by smtp.gmail.com with ESMTPSA id u1sm1057807wrn.66.2021.09.29.14.51.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 29 Sep 2021 14:51:21 -0700 (PDT) Date: Wed, 29 Sep 2021 23:51:20 +0200 From: Olivier Matz To: Andrew Rybchenko Cc: Ray Kinsella , dev@dpdk.org Message-ID: References: <20210929073734.1382905-1-andrew.rybchenko@oktetlabs.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210929073734.1382905-1-andrew.rybchenko@oktetlabs.ru> 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 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. > --- > 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. Thanks! Olivier