From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 6EC121B62A for ; Mon, 23 Oct 2017 16:38:51 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1BE3620BC7; Mon, 23 Oct 2017 10:38:51 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 23 Oct 2017 10:38:51 -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=R8Q94Di8mw64tm0IYTuyfpf1N3 wWZon6tHhrQaHDI0M=; b=mcnyzO4KJ6qWfX3UTXB9VuUBneI5WW/znRPxHXCTTN FhRxJzOymkoTbdISvPd/gsx9RYxUNBcpqTmQZiCWMbzJ8OiDF8DB61USOrIdKakD /DfdTr8ddZqb82JSO27O6z3sVA7/EcNfWGkxZAVjKd5/sxwz7512Vd0Ik3JCFCUg w= 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=fm1; bh=R8Q94D i8mw64tm0IYTuyfpf1N3wWZon6tHhrQaHDI0M=; b=fdRVv4dUSd/GwQc7rQBnRO 3JhU5nFn6/gQHdiLuOfE4ZP6YbH8SSrngBr9GFWI+xgWhvbcqCy3P4NE4QVL50x4 V6YnuWe+ebwLPT35Os7wX/8eqMsod4vUqD4sUcUIMwo2GotGQJxHX/LTC2dFEiJd Q/uOhPa46+tCeApRt8n/uad48vPtEH1BF4FUN2ETbK+leM9xKdRFCCoh20AIrm0K oI14E/4eZC9xu2zmaa4z85gYG+DQ+nGasRKtOWjjhXsr710WH52pSGBSY5YT4hQS CvCTX8DfWUXPcZ0Z3nFZe41FSJx4Tmmmf7AcflTWS5Jfge/O5sScaY88cDrz1deg == 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 B9D4024009; Mon, 23 Oct 2017 10:38:50 -0400 (EDT) From: Thomas Monjalon To: Santosh Shukla Cc: dev@dpdk.org, olivier.matz@6wind.com, jerin.jacob@caviumnetworks.com, hemant.agrawal@nxp.com Date: Mon, 23 Oct 2017 16:38:49 +0200 Message-ID: <2396905.arYyD11egs@xps> In-Reply-To: <20171016134247.5431-2-santosh.shukla@caviumnetworks.com> References: <20171016134247.5431-1-santosh.shukla@caviumnetworks.com> <20171016134247.5431-2-santosh.shukla@caviumnetworks.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v1 2/2] event/octeontx: bump library 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: , X-List-Received-Date: Mon, 23 Oct 2017 14:38:51 -0000 This change is rejected because this PMD has no API/ABI. 16/10/2017 15:42, Santosh Shukla: > This commit bumps the library version to reflect the ABI change > caused by removing the below function from event/octeontx: > * octeontx_ssovf_info > * octeontx_ssovf_bar > * octeontx_ssovf_mbox_send > > And moved to mempool/octeontx area. > > Signed-off-by: Santosh Shukla > --- > doc/guides/rel_notes/release_17_11.rst | 1 + > drivers/event/octeontx/Makefile | 2 +- > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/doc/guides/rel_notes/release_17_11.rst b/doc/guides/rel_notes/release_17_11.rst > index 8db35f5e4..eac2f677a 100644 > --- a/doc/guides/rel_notes/release_17_11.rst > +++ b/doc/guides/rel_notes/release_17_11.rst > @@ -377,6 +377,7 @@ The libraries prepended with a plus sign were incremented in this version. > librte_table.so.2 > librte_timer.so.1 > librte_vhost.so.3 > + librte_pmd_octeontx_ssovf.so.2 > > > Tested Platforms > diff --git a/drivers/event/octeontx/Makefile b/drivers/event/octeontx/Makefile > index 50434a384..08fc16775 100644 > --- a/drivers/event/octeontx/Makefile > +++ b/drivers/event/octeontx/Makefile > @@ -42,7 +42,7 @@ CFLAGS += -I$(RTE_SDK)/drivers/mempool/octeontx/ > > EXPORT_MAP := rte_pmd_octeontx_ssovf_version.map > > -LIBABIVER := 1 > +LIBABIVER := 2 > > # > # all source are stored in SRCS-y >