Re: [dpdk-dev] [PATCH v3 1/2] net/i40e: new API to add VF MAC address from PF

2017-08-19 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Yigit, Ferruh > Sent: Friday, August 18, 2017 12:43 PM > To: Stephen Hemminger ; Lu, Wenzhuo > > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3 1/2] net/i40e: new API to add VF MAC > address from PF > > On 8/18/2017 1:

Re: [dpdk-dev] [PATCH v3 1/2] net/i40e: new API to add VF MAC address from PF

2017-08-18 Thread Ferruh Yigit
On 8/18/2017 1:32 AM, Stephen Hemminger wrote: > On Fri, 18 Aug 2017 02:33:42 +0800 > Wenzhuo Lu wrote: > >> Currently, rte_eth_dev_mac_addr_add is used by a >> testpmd CLI to add a MAC address for VF. But the >> parameter 'pool' of this API means the VMDq pool, >> not VF. >> So, it's wrong to us

Re: [dpdk-dev] [PATCH v3 1/2] net/i40e: new API to add VF MAC address from PF

2017-08-17 Thread Stephen Hemminger
On Fri, 18 Aug 2017 02:33:42 +0800 Wenzhuo Lu wrote: > Currently, rte_eth_dev_mac_addr_add is used by a > testpmd CLI to add a MAC address for VF. But the > parameter 'pool' of this API means the VMDq pool, > not VF. > So, it's wrong to use it to add the VF MAC address. > This patch provides a ne

[dpdk-dev] [PATCH v3 1/2] net/i40e: new API to add VF MAC address from PF

2017-08-17 Thread Wenzhuo Lu
Currently, rte_eth_dev_mac_addr_add is used by a testpmd CLI to add a MAC address for VF. But the parameter 'pool' of this API means the VMDq pool, not VF. So, it's wrong to use it to add the VF MAC address. This patch provides a new API that can be used to add VF MAC address on i40e. Signed-off-b