From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 0B0CE98 for ; Thu, 26 Jul 2018 23:34:20 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id ABC4421E24; Thu, 26 Jul 2018 17:34:19 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 26 Jul 2018 17:34:19 -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=MN+GT1YWlFF5BBZ9b3Xq4Vatic 5z6YdBu+99Mq6ZU7A=; b=cjoEhw8ZVK+QHtAcGEI6MbbJnI1lvUihooPZI42Op5 kyMtPytGc1cUdgHMtTmA2Kh2sJ0vr7US9cy5MYVIBo1lto1bGb1lRRmDSDdlJkBO OGDlJXO5DZPNz/2cl3Q5f+1T7b/kYiH6Qc1aIgERUiKNxhlejSv1we5gIt//2Ua/ 8= 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=fm3; bh=MN+GT1 YWlFF5BBZ9b3Xq4Vatic5z6YdBu+99Mq6ZU7A=; b=gtDRVrIU2KI4Gni5LoApVP jbuyTspZQcn1Yde7qaawzphbbthEn4fXs0KQB2NAmBW8CAqNR5nY9LHALGDzL8rZ 9W5Z7P0VqqtR+Esqe2GO+BNJIobyQeGWXNZfiyvz0LPTSDnR2pP3/suDMYWANXZ0 IzSl+xkUdFnYSSURgbE6Ps5646z7QYoMcktDRU+T5VIBCdGYLLG2O9Fyne+7d3Ig ycbHdeWH/k9quvPS+mzAaTXzN/SSjY/SxsG2UKSi+jdnrV0K6MuyUeAPOyx3781I CycII7JR9HHNCUS/Xjt9PY1QOrB2GhC1Fv7Tf84UotuHDrtUduEV2nApv3qA8cNg == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id D5AE21025C; Thu, 26 Jul 2018 17:34:18 -0400 (EDT) From: Thomas Monjalon To: Andrew Rybchenko Cc: dev@dpdk.org, Olivier Matz Date: Thu, 26 Jul 2018 23:34:14 +0200 Message-ID: <5677276.1WdofzzUsl@xps> In-Reply-To: <1531306750-9844-1-git-send-email-arybchenko@solarflare.com> References: <1531306750-9844-1-git-send-email-arybchenko@solarflare.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 1/2] mempool: remove deprecated functions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jul 2018 21:34:20 -0000 11/07/2018 12:59, Andrew Rybchenko: > Functions rte_mempool_populate_phys(), rte_mempool_virt2phy() and > rte_mempool_populate_phys_tab() are just wrappers for corresponding > IOVA functions and were deprecated in v17.11. > > Functions rte_mempool_xmem_create(), rte_mempool_xmem_size(), > rte_mempool_xmem_usage() and rte_mempool_populate_iova_tab() were > deprecated in v18.05 and removal was announced earlier in v18.02. > > Signed-off-by: Andrew Rybchenko > --- > lib/librte_mempool/Makefile | 3 - > lib/librte_mempool/meson.build | 4 - > lib/librte_mempool/rte_mempool.c | 181 +-------------------- > lib/librte_mempool/rte_mempool.h | 179 -------------------- > lib/librte_mempool/rte_mempool_version.map | 6 - > 5 files changed, 1 insertion(+), 372 deletions(-) Please update the release notes, deprecation notice, and bump ABI version. Thanks