From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com [209.85.192.175]) by dpdk.org (Postfix) with ESMTP id F1A6B5A58 for ; Wed, 8 Jul 2015 18:11:49 +0200 (CEST) Received: by pdrg1 with SMTP id g1so16627135pdr.2 for ; Wed, 08 Jul 2015 09:11:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=WI0V8Bt2ujV3u9ShQjGmIPpyg/5eEyRsoVMnCx+6XN0=; b=by7ErHTve2hWwxblMuvMSj0d4tC9lXt/jbISaHrr1VPb7j+vIHN7+LexaC42xx9Gh3 XwFR+wSYCHM9nVeTIickdLLcQQhyh/HI8L7v8HepEmYEXVEUBxzVZ1CxhnImzXdWp7sD 99QzC8sIZ/KMItiFooVGsF493II4o2ZEMswHypNaY8V4tRPBsdwKmUzH787gW0Ce55uv A3yRSXj52qIDD6ko4gacTbK8jWv1Ab6rs0SLzNynAbrGjlt6lHYZdyvpZms5yA45+FeI VZHBiB/sqxKcsEFPJQ6BP7foxbi4u3Xf4cf6EPmk+utHIEkqX23D+aV43RirByPLXs2G u5fw== X-Gm-Message-State: ALoCoQlxorVILVqpRzvKtw1QLj+SG2m6L7x5QKaSZFAD+XfkX7ydLS2MSsYAg0cVQSXqTCx2yhDO X-Received: by 10.70.50.199 with SMTP id e7mr22360805pdo.124.1436371909394; Wed, 08 Jul 2015 09:11:49 -0700 (PDT) Received: from urahara (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by smtp.gmail.com with ESMTPSA id bf5sm2981933pad.43.2015.07.08.09.11.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Jul 2015 09:11:49 -0700 (PDT) Date: Wed, 8 Jul 2015 09:11:59 -0700 From: Stephen Hemminger To: Thomas Monjalon Message-ID: <20150708091159.78e2998a@urahara> In-Reply-To: References: <1436314095-21574-1-git-send-email-stephen@networkplumber.org> <1436314095-21574-2-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "dev@dpdk.org" , Stephen Hemminger Subject: Re: [dpdk-dev] [PATCH 1/4] eal: provide functions to access PCI config X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jul 2015 16:11:50 -0000 On Wed, 8 Jul 2015 15:04:16 +0000 Thomas Monjalon wrote: > 2015-07-07 17:08, Stephen Hemminger: > > --- a/lib/librte_eal/linuxapp/eal/rte_eal_version.map > > +++ b/lib/librte_eal/linuxapp/eal/rte_eal_version.map > > @@ -98,3 +98,8 @@ DPDK_2.0 { > > > > local: *; > > }; > > + > > +DPDK_2.1 { > > + rte_eal_pci_read_config; > > + rte_eal_pci_write_config; > > +}; > > DPDK_2.0 is missing to make 2.1 node inheriting from 2.0 one. Do you mean that it is ok to add functions but keep same ABI version?