From patchwork Wed Jul 11 21:45:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Ga=C3=ABtan_Rivet?= X-Patchwork-Id: 42910 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3BD771B5FE; Wed, 11 Jul 2018 23:46:19 +0200 (CEST) Received: from mail-wr1-f41.google.com (mail-wr1-f41.google.com [209.85.221.41]) by dpdk.org (Postfix) with ESMTP id B8AB71B5AE for ; Wed, 11 Jul 2018 23:45:59 +0200 (CEST) Received: by mail-wr1-f41.google.com with SMTP id g6-v6so10691982wrp.0 for ; Wed, 11 Jul 2018 14:45:59 -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 :mime-version:content-transfer-encoding; bh=QULDkel2GQDzMNjd+rImHB2X8ULZyndn6CAHpB0vDoI=; b=W4vTWBdOEjmSM1P+5T1o2bycD/9ulIXJnezPrIdZbMzwcrqBD9g8DuSAU8txf2VITo ai7GX5fWPVhANtIU55XYvn9ZclXQDdl59kZa9D+ETrfpQuXJSDzHkjt8iRJHTUr6z4As I+x0eLYNGNUtxpIgXCgBcUz/t16sNPk900q5AxhJV52LyImfve5/YDjqhvXIrsUL74PW 9CQ4BbgowWtKoq+2+jKarfyTlLbDJ9U6uSJGu976Iazs5s2yPUfb5UkplQakWBX8nn8J mfRzmgy9BVYx6buUx728fyujeYRT85NWa3xt5DKt3ybNFHz3XX8ahLrOx0x0/JLY0t2M yJBg== 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:mime-version:content-transfer-encoding; bh=QULDkel2GQDzMNjd+rImHB2X8ULZyndn6CAHpB0vDoI=; b=kzA795lWY9YBC9Thb1R5CLZgG8gcroHmibjef9xvxwLLwCLPsiCPE5CVY3dmH4PS3N +ZUaqPY36LswjNOmggk5y7zmgaWln+IM1zpu+2yEf1r91rCZa/0zAhP+3GbHYwdq/QT7 FdM6Smjd4d9YyG6IzuwyKRy9BAqh5LnykIZfLgMRK52AySvWRZ65PTBVbYc3tI+B6axM AkDULtf881WisMR2VBif8z/HG+WAxmti935zue44Io6GNO4XR9zqMW/a+B9QL2DXhhBg ZzUL+FB6zX+6NR+jbHG1zAP+tfg7wbF8B+SMo1cV1aCawWAPOKYd5S77DPU1pljfTaEr egOw== X-Gm-Message-State: AOUpUlHEJMuHk2Shz3TxcnsVY78lGbBb4swUGo1kHfBnJe+vmr13Eq1J xSHrNjCKXBlcRJDn9Ohc4l8LI3kW X-Google-Smtp-Source: AAOMgpflKLnuyD2q5ebBXIKRYWl5bbJGnI66i9ETiEYeyrJaxadDAmUuiUhYO+sssT+Bq2/sbvqvfA== X-Received: by 2002:adf:8296:: with SMTP id 22-v6mr209118wrc.252.1531345559118; Wed, 11 Jul 2018 14:45:59 -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 h5-v6sm10550936wrr.19.2018.07.11.14.45.57 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 11 Jul 2018 14:45:58 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Wed, 11 Jul 2018 23:45:07 +0200 Message-Id: <8093a1aae22915c388350be63f5e8e4da0e17f65.1531345404.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: References: MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v11 17/25] ethdev: add private generic device iterator 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This iterator can be customized with a comparison function that will trigger a stopping condition. It can be leveraged to write several different iterators that have similar but non-identical purposes. It is private to librte_ethdev. Signed-off-by: Gaetan Rivet --- lib/librte_ethdev/Makefile | 1 + lib/librte_ethdev/eth_private.c | 31 +++++++++++++++++++++++++++++++ lib/librte_ethdev/eth_private.h | 26 ++++++++++++++++++++++++++ lib/librte_ethdev/meson.build | 3 ++- 4 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 lib/librte_ethdev/eth_private.c create mode 100644 lib/librte_ethdev/eth_private.h diff --git a/lib/librte_ethdev/Makefile b/lib/librte_ethdev/Makefile index c2f2f7d82..2fa133fbc 100644 --- a/lib/librte_ethdev/Makefile +++ b/lib/librte_ethdev/Makefile @@ -18,6 +18,7 @@ EXPORT_MAP := rte_ethdev_version.map LIBABIVER := 9 +SRCS-y += eth_private.c SRCS-y += rte_ethdev.c SRCS-y += rte_flow.c SRCS-y += rte_tm.c diff --git a/lib/librte_ethdev/eth_private.c b/lib/librte_ethdev/eth_private.c new file mode 100644 index 000000000..d565568a0 --- /dev/null +++ b/lib/librte_ethdev/eth_private.c @@ -0,0 +1,31 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2018 Gaëtan Rivet + */ + +#include "rte_ethdev.h" +#include "eth_private.h" + +struct rte_eth_dev * +eth_find_device(const struct rte_eth_dev *start, rte_eth_cmp_t cmp, + const void *data) +{ + struct rte_eth_dev *edev; + ptrdiff_t idx; + + /* Avoid Undefined Behaviour */ + if (start != NULL && + (start < &rte_eth_devices[0] || + start > &rte_eth_devices[RTE_MAX_ETHPORTS])) + return NULL; + if (start != NULL) + idx = start - &rte_eth_devices[0] + 1; + else + idx = 0; + for (; idx < RTE_MAX_ETHPORTS; idx++) { + edev = &rte_eth_devices[idx]; + if (cmp(edev, data) == 0) + return edev; + } + return NULL; +} + diff --git a/lib/librte_ethdev/eth_private.h b/lib/librte_ethdev/eth_private.h new file mode 100644 index 000000000..0f5c6d5c4 --- /dev/null +++ b/lib/librte_ethdev/eth_private.h @@ -0,0 +1,26 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2018 Gaëtan Rivet + */ + +#ifndef _RTE_ETH_PRIVATE_H_ +#define _RTE_ETH_PRIVATE_H_ + +#include "rte_ethdev.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* Generic rte_eth_dev comparison function. */ +typedef int (*rte_eth_cmp_t)(const struct rte_eth_dev *, const void *); + +/* Generic rte_eth_dev iterator. */ +struct rte_eth_dev * +eth_find_device(const struct rte_eth_dev *_start, rte_eth_cmp_t cmp, + const void *data); + +#ifdef __cplusplus +} +#endif + +#endif /* _RTE_ETH_PRIVATE_H_ */ diff --git a/lib/librte_ethdev/meson.build b/lib/librte_ethdev/meson.build index aed5d2265..a0c001847 100644 --- a/lib/librte_ethdev/meson.build +++ b/lib/librte_ethdev/meson.build @@ -4,7 +4,8 @@ name = 'ethdev' version = 9 allow_experimental_apis = true -sources = files('ethdev_profile.c', +sources = files('eth_private.c', + 'ethdev_profile.c', 'rte_ethdev.c', 'rte_flow.c', 'rte_mtr.c',