From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 8741AF964 for ; Fri, 3 Mar 2017 16:40:46 +0100 (CET) Received: by mail-wm0-f51.google.com with SMTP id n11so18374397wma.0 for ; Fri, 03 Mar 2017 07:40:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:in-reply-to:references; bh=pRfOwv6zt1Vn1vVJ+EnzD4SQa5UVRCG/JlKauQENyeY=; b=T3rUJy6SRuXcrzj0zKtGHNkucHTb0FPiDNgrL/jqr31c595NqUGo2wd2lgfnurVsi/ EmZlrNC8psTIfUAS7uvUBNGpbVSBlMQMq8boTS+4if2B8m/z2pLUDiyOF1NIfIpK8GXd +MI9h3sUh18jfil39U0iqnDcfuOfqQozCpSQU2xo3naUrSFIEuN9N6zJ3xn+ch8URviF a6SI6ohZ8yDeNQxV21ZSBj1RpDKyJ+++5FiNhPVHYHtv3L0K+hy0U/aEVUuCwZgcHwKr 5WOsluAZR2mKgFV5io5wSHIrmEe0zvSHUZl/S2TuykXmMqoAi5utERqtX1dO9qqkGsiy oWiw== 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:in-reply-to :references; bh=pRfOwv6zt1Vn1vVJ+EnzD4SQa5UVRCG/JlKauQENyeY=; b=KEjn3W7AqmgziSQkPlUdfqoPX63dZqWigPFVMJLHfrrqthl/GLCH32z4rPbJfIIxQK lYagN9ZtonGgmkUbCmW9FdlOfuFFZaXLPwopjR5MVu1b0B5VfHqmOcVxfh8Z13PHu/lb BG5tQS3th8xX+7rxzYYeBxwVy3mLoO9QHiE/R2BNq2gwneAiw8dWPi4jOv0SiM5nsH3C HNUTV0iH6o+Y+0QZ35QKHiDrtkitAL0owJrWI9GvGKYjMA/CvXNNvB5QgXmtkbN6JtKj YGnZ8Csw0F8nZI5uoJ71vIFcdYAElh0SkmFyrAozI7p/ymGg2aQXYtfZk830PWbxWgii rWKw== X-Gm-Message-State: AMke39nQGPJp7K+yQRK08OtprRNwgWZJ2jdz4HCiGNpJpUGNaxth5/zpholeMorptWAnQC/e X-Received: by 10.28.125.212 with SMTP id y203mr3823316wmc.90.1488555646103; Fri, 03 Mar 2017 07:40:46 -0800 (PST) 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 63sm3486280wmp.9.2017.03.03.07.40.45 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 03 Mar 2017 07:40:45 -0800 (PST) From: Gaetan Rivet To: dev@dpdk.org Date: Fri, 3 Mar 2017 16:40:23 +0100 Message-Id: <6fdab6b6692f614859c415c4be4e3a24d00be926.1488550982.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: References: Subject: [dpdk-dev] [PATCH 01/12] 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, 03 Mar 2017 15:40:46 -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 6c4b796..61a63b7 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -1764,6 +1764,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]; @@ -1779,7 +1780,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 ed99660..f01d140 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -375,6 +375,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 @@ -1716,6 +1724,8 @@ struct rte_eth_dev_data { enum rte_kernel_driver kdrv; /**< Kernel driver passthrough */ int numa_node; /**< NUMA node connection */ const char *drv_name; /**< Driver name */ + struct rte_vlan_filter_conf vlan_filter_conf; + /**< VLAN filter configuration. */ }; /** Device supports hotplug detach */ -- 2.1.4