From patchwork Tue Jun 26 16:56:21 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: 41604 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 2A5221BE87; Tue, 26 Jun 2018 18:57:36 +0200 (CEST) Received: from mail-wm0-f47.google.com (mail-wm0-f47.google.com [74.125.82.47]) by dpdk.org (Postfix) with ESMTP id 4B7F61BDFE for ; Tue, 26 Jun 2018 18:57:16 +0200 (CEST) Received: by mail-wm0-f47.google.com with SMTP id x6-v6so2745959wmc.3 for ; Tue, 26 Jun 2018 09:57:16 -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:in-reply-to:references:content-transfer-encoding; bh=lUsn9elOsx36tiyiVi1gKRkyWM8pEbQruUHMhEz7E2Q=; b=ZHiG5u408Ca1dpgMmTaO3wgelmn2ZAvaZQBf+FhMdW14R344pZcCdc3kfCikern7It oJTvtk3821rZJ7+NJMpQTeAQxM0TygvCzZqtJ4hW16PYnOm1MSvRPGZNsRbpmJHnijbu vKB9nhAI7Z+5dA5TcARbrtEQu8JmSDnHeCez0DXaJX097E7KPjqsqarItJp39Dovpr8k L7AWGjfJTIxFdPPR0a/tN1J5uyf7Ww/0fUElcR7fGbLQGeQYXO5YqJhEdOSdayd1K+Yh kZWNTkpz1hyz7WalZvpuqzrcNb1eCrwrc7GEMusVcN+yF0l9CGobdmCcxtE570NQcCJc 3f1w== 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:in-reply-to:references :content-transfer-encoding; bh=lUsn9elOsx36tiyiVi1gKRkyWM8pEbQruUHMhEz7E2Q=; b=jiqYJoaI/DbxLiVSmJHy4T5LY7wHTRSuQrk2ohXDWD8Dwy6GoFUaW7oCgW12ZG8To0 H2yev0K5r8Dv5L+UeldUnvW8t3MiTiX5CL0LmXIe197D7s8nvVq+3GUY5r6OZIed4Hab GIfc+q28G+JH+xL1DdH6Qozy9PvS/eXtxlZZuD0Gs2ClpgUJJGS/AD5qtUxeM37g0HXJ Oh0qSrq4Obpmqy2FB/iDx0JjH0YaxWIL2xZsM8g4jaZYGaIvl+5Xj3HoHU4KvmZGDy0V TnLXtT6YkRTX6Ob0uOGXJWxvTwSgMPoK3+Xcg8+kFh/eG/38iefrzJSHAUMJBCpP01R8 2kEA== X-Gm-Message-State: APt69E3yY5R1S6OZbCLqqMEZINr4SsAZzOvWph7a9c7rnHK/V8ZZWdg/ MYNhAK65s+SaZgmRrezUgqJF4CTG X-Google-Smtp-Source: AAOMgpdPtwOOXinrs87CQXj6P/Wjw0e9FCUONpnDagRfRI1+5yieBC1O49rNM4v4AxRDok1F8M1iUA== X-Received: by 2002:a1c:d004:: with SMTP id h4-v6mr2212655wmg.151.1530032235528; Tue, 26 Jun 2018 09:57:15 -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 p5-v6sm2680880wre.83.2018.06.26.09.57.13 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 26 Jun 2018 09:57:13 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Tue, 26 Jun 2018 18:56:21 +0200 Message-Id: <025c636181f114d302cce9f00819c9a03098de0b.1530031921.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: MIME-Version: 1.0 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v8 18/21] 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 ++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) 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_ */