From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v11 08/18] lib: add symbol versioning to distributor Date: Mon, 27 Mar 2017 15:02:57 +0200 Message-ID: <1955761.tFH3Sr4yC9@xps13> References: <1489558767-56329-2-git-send-email-david.hunt@intel.com> <1490004522-183515-1-git-send-email-david.hunt@intel.com> <1490004522-183515-9-git-send-email-david.hunt@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, bruce.richardson@intel.com To: David Hunt Return-path: Received: from mail-wr0-f175.google.com (mail-wr0-f175.google.com [209.85.128.175]) by dpdk.org (Postfix) with ESMTP id E9BAAFAEB for ; Mon, 27 Mar 2017 15:02:58 +0200 (CEST) Received: by mail-wr0-f175.google.com with SMTP id l43so55821788wre.1 for ; Mon, 27 Mar 2017 06:02:58 -0700 (PDT) In-Reply-To: <1490004522-183515-9-git-send-email-david.hunt@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" 2017-03-20 10:08, David Hunt: > Also bumped up the ABI version number in the Makefile It would be good to explain the intent of versioning here. > Signed-off-by: David Hunt > Acked-by: Bruce Richardson > --- > lib/librte_distributor/Makefile | 2 +- > lib/librte_distributor/rte_distributor.c | 57 +++++++++++--- > lib/librte_distributor/rte_distributor_v1705.h | 89 ++++++++++++++++++++++ > lib/librte_distributor/rte_distributor_v20.c | 10 +++ > lib/librte_distributor/rte_distributor_version.map | 14 ++++ > 5 files changed, 162 insertions(+), 10 deletions(-) > create mode 100644 lib/librte_distributor/rte_distributor_v1705.h > > diff --git a/lib/librte_distributor/Makefile b/lib/librte_distributor/Makefile > index 2b28eff..2f05cf3 100644 > --- a/lib/librte_distributor/Makefile > +++ b/lib/librte_distributor/Makefile > @@ -39,7 +39,7 @@ CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) > > EXPORT_MAP := rte_distributor_version.map > > -LIBABIVER := 1 > +LIBABIVER := 2 Why keeping ABI compat if you bump ABIVER? I guess you do not really want to bump now.