From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by dpdk.org (Postfix) with ESMTP id DEED41C18C for ; Fri, 13 Apr 2018 15:23:21 +0200 (CEST) Received: by mail-wm0-f68.google.com with SMTP id r82so4210810wme.0 for ; Fri, 13 Apr 2018 06:23:21 -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=mG6dpV1Vc8y4B6il2KkVWtUyMsPOx6O9XYoXxOCcbbc=; b=rlFxxiCAxnxbRSgpog8J7COvxALy4d6F1rp9CwDOP+U8ZuK8vrfC6Sl3GwBmhd6I4R fs+KN6nbkMOr0atV3ptbW1jwKLysFpG+9NMMihsRBXj55hwZ2bLgwr9QuUIiaqUQAqLd 2WxMQSGz1Sr62WrDyG5/i5K4MQeOTv+HWC2Jj7Du2pUbw1UUbSqi4cHhJ0wH09o/eCd/ ffpzCqKztOtHZhqplvvt9T9CB7c/W0NL/IXxoyRgtVUCj6bY6lZPyfDrV8QN4FIKJtqp 0fDtK/WEgC52t9Y/bxcrB6wlyNEgF/UzzOuI5KnZCiluTsbtnQIiX6I6u8gBqIIpHWbt g0jQ== 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=mG6dpV1Vc8y4B6il2KkVWtUyMsPOx6O9XYoXxOCcbbc=; b=Xd+W1g9LGl4ZW8yotkc+VZHPALFUTx5xkl7IRp29lf987Q1X0TX2BIHZjVzmD0xjfg EYFUAWk649QPBkbqG0gWGrpBNe2iV1Ek+996djB3GrBQnFpU99AZaLX7f8/ApOTa7474 zEpSa+FLKKQ1tk7Ia34cpjBWzUIJ1m4KMUqBMp8sRN8VhJVb5vVeMS/LvLvLAihVRMxw VxCCoSWBVBKXw6WxcFw7gTo0k/YM6BD3Sk3KIYZtSkPJvQquHKS1GiCN+KVECAWT72fY A2xBX95vSnmEUEqBSHIwTXNZ1wT9g0h2xWUZrl05f0Ac1cbjOjxJajvW+40GZgzGgcEX 7/wA== X-Gm-Message-State: ALQs6tAuiSF9faFTXVJFjvlVUsKB8h3KIJ1M16XvC8lkOkWvXD77ITWY FDdCtb/S+440epLb37vWZUcRFZOc X-Google-Smtp-Source: AIpwx48c1ORPXjPlwrpMYHmEABaW2ON1kYyv2nUC7mcNbldbdyHbNOn3KcBEFacOIndVgtjJEkOISQ== X-Received: by 10.28.141.85 with SMTP id p82mr3506671wmd.19.1523625801174; Fri, 13 Apr 2018 06:23:21 -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 r200sm2377244wmb.9.2018.04.13.06.23.19 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 13 Apr 2018 06:23:20 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Fri, 13 Apr 2018 15:22:34 +0200 Message-Id: X-Mailer: git-send-email 2.11.0 In-Reply-To: References: MIME-Version: 1.0 In-Reply-To: References: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v6 19/22] 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: , X-List-Received-Date: Fri, 13 Apr 2018 13:23:22 -0000 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_ether. Signed-off-by: Gaetan Rivet --- lib/librte_ether/Makefile | 1 + lib/librte_ether/eth_private.c | 31 +++++++++++++++++++++++++++++++ lib/librte_ether/eth_private.h | 26 ++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 lib/librte_ether/eth_private.c create mode 100644 lib/librte_ether/eth_private.h diff --git a/lib/librte_ether/Makefile b/lib/librte_ether/Makefile index c2f2f7d82..2fa133fbc 100644 --- a/lib/librte_ether/Makefile +++ b/lib/librte_ether/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_ether/eth_private.c b/lib/librte_ether/eth_private.c new file mode 100644 index 000000000..d565568a0 --- /dev/null +++ b/lib/librte_ether/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_ether/eth_private.h b/lib/librte_ether/eth_private.h new file mode 100644 index 000000000..0f5c6d5c4 --- /dev/null +++ b/lib/librte_ether/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_ */ -- 2.11.0