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 45332A0579; Thu, 8 Apr 2021 09:23:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B920F40698; Thu, 8 Apr 2021 09:23:55 +0200 (CEST) Received: from mail-wm1-f44.google.com (mail-wm1-f44.google.com [209.85.128.44]) by mails.dpdk.org (Postfix) with ESMTP id BBC3F40138 for ; Thu, 8 Apr 2021 09:23:54 +0200 (CEST) Received: by mail-wm1-f44.google.com with SMTP id 12so651569wmf.5 for ; Thu, 08 Apr 2021 00:23:54 -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:user-agent; bh=bi3macUMGBpzkOUtCx1N0PIZx3N9jYfzMDF35oNZO5s=; b=d037J9qjuL+xVvW04EQ7xW3vDeVavFnHtnbSzQhvQNfsib7rVqKi/pnE7vmd2n9BIi MNjH8kqa4Nd5oEf10JRpdXc+B+61R4Wh8W5hOdLYD9pZMw5l659Kr0e+miYuKEd05k4e hkDlBsqXjGlZR+r1Qth3+CIODwHgJ0WDY5ycdPSREhnONfhLvaTzp7Vpo4q9fkdoNDki 1tSldbxE88GGToyUVlTNC4giaxrQ1WsTzj/s/COyORzOlUN7XrQ+/SSfbUnKunHDML+F sUqiBylgOwUaRUp/CjLiMrt+BCDof15MvC74DQ1r0B1NCHO9DvP027DUlD6lo7Ams9r/ T2Tw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=bi3macUMGBpzkOUtCx1N0PIZx3N9jYfzMDF35oNZO5s=; b=JMFPpi93pdo8qWrMpQi9GTFiUDAv/ynRLmqX6cv5Ol2gVPeU3szNcSpSI0yGTViY4h xPwpa8PZ7m8bkFKs+YSV72V/b6JTIX4r5JyFMEummT40gXTONjI/6jI0Ig+WMtkVYiaX B6md1XQvEtW54KqNMO3k1AwEwqtTkNG6J8h8jwo5XBq+9CqF1sv5FoYNWtAIbn8fElpf iEl3ufIg/wIGg9LC2l0SnT0nNBUYiYmjcPSSGVi/AuyEv6W1p4fKrzBY7sSZeJdUDj4u 1vFLa5y/0NFnOZ/cBomT5Ep48VKyW6hcc+CJUGxRq0yhd5ei8+URfv3XRsybZ8q8FNeW HiOw== X-Gm-Message-State: AOAM531o7sNPcWy5WYR6Tyyn+JvAPCIbXd3dTbWPrkvhLaTjFXZMQ7tD BPid20XNC4TJqKzgCjhIZ3wxhg== X-Google-Smtp-Source: ABdhPJzCROcgZsUdneNO98kwVfroXICcaQyp4JIqyloHQ++1rIhvZr6eR22gRHoV0tMIiuHj8qWUxA== X-Received: by 2002:a05:600c:4107:: with SMTP id j7mr6809737wmi.25.1617866634394; Thu, 08 Apr 2021 00:23:54 -0700 (PDT) Received: from 6wind.com ([2a01:e0a:5ac:6460:c065:401d:87eb:9b25]) by smtp.gmail.com with ESMTPSA id x12sm35055965wrr.7.2021.04.08.00.23.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 08 Apr 2021 00:23:53 -0700 (PDT) Date: Thu, 8 Apr 2021 09:23:53 +0200 From: Olivier Matz To: David Marchand Cc: dev@dpdk.org, maxime.coquelin@redhat.com, fbl@sysclose.org, i.maximets@ovn.org Message-ID: <20210408072353.GP1650@platinum> References: <20210401095243.18211-1-david.marchand@redhat.com> <20210401095243.18211-2-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210401095243.18211-2-david.marchand@redhat.com> User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [dpdk-dev] [PATCH 1/5] mbuf: mark old offload flag as deprecated 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" On Thu, Apr 01, 2021 at 11:52:39AM +0200, David Marchand wrote: > PKT_RX_EIP_CKSUM_BAD has been declared deprecated quite some time ago, It's not that old, it was done by Lance in commit e8a419d6de4b ("mbuf: rename outer IP checksum macro") 1 month ago. > but there was no warning to applications still using it. > Fix this by marking as deprecated with the newly introduced > RTE_DEPRECATED. > > Signed-off-by: David Marchand Acked-by: Olivier Matz