[dpdk-dev] eal: bump ABI version for PCI, bus and devargs work

Message ID 1502202360-19144-1-git-send-email-gaetan.rivet@6wind.com (mailing list archive)
State Accepted, archived
Headers

Checks

Context Check Description
ci/checkpatch warning coding style issues
ci/Intel-compilation success Compilation OK

Commit Message

Gaëtan Rivet Aug. 8, 2017, 2:26 p.m. UTC
  1. PCI domain field in PCI address structure grew from 16 to 32 bits.

   From: 463ced957c3f ("pci: increase domain storage to 32 bits")

2. rte_bus structure gaining new ops.

   From: 3a8f0bc68a90 ("bus: add method to find device")
   From: 7c8810f43f6e ("bus: introduce device plug/unplug")
   From: 609eb7dde6d0 ("bus: introduce parsing functionality")
   From: 98eb4b845c1a ("bus: introduce scan policies")

3. rte_devargs structure having been mostly rewritten.

   From: f3a1188cee4a ("devargs: make device representation generic")
   From: 47828c5f3bc3 ("devargs: parse bus info")
   From: 39f403e0d5bb ("devargs: restore device type API")

Signed-off-by: Gaetan Rivet <gaetan.rivet@6wind.com>
---
 lib/librte_eal/bsdapp/eal/Makefile   | 2 +-
 lib/librte_eal/linuxapp/eal/Makefile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
  

Comments

Thomas Monjalon Aug. 8, 2017, 5:26 p.m. UTC | #1
08/08/2017 16:26, Gaetan Rivet:
> 1. PCI domain field in PCI address structure grew from 16 to 32 bits.
> 
>    From: 463ced957c3f ("pci: increase domain storage to 32 bits")
> 
> 2. rte_bus structure gaining new ops.
> 
>    From: 3a8f0bc68a90 ("bus: add method to find device")
>    From: 7c8810f43f6e ("bus: introduce device plug/unplug")
>    From: 609eb7dde6d0 ("bus: introduce parsing functionality")
>    From: 98eb4b845c1a ("bus: introduce scan policies")
> 
> 3. rte_devargs structure having been mostly rewritten.
> 
>    From: f3a1188cee4a ("devargs: make device representation generic")
>    From: 47828c5f3bc3 ("devargs: parse bus info")
>    From: 39f403e0d5bb ("devargs: restore device type API")
> 
> Signed-off-by: Gaetan Rivet <gaetan.rivet@6wind.com>

Applied and merged with release notes update, thanks
  

Patch

diff --git a/lib/librte_eal/bsdapp/eal/Makefile b/lib/librte_eal/bsdapp/eal/Makefile
index 05517a2..005019e 100644
--- a/lib/librte_eal/bsdapp/eal/Makefile
+++ b/lib/librte_eal/bsdapp/eal/Makefile
@@ -48,7 +48,7 @@  LDLIBS += -lgcc_s
 
 EXPORT_MAP := rte_eal_version.map
 
-LIBABIVER := 4
+LIBABIVER := 5
 
 # specific to bsdapp exec-env
 SRCS-$(CONFIG_RTE_EXEC_ENV_BSDAPP) := eal.c
diff --git a/lib/librte_eal/linuxapp/eal/Makefile b/lib/librte_eal/linuxapp/eal/Makefile
index e6ab6c3..90bca4d 100644
--- a/lib/librte_eal/linuxapp/eal/Makefile
+++ b/lib/librte_eal/linuxapp/eal/Makefile
@@ -37,7 +37,7 @@  ARCH_DIR ?= $(RTE_ARCH)
 EXPORT_MAP := rte_eal_version.map
 VPATH += $(RTE_SDK)/lib/librte_eal/common/arch/$(ARCH_DIR)
 
-LIBABIVER := 4
+LIBABIVER := 5
 
 VPATH += $(RTE_SDK)/lib/librte_eal/common