From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCHv2 1/5] ethdev: add new API to retrieve RX/TX queue information Date: Mon, 20 Jul 2015 02:12:44 +0200 Message-ID: <75650672.oz3MCLWxkx@xps13> 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> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Konstantin Ananyev Return-path: Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id B43BCDE0 for ; Mon, 20 Jul 2015 02:13:55 +0200 (CEST) Received: by wgav7 with SMTP id v7so53338005wga.2 for ; Sun, 19 Jul 2015 17:13:55 -0700 (PDT) In-Reply-To: <1434633528-23329-2-git-send-email-konstantin.ananyev@intel.com> 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" 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) > +{ These new functions are not declared in the .map file. 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'