From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 3D5D82A66 for ; Wed, 7 Dec 2016 15:32:43 +0100 (CET) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP; 07 Dec 2016 06:32:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,310,1477983600"; d="scan'208";a="39811331" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.29]) ([10.237.220.29]) by orsmga005.jf.intel.com with ESMTP; 07 Dec 2016 06:32:41 -0800 To: Wenzhuo Lu , dev@dpdk.org References: <1480637533-37425-1-git-send-email-wenzhuo.lu@intel.com> <1481081535-37448-1-git-send-email-wenzhuo.lu@intel.com> <1481081535-37448-18-git-send-email-wenzhuo.lu@intel.com> Cc: Bernard Iremonger From: Ferruh Yigit Message-ID: <10f85acc-17d4-4ac3-29d2-6b27430b2240@intel.com> Date: Wed, 7 Dec 2016 14:32:40 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <1481081535-37448-18-git-send-email-wenzhuo.lu@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 17/32] net/i40e: set VF broadcast mode 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: Wed, 07 Dec 2016 14:32:43 -0000 On 12/7/2016 3:32 AM, Wenzhuo Lu wrote: > Support enabling/disabling VF broadcast mode from PF. > User can call the API on PF to enable/disable a specific > VF's broadcast mode. > > Signed-off-by: Bernard Iremonger <...> > +int rte_pmd_i40e_set_vf_broadcast(uint8_t port, uint16_t vf_id, uint8_t on) > +{ > + struct rte_eth_dev *dev; > + struct rte_eth_dev_info dev_info; > + struct i40e_pf *pf; > + struct i40e_pf_vf *vf; > + struct i40e_hw *hw; > + int ret; > + > + RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV); > + > + dev = &rte_eth_devices[port]; > + rte_eth_dev_info_get(port, &dev_info); > + > + if (vf_id >= dev_info.max_vfs) > + return -EINVAL; > + > + if (on > 1) > + return -EINVAL; > + > + pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private); > + hw = I40E_PF_TO_HW(pf); > + > + if (vf_id > pf->vf_num) if (vf_id > pf->vf_num - 1 || !pf->vfs) > + return -EINVAL; > + <...>