From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2D647A0471 for ; Wed, 17 Jul 2019 10:39:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 267B0152A; Wed, 17 Jul 2019 10:39:39 +0200 (CEST) Received: from mail-pg1-f195.google.com (mail-pg1-f195.google.com [209.85.215.195]) by dpdk.org (Postfix) with ESMTP id 73C28152A for ; Wed, 17 Jul 2019 10:39:37 +0200 (CEST) Received: by mail-pg1-f195.google.com with SMTP id x15so468641pgg.8 for ; Wed, 17 Jul 2019 01:39:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=zKTFapLnqitANkaWkJWuRubJ+nRxeEGgIx1XElpZbek=; b=Rvugvh3RnzLAmdLaE8Y2jTD2nzB9UrWwc/rLZ9VhPh6Oq8yCnkeQNaJGZVdMw6hW1M fL6SOcELmrryAHTB7VLUoqk92tN/UBUhGE2K6JRH1cSxIHAAoLiuH6C4smurDg6yng6A K3VwJTjUjY02KeusKNDEy+CK9vS4c1mJsA3+yIdsG7tgFs0UAp+aeUUjxFQnCsrcxCDf dn4/grXXNoGptikZcqRQWQoL/NDTABSJUd/pmZp0Agj6DChyn/n0OcuXjbHBn2+xCvi3 +/Iqa/urXcYbxfn4nu/gUeceUJ2xJBjK8z9U8Cj3hjKceM8ArgJtFCYiNj5mhaGexJXw zuQA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=zKTFapLnqitANkaWkJWuRubJ+nRxeEGgIx1XElpZbek=; b=euOpWBJv4b6rGOi4+sxRAU6s52UJzEjYRyXgOb8pQWY2zYFtlC3rUHqxwLRMt/1bpk /hDmCf656s2GpnjEnYHDHGhCgHqXjw+b0ZZbyxS5JEvoQvrD8kflvzDNlkh+v+GZNaQr 3ElJ6YpJWyQuc2thV4zlmYeWL9WRbsYLqtGlWHFOpulgnwYGTtt2YMX613Vg+b1k2NPg KfGZeiUChkPR6Qo01/jpH+n8wW7r7H39BEgHItD4ymgV0pcw81wcc0/s5hDRDTuSBohK MoLXLj6XJkVi68e6G79V5znw6TQ8rFVhho8KDwBkf/PAfFpScYm7K9sKgyDkbfIdjbBc UuCA== X-Gm-Message-State: APjAAAUibvEP5THNerfuaFU/IMDNUB4Vy2500Jkipe0fpPvZtd+nZjAN MJtX+icFWwfRdR54ekoS4pxwV6nO X-Google-Smtp-Source: APXvYqzz2FqY/PW5M5XEHPksofVcAMpqxBdlEKnEqP+EPs6q7duBNoejrjX2vwzbjuq+YTFBEuLC9A== X-Received: by 2002:a63:c24d:: with SMTP id l13mr40120590pgg.330.1563352776593; Wed, 17 Jul 2019 01:39:36 -0700 (PDT) Received: from localhost.localdomain ([192.47.164.146]) by smtp.gmail.com with ESMTPSA id r1sm27384942pfq.100.2019.07.17.01.39.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 17 Jul 2019 01:39:36 -0700 (PDT) From: yasufum.o@gmail.com To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Wed, 17 Jul 2019 17:39:31 +0900 Message-Id: <20190717083931.39084-1-yasufum.o@gmail.com> X-Mailer: git-send-email 2.17.1 Subject: [spp] [PATCH] spp_pcap: remove nouse nof_rings and nof_nics X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: spp-bounces@dpdk.org Sender: "spp" From: Yasufumi Ogawa In struct `iface_info`, members `nof_rings` and `nof_nics` for containing the number of ports of each type are defined, but not required actually. This patch is to remove it. Signed-off-by: Yasufumi Ogawa --- src/pcap/cmd_utils.c | 57 +++++++++++++++++++++++++++++++------------- src/pcap/cmd_utils.h | 5 +--- 2 files changed, 41 insertions(+), 21 deletions(-) diff --git a/src/pcap/cmd_utils.c b/src/pcap/cmd_utils.c index 69f0fa0..31f4922 100644 --- a/src/pcap/cmd_utils.c +++ b/src/pcap/cmd_utils.c @@ -154,7 +154,7 @@ get_iface_info(enum port_type iface_type, int iface_no) switch (iface_type) { case PHY: - return &iface_info->nic[iface_no]; + return &iface_info->phy[iface_no]; case RING: return &iface_info->ring[iface_no]; default: @@ -174,10 +174,10 @@ init_iface_info(void) struct iface_info *p_iface_info = g_mng_data_addr.p_iface_info; memset(p_iface_info, 0x00, sizeof(struct iface_info)); for (port_cnt = 0; port_cnt < RTE_MAX_ETHPORTS; port_cnt++) { - p_iface_info->nic[port_cnt].iface_type = UNDEF; - p_iface_info->nic[port_cnt].iface_no = port_cnt; - p_iface_info->nic[port_cnt].ethdev_port_id = -1; - p_iface_info->nic[port_cnt].cls_attrs.vlantag.vid = + p_iface_info->phy[port_cnt].iface_type = UNDEF; + p_iface_info->phy[port_cnt].iface_no = port_cnt; + p_iface_info->phy[port_cnt].ethdev_port_id = -1; + p_iface_info->phy[port_cnt].cls_attrs.vlantag.vid = ETH_VLAN_ID_MAX; p_iface_info->ring[port_cnt].iface_type = UNDEF; p_iface_info->ring[port_cnt].iface_no = port_cnt; @@ -199,21 +199,44 @@ init_core_info(void) *g_mng_data_addr.p_capture_status = SPP_CAPTURE_IDLE; } -/* Setup port info of port on host */ +/* Initialize mng data of ports on host */ static int -set_nic_interface(void) +init_host_port_info(void) { - int nic_cnt = 0; + int port_type, port_id; + int i, ret; + int nof_phys = 0; + char dev_name[RTE_DEV_NAME_MAX_LEN] = { 0 }; struct iface_info *p_iface_info = g_mng_data_addr.p_iface_info; - /* NIC Setting */ - p_iface_info->nof_phys = rte_eth_dev_count_avail(); - if (p_iface_info->nof_phys > RTE_MAX_ETHPORTS) - p_iface_info->nof_phys = RTE_MAX_ETHPORTS; + for (i = 0; i < RTE_MAX_ETHPORTS; i++) { + if (!rte_eth_dev_is_valid_port(i)) + continue; - for (nic_cnt = 0; nic_cnt < p_iface_info->nof_phys; nic_cnt++) { - p_iface_info->nic[nic_cnt].iface_type = PHY; - p_iface_info->nic[nic_cnt].ethdev_port_id = nic_cnt; + rte_eth_dev_get_name_by_port(i, dev_name); + ret = parse_dev_name(dev_name, &port_type, &port_id); + if (ret < 0) + RTE_LOG(ERR, PCAP_UTILS, "Failed to parse dev_name.\n"); + + if (port_type == PHY) { + port_id = nof_phys; + nof_phys++; + } + + switch (port_type) { + case PHY: + p_iface_info->phy[port_id].iface_type = port_type; + p_iface_info->phy[port_id].ethdev_port_id = port_id; + break; + case RING: + p_iface_info->ring[port_id].iface_type = port_type; + p_iface_info->ring[port_id].ethdev_port_id = port_id; + break; + default: + RTE_LOG(ERR, PCAP_UTILS, "Unsupported port on host, " + "type:%d, id:%d.\n", + port_type, port_id); + } } return SPPWK_RET_OK; @@ -227,8 +250,8 @@ init_mng_data(void) init_iface_info(); init_core_info(); - int ret_nic = set_nic_interface(); - if (unlikely(ret_nic != SPPWK_RET_OK)) + int ret = init_host_port_info(); + if (unlikely(ret != SPPWK_RET_OK)) return SPPWK_RET_NG; return SPPWK_RET_OK; diff --git a/src/pcap/cmd_utils.h b/src/pcap/cmd_utils.h index f2cb9ef..fb8c300 100644 --- a/src/pcap/cmd_utils.h +++ b/src/pcap/cmd_utils.h @@ -151,11 +151,8 @@ struct sppwk_comp_info { }; /* Manage interfaces and port information as global variable */ -/* TODO(yasufum) confirm why nof_rings is required not used in anywhere. */ struct iface_info { - int nof_phys; /* Number of phy ports */ - int nof_rings; /* Number of ring ports */ - struct sppwk_port_info nic[RTE_MAX_ETHPORTS]; + struct sppwk_port_info phy[RTE_MAX_ETHPORTS]; struct sppwk_port_info ring[RTE_MAX_ETHPORTS]; }; -- 2.17.1