From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com
 [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id B9D3A1B1CE
 for <dev@dpdk.org>; Mon, 16 Apr 2018 09:28:21 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 69DCD21982;
 Mon, 16 Apr 2018 03:28:20 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Mon, 16 Apr 2018 03:28:20 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=gSM/pleiRY4XpnoSBxn136gMM2
 vvUAZUbgobNkOo94g=; b=OPX3FwYtzmzCNqO+d3XyAIaWxLwDZ1ASthyJDysPhs
 B9+/0tUrnijC1Ixw4Eh5ur+jSHEbZTxZt42Ln7tcC90Oq37s/sztRF537Y7dZJFQ
 cnFvTfPO/2CUMBc11g8lFVCylzQqJdpjAO+kfXI/UZzwx5g6R8sI31o8gPq5uwAc
 U=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding: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=gSM/pl
 eiRY4XpnoSBxn136gMM2vvUAZUbgobNkOo94g=; b=dxojTd+PQFbWsUGX9v8ySk
 U4XHvf0G6hiALLJubvy0AeMsv/zSCg+aGuigNF5k/syOyEx4pz9j2G7wFMNUxHhl
 AdzwLZYkhXCkNZGBbd2NBHXc13j8lAGbRslrU2AFZtohrMlZAs02Tas2IXXU1yTv
 I+K4vRVJJgctETigzfOu6GH0eKfGiXUb+BW7tvqzt8QWdQTFTufMJYLAmY4j5pi8
 RoEXSJO2O+1R85QRCdatxOJcnEw+LCy/G4ytsDbOuI69O2lrS+iUd+pVRP21p0xT
 fnwctAk5lGpTjQJG69LuB8OxmN3jlpXK/TQa8Hu6WZ2MoOFQX6bM8sU7NJyGTAVw
 ==
X-ME-Sender: <xms:lFDUWiooObM-lGu4IVnYd3CvuJW0gPPnu2_qkIt-eOKS77UeMLIt4w>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id C2C09E49AD;
 Mon, 16 Apr 2018 03:28:19 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Shahaf Shuler <shahafs@mellanox.com>
Cc: ferruh.yigit@intel.com, dev@dpdk.org
Date: Mon, 16 Apr 2018 09:28:18 +0200
Message-ID: <12699612.p0Ag6v6Uy8@xps>
In-Reply-To: <20180416060203.57358-1-shahafs@mellanox.com>
References: <20180416060203.57358-1-shahafs@mellanox.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] ethdev: remove new to old offloads API
	helpers
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 16 Apr 2018 07:28:21 -0000

16/04/2018 08:02, Shahaf Shuler:
> According to
> 
> commit 315ee8374e0e ("doc: reduce initial offload API rework scope
> 		     to drivers")
> 
> All PMDs should have moved to the new offloads API. Therefore it is safe
> to remove the new->old convert helps.
> 
> The old->new helpers will remain to support application which still use
> the old API.
> 
> Signed-off-by: Shahaf Shuler <shahafs@mellanox.com>
> ---
>  lib/librte_ether/rte_ethdev.c | 100 +-----------------------------------------
>  1 file changed, 2 insertions(+), 98 deletions(-)

I think you missed removing the deprecation notice part.