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 673992BE2 for ; Thu, 9 Aug 2018 00:46:53 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id D98C121C8E; Wed, 8 Aug 2018 18:46:52 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 08 Aug 2018 18:46:52 -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=M7AEqc6nBEzMn6BuTp138H6ap8 2WWsZZdeOqwAVDTC4=; b=Uq2umUv9n7Uc65pWfrx42kc5SMLZ2GRvMYZf3KPz/H KP7uU7YDpgkGe6qh0DsNE1r1Ups/U0DHA6rxIp2FNKEFDmwxD/rIOFqApgqSR3XE ckwAPmWLX9yBtBjZZ50D9oklkLE6cOtDsSa3zzxf4+guHMDV+fMDw+b6h0GPFG0K A= 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=M7AEqc 6nBEzMn6BuTp138H6ap82WWsZZdeOqwAVDTC4=; b=BGtanSPB4064UVbud/hs5D GCDdMY7qGfA6Zs10fwq8wGqbj3sQrJ+OlcpplooH9GpU+nLY9LiHDWyj3/YtequW lXMBXlzIkNG+3HRaai7VWu8RprA+sOP+Liq+5bjSJml8Hf19OEGEx5m8YLyFRSAb R5alUBvRkBWUjGt0jH+R0J5qz/qlgMZjSzTO5meI2krhoh7XkqiRFlcAUlvtYjRh x0V7xms+5wFGfY3vYGYa9sFXY8A7JIamta8ySahiscIm3znJIXMu0sny7IJROjFb VCWlQsYN9eCwt3prCjh+G9xtFeWfQT2bKXkSVK7q10VwhJOQBZemJKOuBF6OuY8g == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (114.149.6.93.rev.sfr.net [93.6.149.114]) by mail.messagingengine.com (Postfix) with ESMTPA id 1B67FE425A; Wed, 8 Aug 2018 18:46:51 -0400 (EDT) From: Thomas Monjalon To: Olivier Matz Cc: dev@dpdk.org, Hemant Agrawal , John McNamara , Anatoly Burakov , Santosh Shukla Date: Thu, 09 Aug 2018 00:46:49 +0200 Message-ID: <3555145.PB9y6AE9nW@xps> In-Reply-To: <20180807213443.24847-2-zer0@droids-corp.org> References: <20180626095637.5637-1-olivier.matz@6wind.com> <20180807213443.24847-1-zer0@droids-corp.org> <20180807213443.24847-2-zer0@droids-corp.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 2/2] eal: remove experimental tag from user mbuf pool ops func 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: Wed, 08 Aug 2018 22:46:53 -0000 07/08/2018 23:34, Olivier Matz: > From: Olivier Matz > > Remove experimental tag from rte_eal_mbuf_user_pool_ops(). > > Signed-off-by: Olivier Matz > Acked-by: Santosh Shukla > --- > --- a/lib/librte_eal/rte_eal_version.map > +++ b/lib/librte_eal/rte_eal_version.map > @@ -261,6 +261,12 @@ DPDK_18.08 { > > } DPDK_18.05; > > +DPDK_18.08 { > + global: > + > + rte_eal_mbuf_user_pool_ops; > +} DPDK_18.05; > + There is already a section DPDK_18.08 so I moved the function there. Series applied with above fix, thanks