-----Original Message----- > Date: Wed, 5 Sep 2018 17:51:17 +0530 > From: Nikhil Rao <[email protected]> > To: [email protected] > CC: [email protected], Nikhil Rao <[email protected]>, [email protected] > 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: [email protected] > Signed-off-by: Nikhil Rao <[email protected]> > --- > 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 <[email protected]>

