From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP; 20 Jul 2015 02:52:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,507,1432623600"; d="scan'208";a="527055562" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by FMSMGA003.fm.intel.com with ESMTP; 20 Jul 2015 02:52:37 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.245]) by IRSMSX152.ger.corp.intel.com ([169.254.6.90]) with mapi id 14.03.0224.002; Mon, 20 Jul 2015 10:52:36 +0100 From: "Ananyev, Konstantin" To: Thomas Monjalon Thread-Topic: [dpdk-dev] [PATCHv2 1/5] ethdev: add new API to retrieve RX/TX queue information Thread-Index: AQHQqcljC+kPrIpwtk6aiWDQ5Auzb53jnUMAgACybyA= 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> In-Reply-To: <75650672.oz3MCLWxkx@xps13> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCHv2 1/5] ethdev: add new API to retrieve RX/TX queue information 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: Mon, 20 Jul 2015 09:52:39 -0000 > -----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