From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f196.google.com (mail-wr0-f196.google.com [209.85.128.196]) by dpdk.org (Postfix) with ESMTP id 3DB25AAB7 for ; Wed, 21 Mar 2018 18:16:20 +0100 (CET) Received: by mail-wr0-f196.google.com with SMTP id o8so5978679wra.1 for ; Wed, 21 Mar 2018 10:16:20 -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=vO2egf56tXiU3R1+MdEfwuxS9b3rVASYa1mJpoxydYE=; b=WZwK62msItKhOsB4zzQaCHzKxp/2XQKXNg5TBOCz0ORBCVqbyGiZVQGMtvOJAsS8Zi ZGj0sqgadThy07cyfJjRibOTelXxbaUyiGNNJH53TdV9qk7J3+1oB0GctQGyI7YGEUuI Srz+jlaAYAcVRsNpwsL6y1Vh7P4iR0oGdn1gT85iBf+a6/HKIvuZGun3/H5mO+VwrWiP pPt9fChXkxcmErXXvt+CIbtXocz8AJ1lM/bGpph6KygpysHCDgxbnJIT01hcdNhcicPH tyaBPKIjN0JSpTF5xiX52bgjDTLmezYEdh8QmYq1wIVYLd8cTUHd1AhDqgUkJS8T6Weg VgRA== 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=vO2egf56tXiU3R1+MdEfwuxS9b3rVASYa1mJpoxydYE=; b=caqaEwCq4d1pLmf0TseneZEb3wUc6WqyyFtH7Gozrn3x8txhsjUjelT8axEpH4B87O dVHySQLQdCuuW65Vg9CwBUxKsaznOfxOyRfWQedjDzC/0rLKWMNIYAGZQwpVeX1RulHx 5XRJg7In0s2UI/9suOzqpW7hP9f/51Xip5clLcKhujzQy59q/rcwQyjc/pDDyJq4larl InYR5HJd5Vye/bSjRmbnVE2jhUOJO5N2G5MVzeyFI5Z1deBd49oh9YaJdQNTxzykLus4 LP3Xpv0e86e0+W3/MXAqLzTV6Yae9UhQkQFRqXFSxHW26KSsXeuv8IP3YSdC3u+O2NF7 dtXg== X-Gm-Message-State: AElRT7FrLTIhq2oTROuoSOt7TRNBWAy0SIWkFqkTLOG1ow1X9/JQW+0R l1lzF0brEtmD8psKis+XekHl89EC X-Google-Smtp-Source: AG47ELt9iDmifJzGbTnNrU9IBuQ93vyuBilb5I9MZYMYndBZa58HYSpGeoJ2yKwSNa39uRGoOmgJ2Q== X-Received: by 10.223.224.130 with SMTP id c2mr16405374wri.220.1521652579308; Wed, 21 Mar 2018 10:16:19 -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 l10sm4224101wrf.37.2018.03.21.10.16.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 21 Mar 2018 10:16:18 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Wed, 21 Mar 2018 18:15:37 +0100 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 v2 16/18] ethdev: register ether layer as a class 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: Wed, 21 Mar 2018 17:16:20 -0000 Signed-off-by: Gaetan Rivet --- lib/Makefile | 2 +- lib/librte_ether/Makefile | 3 +- lib/librte_ether/rte_class_eth.c | 65 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 2 deletions(-) create mode 100644 lib/librte_ether/rte_class_eth.c diff --git a/lib/Makefile b/lib/Makefile index ec965a606..6bb6a8bed 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -20,7 +20,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += librte_cmdline DEPDIRS-librte_cmdline := librte_eal DIRS-$(CONFIG_RTE_LIBRTE_ETHER) += librte_ether DEPDIRS-librte_ether := librte_net librte_eal librte_mempool librte_ring -DEPDIRS-librte_ether += librte_mbuf +DEPDIRS-librte_ether += librte_mbuf librte_kvargs DIRS-$(CONFIG_RTE_LIBRTE_BBDEV) += librte_bbdev DEPDIRS-librte_bbdev := librte_eal librte_mempool librte_mbuf DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += librte_cryptodev diff --git a/lib/librte_ether/Makefile b/lib/librte_ether/Makefile index 3ca5782bb..a1a0393de 100644 --- a/lib/librte_ether/Makefile +++ b/lib/librte_ether/Makefile @@ -12,13 +12,14 @@ CFLAGS += -DALLOW_EXPERIMENTAL_API CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) LDLIBS += -lrte_net -lrte_eal -lrte_mempool -lrte_ring -LDLIBS += -lrte_mbuf +LDLIBS += -lrte_mbuf -lrte_kvargs EXPORT_MAP := rte_ethdev_version.map LIBABIVER := 8 SRCS-y += rte_ethdev.c +SRCS-y += rte_class_eth.c SRCS-y += rte_flow.c SRCS-y += rte_tm.c SRCS-y += rte_mtr.c diff --git a/lib/librte_ether/rte_class_eth.c b/lib/librte_ether/rte_class_eth.c new file mode 100644 index 000000000..3f1537c2a --- /dev/null +++ b/lib/librte_ether/rte_class_eth.c @@ -0,0 +1,65 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2018 Gaƫtan Rivet + */ + +#include + +#include +#include +#include +#include +#include + +#include "rte_ethdev.h" +#include "rte_ethdev_core.h" + +static int +eth_dev_match(struct rte_eth_dev *edev, + struct rte_kvargs *kvlist) +{ + (void) kvlist; + (void) edev; + return 0; +} + +static void * +eth_dev_iterate(const void *_start, + const char *str, + const struct rte_dev_iterator *it) +{ + const struct rte_eth_dev *start = _start; + struct rte_device *dev = it->device; + struct rte_kvargs *kvargs = NULL; + struct rte_eth_dev *edev = NULL; + uint16_t p = 0; + + if (str != NULL) { + kvargs = rte_kvargs_parse(str, NULL); + if (kvargs == NULL) { + RTE_LOG(ERR, EAL, "cannot parse argument list\n"); + rte_errno = EINVAL; + return NULL; + } + } + if (start) + p = start->data->port_id + 1; + for (p = rte_eth_find_next(p); + p < RTE_MAX_ETHPORTS; + p = rte_eth_find_next(p + 1)) { + edev = &rte_eth_devices[p]; + if (dev != edev->device) + goto next_ethdev; + if (eth_dev_match(edev, kvargs) == 0) + break; +next_ethdev: + edev = NULL; + } + rte_kvargs_free(kvargs); + return edev; +} + +struct rte_class rte_class_eth = { + .dev_iterate = eth_dev_iterate, +}; + +RTE_REGISTER_CLASS(eth, rte_class_eth); -- 2.11.0