From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 1/2] eventdev: fix port id argument in Rx adapter caps API Date: Mon, 17 Sep 2018 19:44:32 +0530 Message-ID: <20180917141430.GA10158@jerin> References: <1536150078-89772-1-git-send-email-nikhil.rao@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, stable@dpdk.org To: Nikhil Rao Return-path: Content-Disposition: inline In-Reply-To: <1536150078-89772-1-git-send-email-nikhil.rao@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Wed, 5 Sep 2018 17:51:17 +0530 > From: Nikhil Rao > To: jerin.jacob@caviumnetworks.com > CC: dev@dpdk.org, Nikhil Rao , stable@dpdk.org > Subject: [PATCH 1/2] eventdev: fix port id argument in Rx adapter caps API > X-Mailer: git-send-email 1.8.3.1 > > > Make the ethernet port id passed into > rte_event_eth_rx_adapter_caps_get() 16 bit. > > Fixes: c2189c907dd1 ("eventdev: make ethdev port identifiers 16-bit") > Cc: stable@dpdk.org > Signed-off-by: Nikhil Rao > --- > lib/librte_eventdev/Makefile | 2 +- > lib/librte_eventdev/rte_eventdev.c | 2 +- > lib/librte_eventdev/rte_eventdev.h | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/lib/librte_eventdev/Makefile b/lib/librte_eventdev/Makefile > index 47f599a..ce800ea 100644 > --- a/lib/librte_eventdev/Makefile > +++ b/lib/librte_eventdev/Makefile > @@ -8,7 +8,7 @@ include $(RTE_SDK)/mk/rte.vars.mk > LIB = librte_eventdev.a > > # library version > -LIBABIVER := 5 > +LIBABIVER := 6 Please update the # API Changes # Shared Library Versions in the doc/guides/rel_notes/release_18_11.rst file. Since Rx adapter is still experimental, IMO, We don't need deprecation notice. Please squash 2/2 changes in this patch as it can create warning on type mismatch. With above change: Acked-by: Jerin Jacob