From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f171.google.com (mail-wr0-f171.google.com [209.85.128.171]) by dpdk.org (Postfix) with ESMTP id 002EB235 for ; Fri, 7 Jul 2017 02:10:10 +0200 (CEST) Received: by mail-wr0-f171.google.com with SMTP id c11so24292126wrc.3 for ; Thu, 06 Jul 2017 17:10:10 -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 :in-reply-to:references; bh=EFeWDOPftPQuUPuuYCuqi0HHWx1XXlkFlGrLHgVnFtU=; b=lT4NzN2O4/XgCaKP2cl8l8mvixhgW+9o0borjHnFy0Ks5MmMSWxJffmysecssoJSJz 0VDl9SEGgXzQ0aP6LBpe+MGQb0gHWVKeB7D8d9b5a8CkjkZqSh/8LEVjCTMHUPAytJI6 WPVv1YDIQ8lN5yangYAxGsJH8fAs+HETHAMd63gnUfVlTW9cJbSSWhaY1cZKWcv0P4Gi 0MeEugUICAtMLCNqeEcYT/xFilkcAqUovYou9hGFhVdDyo4GpmZaFymHJwBytKyVS83o MVApnMYiMCFmwUacSA4QG8WLTyGZzI828cP0Y0AsiRpR9JHqVO2DekSIGlvXCDTj5i+6 RE1Q== 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:in-reply-to:references; bh=EFeWDOPftPQuUPuuYCuqi0HHWx1XXlkFlGrLHgVnFtU=; b=lMdJa16w6NpD0yaiiMjuuFFjeoSVZPmqcgB4rqm1eZGcemwcAsNb/8JgBU5mvYbect wvjWSo18V09L/6BLPrmTJVdL7Ky1ZYCH4v7lPofJ/ewHX9QDtTZV/P8jgzaO3cx0YOmi ZN+ia7JhDHK+Bqc+GE8Jn9QfdaZmDBRfvP/uTcbrVUbMIyegHbDGFta6vkG4jzwKtko+ hrPhiBSw96XzF2JY2/DPvm7C3mJBauoBDhRw4N65gd+nsLcw8A8TlvQZ1ntCtXKi8lUA S6873lh9RO0q+nBfdICDKqZWAE7gUXa3O/HEU0YxLUnXq1tyxq1Id9CzaozHnf5FwEaT HeYg== X-Gm-Message-State: AIVw110sUSIZYNyprm06f7IaKBMNqZn1AXy2nfDQowlzvSPXiKWGogZb n/czTDyhkIYL3tKxABo= X-Received: by 10.28.6.201 with SMTP id 192mr260155wmg.127.1499386210232; Thu, 06 Jul 2017 17:10:10 -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 f45sm2391166wrf.2.2017.07.06.17.10.08 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 06 Jul 2017 17:10:09 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Fri, 7 Jul 2017 02:09:21 +0200 Message-Id: <1510472990738446a323ebfc61af8c6fdc3a6557.1499384906.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v6 12/23] ethdev: save VLAN filter setting 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, 07 Jul 2017 00:10:11 -0000 Other configuration items (i.e. MAC addresses) are stored within rte_eth_dev_data, but not this one. Signed-off-by: Gaetan Rivet --- lib/librte_ether/rte_ethdev.c | 19 ++++++++++++++++++- lib/librte_ether/rte_ethdev.h | 10 ++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 957ae2a..38c5ad4 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -1981,6 +1981,7 @@ int rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id, int on) { struct rte_eth_dev *dev; + int ret; RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; @@ -1996,7 +1997,23 @@ rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id, int on) } RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP); - return (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on); + ret = (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on); + if (ret == 0) { + struct rte_vlan_filter_conf *vfc; + int vidx; + int vbit; + + vfc = &dev->data->vlan_filter_conf; + vidx = vlan_id / 64; + vbit = vlan_id % 64; + + if (on) + vfc->ids[vidx] |= UINT64_C(1) << vbit; + else + vfc->ids[vidx] &= ~(UINT64_C(1) << vbit); + } + + return ret; } int diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index d1076c8..acbbbb6 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -374,6 +374,14 @@ enum rte_vlan_type { }; /** + * A structure used to describe a vlan filter. + * If the bit corresponding to a VID is set, such VID is on. + */ +struct rte_vlan_filter_conf { + uint64_t ids[64]; +}; + +/** * A structure used to configure the Receive Side Scaling (RSS) feature * of an Ethernet port. * If not NULL, the *rss_key* pointer of the *rss_conf* structure points @@ -1674,6 +1682,8 @@ struct rte_eth_dev_data { uint32_t dev_flags; /**< Capabilities */ enum rte_kernel_driver kdrv; /**< Kernel driver passthrough */ int numa_node; /**< NUMA node connection */ + struct rte_vlan_filter_conf vlan_filter_conf; + /**< VLAN filter configuration. */ }; /** Device supports hotplug detach */ -- 2.1.4