Sure Ferruh, I will spin a new one.
> -----Original Message----- > From: Yigit, Ferruh > Sent: Monday, March 12, 2018 8:39 PM > To: Varghese, Vipin <vipin.vargh...@intel.com>; dev@dpdk.org; > pascal.ma...@6wind.com > Subject: Re: [PATCH v2] net/tap: allow user MAC to be passed as args > > On 3/12/2018 8:21 PM, Vipin Varghese wrote: > > @@ -1591,7 +1632,7 @@ enum ioctl_mode { > > int speed; > > char tap_name[RTE_ETH_NAME_MAX_LEN]; > > char remote_iface[RTE_ETH_NAME_MAX_LEN]; > > - int fixed_mac_type = 0; > > + struct ether_addr user_mac = { .addr_bytes = {0, 0, 0, 0, 0, 0} }; > > A single '0' will do the job J > struct ether_addr user_mac = { .addr_bytes = {0} }; > > Would you mind sending a new version?