From patchwork Mon Nov 6 11:08:24 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 31201 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BBEF31B285; Mon, 6 Nov 2017 12:08:32 +0100 (CET) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id A71AD1B26D for ; Mon, 6 Nov 2017 12:08:31 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 2714520C31; Mon, 6 Nov 2017 06:08:31 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 06 Nov 2017 06:08:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=NmuApOrz8QpdkbeRXgWXffI1juTfLjnORDgmA+ nnVx4=; b=K6quIWCPxUKnN+pHCBT5MUyNl+ZSSAaLhBbEYCzDwIc1Dyn5sttIn7 Qr0nMk6kLnuAJgnCEzeALfQO1MvVwFSEYfemcYExaWdr/RAU5G0hYUBQ0VocWp3c LFQRDWwxY8ihmU59pChx66FArgTz6LzhXpdruIyReVQ7285+ci8oo= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=NmuApOrz8QpdkbeRX gWXffI1juTfLjnORDgmA+nnVx4=; b=LhHYMMmhdm97WuFMk1aG8l24KwNRKKNAO AVTyxa+P0fVD6RbTHp6RKIgOf+lDoDvISnAA+tc+z17fUCWCJ9eB05y/RvH915/q f1RCSrU6N+7yoguIIdzmsMIRPftScrm26j4a33KvZ99mPq6+dTodKhLu/rj2Y/Pb ua7edU1BzcRAU1qgLZHbMh0uQyxMq1ddq7fTwl7zPahCQ38Th2RfdqR12ulMovM3 3mpOGWjs9eGEQtEcZGasR+KOcOBrYSfunes7dRqaQ93gonmn/HQ0WljiwcqLuEnV tk2DkVzu8U4oR/36rtO8JCwPEWmffzVG70DrIuoKG5Wa/zqI+oL5Q== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 862487F8DC; Mon, 6 Nov 2017 06:08:30 -0500 (EST) From: Thomas Monjalon To: olivier.matz@6wind.com, santosh.shukla@caviumnetworks.com Cc: dev@dpdk.org Date: Mon, 6 Nov 2017 12:08:24 +0100 Message-Id: <20171106110824.12936-1-thomas@monjalon.net> X-Mailer: git-send-email 2.14.2 Subject: [dpdk-dev] [PATCH] mempool: increase ABI version 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" API and ABI of mempool library has been changed in 17.11. Fixes: 02604520b2f2 ("mempool: remove unused flags argument") Fixes: 0cc0f8aaa35d ("mempool: change flags from int to unsigned int") Fixes: 6eac187bff30 ("mempool: add flags arg in xmem size and usage") Signed-off-by: Thomas Monjalon Acked-by: Santosh Shukla --- doc/guides/rel_notes/release_17_11.rst | 2 +- lib/librte_mempool/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/rel_notes/release_17_11.rst b/doc/guides/rel_notes/release_17_11.rst index 85505fa8e..b7546e605 100644 --- a/doc/guides/rel_notes/release_17_11.rst +++ b/doc/guides/rel_notes/release_17_11.rst @@ -494,7 +494,7 @@ The libraries prepended with a plus sign were incremented in this version. librte_latencystats.so.1 librte_lpm.so.2 librte_mbuf.so.3 - librte_mempool.so.2 + + librte_mempool.so.3 librte_meter.so.1 librte_metrics.so.1 librte_net.so.1 diff --git a/lib/librte_mempool/Makefile b/lib/librte_mempool/Makefile index bafd1b9a0..46654e32e 100644 --- a/lib/librte_mempool/Makefile +++ b/lib/librte_mempool/Makefile @@ -39,7 +39,7 @@ LDLIBS += -lrte_eal -lrte_ring EXPORT_MAP := rte_mempool_version.map -LIBABIVER := 2 +LIBABIVER := 3 # all source are stored in SRCS-y SRCS-$(CONFIG_RTE_LIBRTE_MEMPOOL) += rte_mempool.c