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 C2D4FA0A0F; Wed, 7 Apr 2021 22:14:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A887C140F3C; Wed, 7 Apr 2021 22:14:51 +0200 (CEST) Received: from sysclose.org (smtp.sysclose.org [69.164.214.230]) by mails.dpdk.org (Postfix) with ESMTP id 20CEC140F2E for ; Wed, 7 Apr 2021 22:14:50 +0200 (CEST) Received: from localhost (unknown [45.71.105.250]) by sysclose.org (Postfix) with ESMTPSA id C0C662F49; Wed, 7 Apr 2021 20:14:49 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 sysclose.org C0C662F49 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sysclose.org; s=201903; t=1617826490; bh=YDB5AMdKxLd5W2AdWhygMhtwHGmbgheLXss3F6tSZaM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nKkh/rZXQ0C4ONAJcvk9rFXg2DsZQtZsh+sWxKyCAw5DqUpJeG9/DxDFbCTTlrp3K BmrZhjkRZwta1yTqtvnaycC8gtaYRJGl19Kj8OJh9YPbvcGKs3rU2vmDeAziMTzqAx TA2RKEbmMW0DXCSYT4vUXwTVqeBXMIcHzS+3p1HgD3rZzwJ/FKR3mOtiAh571KXDx0 OV65v2qeCMCyp5W1qxNQgK0opTZKTcoy/dSSVl8INm1O1wJj11bP4vV9Iota6CduQc CFfTN1Z1/IgGbIGpJlrWsqHeoOdjczyB8MsHKgRt0eM4sUAyMazcuDdO06fAtnaYDm 5sI4UTpaqU9SA== Date: Wed, 7 Apr 2021 17:14:43 -0300 From: Flavio Leitner To: David Marchand Cc: dev@dpdk.org, maxime.coquelin@redhat.com, olivier.matz@6wind.com, i.maximets@ovn.org Message-ID: 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> 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, > 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 > --- Reviewed-by: Flavio Leitner