Re: [PATCH RESEND v7] i40e: Look up MAC address in Open Firmware or IDPROM

2015-12-05 Thread Sowmini Varadhan
On (12/04/15 17:40), Shannon Nelson wrote: > > I'd write this just a little differently to match the rest of the driver: > > ret = i40e_aq_add_macvlan(>back->hw, vsi->seid, , 1, NULL); > if (!ret) { You mean if (ret), right? (i.e., ret == 0 is success) >

[PATCH RESEND v7] i40e: Look up MAC address in Open Firmware or IDPROM

2015-12-04 Thread Sowmini Varadhan
[Apologies for fat-fingering subject in the other attempt] This is the i40e equivalent of commit c762dff24c06 ("ixgbe: Look up MAC address in Open Firmware or IDPROM"). As with that fix, attempt to look up the MAC address in Open Firmware on systems that support it, and use IDPROM on SPARC if

Re: [PATCH RESEND v7] i40e: Look up MAC address in Open Firmware or IDPROM

2015-12-04 Thread Shannon Nelson
On Fri, Dec 4, 2015 at 8:24 AM, Sowmini Varadhan wrote: > > [Apologies for fat-fingering subject in the other attempt] > > This is the i40e equivalent of commit c762dff24c06 ("ixgbe: Look up MAC > address in Open Firmware or IDPROM"). > > As with that fix, attempt to