On 12/7/2016 3:31 AM, Wenzhuo Lu wrote: > Support setting VF MAC address from PF. > User can call the API on PF to set a specific > VF's MAC address. > > This will reset the VF. > > Signed-off-by: Ferruh Yigit <ferruh.yi...@intel.com> > ---
<...> > > +/** > + * Set the VF MAC address. > + * > + * This will reset the vf. It may be good if I add a comment that this also will remove all existing mac filters. Same to commit log perhaps. > + * > + * @param port > + * The port identifier of the Ethernet device. > + * @param vf_id > + * VF id. > + * @param mac_addr > + * VF MAC address. > + * @return > + * - (0) if successful. > + * - (-ENODEV) if *port* invalid. > + * - (-EINVAL) if *vf* or *mac_addr* is invalid. > + */ > +int rte_pmd_i40e_set_vf_mac_addr(uint8_t port, uint16_t vf_id, > + struct ether_addr *mac_addr); > + <...>