From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gaetan Rivet Subject: [PATCH] eal: bump ABI version for PCI, bus and devargs work Date: Tue, 8 Aug 2017 16:26:00 +0200 Message-ID: <1502202360-19144-1-git-send-email-gaetan.rivet@6wind.com> Cc: Gaetan Rivet To: dev@dpdk.org Return-path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id 2654C11D4 for ; Tue, 8 Aug 2017 16:26:15 +0200 (CEST) Received: by mail-wr0-f180.google.com with SMTP id 33so13590966wrz.4 for ; Tue, 08 Aug 2017 07:26:15 -0700 (PDT) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- lib/librte_eal/bsdapp/eal/Makefile | 2 +- lib/librte_eal/linuxapp/eal/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.1.4