From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f195.google.com (mail-wr0-f195.google.com [209.85.128.195]) by dpdk.org (Postfix) with ESMTP id 2A4811B638 for ; Sun, 15 Apr 2018 17:08:27 +0200 (CEST) Received: by mail-wr0-f195.google.com with SMTP id d1so19285402wrj.13 for ; Sun, 15 Apr 2018 08:08:27 -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=/eyQ2v0oXHedW7lyFQR0H1RCpUBqJoevhVBtnUxXgNY=; b=teLTexzwS1p6drqzgrrdMHJi6NF6yk83DR4lEnJUVCisnbyHCWk855X27rTV+ZdlzZ vKbZgZZDfJQINhlDuPXaZ/1n6eiF8nDB+hcMZDH1cHmNENEDBDiHhXSrnXTbmIO9oX0J FD8kaDVSmkeMdudWCihBiKgFRMHTg3kDG47NqsraoKKsiVc0XgJcVzD5WKHvirnSTSSq eby0xeoQfTFpSd/GWRJsd/iYmq8KmTU+esFL7YsF5qfiLS/v9KPMTrrTQ4tvPyDJdkrN GwSFLRQD3BBAcuS8+mGAHX/danBdwJMWg3CaCWm/JE/e0wzy5GBsPMnofykMPqGVSfS2 Bu3A== 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=/eyQ2v0oXHedW7lyFQR0H1RCpUBqJoevhVBtnUxXgNY=; b=iqHWFg01MxAebc91D9fdKuCZzawFv3ddp7XTfM6jqk7AeEgMSmPHSqfHPZq0PahEy5 xbH+KIeZ+vptob7AIFl9pVfw1wTzYPip6aN9PrTawoTKurzeveJQKwj/n7wOabJG4qpk PjIYkYJPT9oBAL7KxL7mx8Pzhz4CvedNwE2iecU8iQj4XBH3Tx4vBstbynitNBlLoAo/ tDCpoXe1DbRC6xAAGW3AYKhC0TMTlsxj++65cc8WqzRUHE5LAl+jHgjAF4u5cRPJ8QAE itpbIaYxToLIygoheNR0CPG+vnhb5tS5MuVxxSsf2dH+eIkpggOODak1ptETwqYAAhdd 6WlA== X-Gm-Message-State: ALQs6tDN4X0u72EKB0ev7tyYJfvlFdoUCtlMfP37LKbbjvxkck7hQnjs 1lejiSIF31gHb4AHbA2C8mt8c2Xb X-Google-Smtp-Source: AIpwx48fN4cHHalBRIbJ7kx1QJ2HeBtvOaRSCsddtdirw4nfVTGEcYyOkBEWie0ifrCS9GYGPLgceg== X-Received: by 10.28.148.129 with SMTP id w123mr8254894wmd.116.1523804906496; Sun, 15 Apr 2018 08:08:26 -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 r200sm13673438wmb.39.2018.04.15.08.08.25 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 15 Apr 2018 08:08:25 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet , stable@dpdk.org Date: Sun, 15 Apr 2018 17:07:42 +0200 Message-Id: <3ce2ac5f882d8a0730419f6b872d77068323b676.1523804657.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v7 13/22] bus/pci: fix find device implementation 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: Sun, 15 Apr 2018 15:08:27 -0000 If start is set, and a device before it matches the data passed for comparison, then this first device is returned. This induces potentially infinite loops. Fixes: c7fe1eea8a74 ("bus: simplify finding starting point") Cc: stable@dpdk.org Signed-off-by: Gaetan Rivet --- drivers/bus/pci/pci_common.c | 21 ++++++++++++--------- drivers/bus/pci/rte_bus_pci.h | 3 +++ 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/drivers/bus/pci/pci_common.c b/drivers/bus/pci/pci_common.c index 2a00f365a..2c45f8151 100644 --- a/drivers/bus/pci/pci_common.c +++ b/drivers/bus/pci/pci_common.c @@ -459,17 +459,20 @@ static struct rte_device * pci_find_device(const struct rte_device *start, rte_dev_cmp_t cmp, const void *data) { - struct rte_pci_device *dev; + const struct rte_pci_device *pstart; + struct rte_pci_device *pdev; - FOREACH_DEVICE_ON_PCIBUS(dev) { - if (start && &dev->device == start) { - start = NULL; /* starting point found */ - continue; - } - if (cmp(&dev->device, data) == 0) - return &dev->device; + if (start != NULL) { + pstart = RTE_DEV_TO_PCI_CONST(start); + pdev = TAILQ_NEXT(pstart, next); + } else { + pdev = TAILQ_FIRST(&rte_pci_bus.device_list); + } + while (pdev != NULL) { + if (cmp(&pdev->device, data) == 0) + return &pdev->device; + pdev = TAILQ_NEXT(pdev, next); } - return NULL; } diff --git a/drivers/bus/pci/rte_bus_pci.h b/drivers/bus/pci/rte_bus_pci.h index 357afb912..458e6d076 100644 --- a/drivers/bus/pci/rte_bus_pci.h +++ b/drivers/bus/pci/rte_bus_pci.h @@ -74,6 +74,9 @@ struct rte_pci_device { */ #define RTE_DEV_TO_PCI(ptr) container_of(ptr, struct rte_pci_device, device) +#define RTE_DEV_TO_PCI_CONST(ptr) \ + container_of(ptr, const struct rte_pci_device, device) + #define RTE_ETH_DEV_TO_PCI(eth_dev) RTE_DEV_TO_PCI((eth_dev)->device) /** Any PCI device identifier (vendor, device, ...) */ -- 2.11.0