From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Ananyev, Konstantin" Subject: Re: [PATCHv2 1/5] ethdev: add new API to retrieve RX/TX queue information Date: Mon, 20 Jul 2015 09:52:35 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836A26FE1@irsmsx105.ger.corp.intel.com> References: <1434560084-21237-2-git-send-email-konstantin.ananyev@intel.com> <1434633528-23329-1-git-send-email-konstantin.ananyev@intel.com> <1434633528-23329-2-git-send-email-konstantin.ananyev@intel.com> <75650672.oz3MCLWxkx@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "dev@dpdk.org" To: Thomas Monjalon Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 6ADC4C336 for ; Mon, 20 Jul 2015 11:52:39 +0200 (CEST) In-Reply-To: <75650672.oz3MCLWxkx@xps13> Content-Language: en-US List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com] > Sent: Monday, July 20, 2015 1:13 AM > To: Ananyev, Konstantin > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCHv2 1/5] ethdev: add new API to retrieve RX/= TX queue information >=20 > 2015-06-18 14:18, Konstantin Ananyev: > > new functions: > > rte_eth_rx_queue_info_get > > rte_eth_tx_queue_info_get > > > > into rte_etdev API. > [...] > > lib/librte_ether/rte_ethdev.c | 54 ++++++++++++++++++++++++++++++ > > lib/librte_ether/rte_ethdev.h | 77 +++++++++++++++++++++++++++++++++++= +++++++- > > 2 files changed, 130 insertions(+), 1 deletion(-) > [...] > > int > > +rte_eth_rx_queue_info_get(uint8_t port_id, uint16_t queue_id, > > + struct rte_eth_rxq_info *qinfo) > > +{ > [...] > > +int > > +rte_eth_tx_queue_info_get(uint8_t port_id, uint16_t queue_id, > > + struct rte_eth_txq_info *qinfo) > > +{ >=20 > These new functions are not declared in the .map file. >=20 > config.o: In function `rx_queue_infos_display': > config.c:(.text+0x11e): undefined reference to `rte_eth_rx_queue_info_get= ' > config.o: In function `tx_queue_infos_display': > config.c:(.text+0x2be): undefined reference to `rte_eth_tx_queue_info_get= ' Ah yes, lost it somewhere between re-versioning. Will re-send v3. Thanks Konstantin