From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
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 <dev@dpdk.org>; Mon, 20 Jul 2015 02:13:55 +0200 (CEST)
Received: by wgav7 with SMTP id v7so53338005wga.2
 for <dev@dpdk.org>; Sun, 19 Jul 2015 17:13:55 -0700 (PDT)
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:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=M1S1JopBVO1dE6Aid8G2RBEpI7R6z0aQR/FmzeiTjWs=;
 b=V/WLwQtwWlYyess6k1Em5kV6na5uu0vxlMqmq50bxMNYM/z7AtgcymCRmgB2Ux+Kta
 1kkqaMs8TrvhNdfYkI59Np0S/jNdwtvLjQ8Kq1DtPccPxpyOM4fq1H/eMnu7o9rnozCK
 ZiGYlvHDaJxqLY5RUfO5jnWj033XdvY5JZ+Aec/yw0q7qrlzz5HtPsZ1kBdgBpuWMGQS
 9rBZ0sPKs5COAF6O7tdYdk64127xdxQxG6eC/e58HsvAd4cFBN3+0VL87HzbQLjMQ9hD
 Ya95J7ahusCDOt49CB55yqnrHFGv5cDQam/UuPOvbnflxsKWtzMEa/CaLOoHoELxep9a
 CeSg==
X-Gm-Message-State: ALoCoQlBcRpraj4TB7yO0AfsnUBH+jASUyK4oLlNIk2we56uae8qa8F2y9avuuXvJIk5J7K+DVCw
X-Received: by 10.180.83.135 with SMTP id q7mr16114813wiy.17.1437351235575;
 Sun, 19 Jul 2015 17:13:55 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by smtp.gmail.com with ESMTPSA id fb3sm9109921wib.21.2015.07.19.17.13.54
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Sun, 19 Jul 2015 17:13:54 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Konstantin Ananyev <konstantin.ananyev@intel.com>
Date: Mon, 20 Jul 2015 02:12:44 +0200
Message-ID: <75650672.oz3MCLWxkx@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; )
In-Reply-To: <1434633528-23329-2-git-send-email-konstantin.ananyev@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>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 20 Jul 2015 00:13:56 -0000

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'