mirror of
https://github.com/ipxe/ipxe
synced 2026-01-03 18:31:03 +03:00
[netdevice] Separate out the concept of hardware and link-layer addresses
The hardware address is an intrinsic property of the hardware, while the link-layer address can be changed at runtime. This separation is exposed via APIs such as PXE and EFI, but is currently elided by gPXE. Expose the hardware and link-layer addresses as separate properties within a net device. Drivers should now fill in hw_addr, which will be used to initialise ll_addr at the time of calling register_netdev().
This commit is contained in:
@@ -2210,14 +2210,14 @@ static struct net_device *sky2_init_netdev(struct sky2_hw *hw,
|
||||
sky2->port = port;
|
||||
|
||||
/* read the mac address */
|
||||
memcpy(dev->ll_addr, (void *)(hw->regs + B2_MAC_1 + port * 8), ETH_ALEN);
|
||||
memcpy(dev->hw_addr, (void *)(hw->regs + B2_MAC_1 + port * 8), ETH_ALEN);
|
||||
|
||||
return dev;
|
||||
}
|
||||
|
||||
static void sky2_show_addr(struct net_device *dev)
|
||||
{
|
||||
DBG2(PFX "%s: addr %s\n", dev->name, netdev_hwaddr(dev));
|
||||
DBG2(PFX "%s: addr %s\n", dev->name, netdev_addr(dev));
|
||||
}
|
||||
|
||||
#if DBGLVL_MAX
|
||||
|
||||
Reference in New Issue
Block a user