From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 292582B91 for ; Fri, 6 Jan 2017 01:36:48 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP; 05 Jan 2017 16:36:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,323,1477983600"; d="scan'208";a="46151349" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga004.jf.intel.com with ESMTP; 05 Jan 2017 16:36:47 -0800 Received: from fmsmsx151.amr.corp.intel.com (10.18.125.4) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 5 Jan 2017 16:36:47 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX151.amr.corp.intel.com (10.18.125.4) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 5 Jan 2017 16:36:42 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.20]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.177]) with mapi id 14.03.0248.002; Fri, 6 Jan 2017 08:36:40 +0800 From: "Wu, Jingjing" To: "Lu, Wenzhuo" , "dev@dpdk.org" CC: "Iremonger, Bernard" Thread-Topic: [dpdk-dev] [PATCH v7 17/27] net/i40e: set VF VLAN filter from PF Thread-Index: AQHSZY8F/lZvKLYB/U+mrG+hstO+JqEqnlmA Date: Fri, 6 Jan 2017 00:36:38 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F810CC3D0F@SHSMSX103.ccr.corp.intel.com> References: <1480637533-37425-1-git-send-email-wenzhuo.lu@intel.com> <1483426488-117332-1-git-send-email-wenzhuo.lu@intel.com> <1483426488-117332-18-git-send-email-wenzhuo.lu@intel.com> In-Reply-To: <1483426488-117332-18-git-send-email-wenzhuo.lu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v7 17/27] net/i40e: set VF VLAN filter from PF 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, 06 Jan 2017 00:36:49 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Tuesday, January 3, 2017 2:55 PM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v7 17/27] net/i40e: set VF VLAN filter from PF >=20 > From: Bernard Iremonger >=20 > add rte_pmd_i40e_set_vf_vlan_filter API. > User can call the API on PF to enable/disable a set of VF's VLAN filters. >=20 > Signed-off-by: Bernard Iremonger > --- > drivers/net/i40e/i40e_ethdev.c | 52 > +++++++++++++++++++++++++++++++ > drivers/net/i40e/rte_pmd_i40e.h | 22 +++++++++++++ > drivers/net/i40e/rte_pmd_i40e_version.map | 1 + > 3 files changed, 75 insertions(+) >=20 > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethde= v.c > index 4d2fb20..47e03d6 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -10428,3 +10428,55 @@ int rte_pmd_i40e_set_vf_vlan_tag(uint8_t port, > uint16_t vf_id, uint8_t on) >=20 > return ret; > } > + > +int rte_pmd_i40e_set_vf_vlan_filter(uint8_t port, uint16_t vlan_id, > + uint64_t vf_mask, uint8_t on) > +{ > + struct rte_eth_dev *dev; > + struct rte_eth_dev_info dev_info; > + struct i40e_pf *pf; > + uint16_t pool_idx; > + int ret =3D I40E_SUCCESS; > + > + RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV); > + > + dev =3D &rte_eth_devices[port]; > + rte_eth_dev_info_get(port, &dev_info); > + > + if (vlan_id > ETHER_MAX_VLAN_ID) > + return -EINVAL; > + > + if (on > 1) > + return -EINVAL; > + > + pf =3D I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private); > + if ((pf->flags & I40E_FLAG_VMDQ) =3D=3D 0) { > + PMD_INIT_LOG(ERR, "Firmware doesn't support VMDQ"); > + return -ENOTSUP; > + } > + > + if (!pf->vmdq) { > + PMD_INIT_LOG(INFO, "VMDQ not configured"); > + return -ENOTSUP; > + } > + > + for (pool_idx =3D 0; > + pool_idx < ETH_64_POOLS && > + pool_idx < pf->nb_cfg_vmdq_vsi && > + ret =3D=3D I40E_SUCCESS; > + pool_idx++) { > + if (vf_mask & ((uint64_t)(1ULL << pool_idx))) { > + if (on) > + ret =3D i40e_vsi_add_vlan(pf->vmdq[pool_idx].vsi, > + vlan_id); > + else > + ret =3D i40e_vsi_delete_vlan( > + pf->vmdq[pool_idx].vsi, vlan_id); > + } > + } The head is saying "set VF VLAN filter", why do you deal with VMDQ VSIs?