From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f182.google.com (mail-wr0-f182.google.com [209.85.128.182]) by dpdk.org (Postfix) with ESMTP id 3CC867CA9 for ; Fri, 7 Jul 2017 02:10:13 +0200 (CEST) Received: by mail-wr0-f182.google.com with SMTP id r103so24425575wrb.0 for ; Thu, 06 Jul 2017 17:10:13 -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:in-reply-to:references :in-reply-to:references; bh=iLXW7hJ0IvGs4dYIY6/kK8tSaCZw1z2oqpHKc3sr7is=; b=oUyo0d1URQZnBI1W9r79THd33+Miu7ya8TsGwFRQ9fsQp+SiRFYRvWDFye43SsstKw EnS8T748q8+AQLA5Doa/ih0e3BIsgIYbWdVpqtHwvmYQs5vj5jaMn3m0TIoMv9fL+pwg agBRZQWXt5BuQ9XhyPeGdYTyOKzqm9Fylta/eE01eYuNKq0NNHbFHQ4mbOdTL2j3zP/I TAOHDwzXawXY79LPjbvQmalaeb9wX+FCtZnQfzh8uNPJSdfm6y4yXnApgFk5JYbB4xO2 I9WzDW3CqUZxsfpgVj2eneqMouG1rBkd/ujCWMAAsb3U9hJRROF9zABqBMqd5w5C8tFY EQZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=iLXW7hJ0IvGs4dYIY6/kK8tSaCZw1z2oqpHKc3sr7is=; b=KxeAj5rUVxfOPtz/31nUS39oQIv+iFe0wLV5dwlAuCmb40vSJtWd8a7QepcFd9wmFF pGTeLJom0WMt/xbkI8BcpCeShYDiok2kIDmD2NWuk5XeZVu3nkVdTZD6Jxad5rmVhME7 PbUspCOwb8pxf3+mlx29+9VItt3vBnCrFDENVy/DbM55w+XaSjbYr5FkCbXiw8izXF+z BdBJORRqyUzZd6Zjh8Zczf6L+HzeFnPd9zMdGTq7RUw2d905SOflgTBx/jrWzEu4YLAa qp8lt0ZT7Y36vORoZyW9taqQA/i8w9QXwPJ9dWk5c7uMqXmGKkAKgp7vRNIHmFQxDoum g8yQ== X-Gm-Message-State: AIVw1109T3RDnWY0DPoda9/A/3S/VxwLIuGQ9E9N92+Q3YR4wC45pwbe 0+HFVmD2h0L35FxJ8GQ= X-Received: by 10.28.143.206 with SMTP id r197mr298319wmd.69.1499386212614; Thu, 06 Jul 2017 17:10:12 -0700 (PDT) Received: from bidouze.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id f45sm2391166wrf.2.2017.07.06.17.10.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 06 Jul 2017 17:10:11 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Fri, 7 Jul 2017 02:09:23 +0200 Message-Id: <7b6bb6c52ea28eb3cbd1a019265c0fe3d8654b5e.1499385282.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v6 13/22] ethdev: count devices consistently X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Jul 2017 00:10:13 -0000 Make the rte_eth_dev_count() return the number of available devices even after some are detached by the hotplug API or put in a deferred state. Signed-off-by: Gaetan Rivet --- lib/librte_ether/rte_ethdev.c | 16 +++++++++------- lib/librte_ether/rte_ethdev.h | 13 ++++++------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 0377b97..012950a 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -72,7 +72,6 @@ static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data"; struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS]; static struct rte_eth_dev_data *rte_eth_dev_data; static uint8_t eth_dev_last_created_port; -static uint8_t nb_ports; /* spinlock for eth device callbacks */ static rte_spinlock_t rte_eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER; @@ -210,7 +209,6 @@ eth_dev_get(uint8_t port_id) TAILQ_INIT(&(eth_dev->link_intr_cbs)); eth_dev_last_created_port = port_id; - nb_ports++; return eth_dev; } @@ -283,7 +281,6 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) return -EINVAL; eth_dev->state = RTE_ETH_DEV_UNUSED; - nb_ports--; return 0; } @@ -308,7 +305,15 @@ rte_eth_dev_socket_id(uint8_t port_id) uint8_t rte_eth_dev_count(void) { - return nb_ports; + uint8_t p; + uint8_t count; + + count = 0; + + RTE_ETH_FOREACH_DEV(p) + count++; + + return count; } int @@ -341,9 +346,6 @@ rte_eth_dev_get_port_by_name(const char *name, uint8_t *port_id) return -EINVAL; } - if (!nb_ports) - return -ENODEV; - RTE_ETH_FOREACH_DEV(i) { if (!rte_eth_devices[i].device) continue; diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index 4b485f7..abac320 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -1724,13 +1724,12 @@ uint8_t rte_eth_find_next(uint8_t port_id); /** * Get the total number of Ethernet devices that have been successfully - * initialized by the [matching] Ethernet driver during the PCI probing phase. - * All devices whose port identifier is in the range - * [0, rte_eth_dev_count() - 1] can be operated on by network applications - * immediately after invoking rte_eal_init(). - * If the application unplugs a port using hotplug function, The enabled port - * numbers may be noncontiguous. In the case, the applications need to manage - * enabled port by using the ``RTE_ETH_FOREACH_DEV()`` macro. + * initialized by the matching Ethernet driver during the PCI probing phase + * and that are available for applications to use. These devices must be + * accessed by using the ``RTE_ETH_FOREACH_DEV()`` macro to deal with + * non-contiguous ranges of devices. + * These non-contiguous ranges can be created by calls to hotplug functions or + * by some PMDs. * * @return * - The total number of usable Ethernet devices. -- 2.1.4