From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id D0E4FCB78 for ; Thu, 16 Jun 2016 21:14:53 +0200 (CEST) Received: by mail-wm0-f41.google.com with SMTP id a66so71480265wme.0 for ; Thu, 16 Jun 2016 12:14:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=KHSelxh6O7zK+AW87v/WYarkV1YgkJtU4v5wYHXPupU=; b=fcBdomNH7c526MldNY60djuxJu8PXxlONSszZyfoL/Gdu6g5oMbrqJvfBf6/cRiUL+ xh3YmkBpl+skRiRum76Pa3h4LByqfEBVzt9X7fSsc4iN6Ryc9uYlBZZ6hObuuI6S4gNS OSEDChAuI+cC5Mee/Co/uD4wOyiVfA914bkFfsFPcG6hNefWqWfvNBheJoDzcktm+Ke+ 1PXaIbDpnDdsRI8uSCujcBJPHTIay9MPNn7sSccirt7lzv2X8RU0MgenC2d2Y2v9HmQ0 qXh374Dlzj747DehQ6TxXS/CUPpReFax7S+e7ReDwyq1Ee3JdTaX/HFp+gew/MdP6Aop xIWQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=KHSelxh6O7zK+AW87v/WYarkV1YgkJtU4v5wYHXPupU=; b=ZRgk2LCq4eFujGvjBawbTfEDAK8l3U1gpb4jtDjBPK0UWMwyi9XHafTITjwP+MOnUR kPywC4N5ZBIzW5iV2CL1PxsI21kCsWREnoQWgq78MBeaqeX5cyMnL6JvFu9IibkSYG4V 22HCcbAb7UhW1ATjz1mh/f7aAjfNnG0Q8K25zyG7pKw9m0CDid/OTlcLmJ1wail5OVip 9hor4FBTjZsF6RTNqqbHf9dkZsYRaUi9YXagn6ESuq8E9kwwGSfVJC7eIhoTaErgUJfi D07OMkYyeCSQodRecoGFDlDYuK6BBlvSc6T/OzrjGgmXcxwAibfciQwAtcVdGAf7bC7U iokQ== X-Gm-Message-State: ALyK8tICRNfurjPXRrP5v75MhP0CyRNvvSo4d7xLO+w+fxJgNUdCHugnEsaGHgTNMaHCQuzq X-Received: by 10.194.107.10 with SMTP id gy10mr1090583wjb.14.1466104493476; Thu, 16 Jun 2016 12:14:53 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id vv1sm45068958wjc.34.2016.06.16.12.14.52 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 16 Jun 2016 12:14:52 -0700 (PDT) From: Thomas Monjalon To: Reshma Pattan Cc: dev@dpdk.org Date: Thu, 16 Jun 2016 21:14:51 +0200 Message-ID: <3415398.LdzlOjgr2l@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1465999584-6343-4-git-send-email-reshma.pattan@intel.com> References: <1465897108-26548-1-git-send-email-reshma.pattan@intel.com> <1465999584-6343-1-git-send-email-reshma.pattan@intel.com> <1465999584-6343-4-git-send-email-reshma.pattan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v10 3/7] ethdev: add new fields to ethdev info struct 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: Thu, 16 Jun 2016 19:14:54 -0000 2016-06-15 15:06, Reshma Pattan: > The new fields nb_rx_queues and nb_tx_queues are added to the > rte_eth_dev_info structure. > Changes to API rte_eth_dev_info_get() are done to update these new fields > to the rte_eth_dev_info object. The ABI is changed, not the API. > Release notes is updated with the changes. [...] > --- a/lib/librte_ether/rte_ether_version.map > +++ b/lib/librte_ether/rte_ether_version.map > @@ -137,4 +137,5 @@ DPDK_16.07 { > global: > > rte_eth_add_first_rx_callback; > + rte_eth_dev_info_get; > } DPDK_16.04; Why duplicating this symbol in 16.07? The ABI is broken anyway.