Thread (5 messages) flat view 5 messages, 3 authors, 2021-10-05

Re: [PATCH net-next 1/2] ethernet: use eth_hw_addr_set() for dev->addr_len cases

From: Andrew Lunn <andrew@lunn.ch>
Date: 2021-10-04 22:18:52

On Mon, Oct 04, 2021 at 09:05:21AM -0700, Jakub Kicinski wrote:
Convert all Ethernet drivers from memcpy(... dev->addr_len)
to eth_hw_addr_set():

  @@
  expression dev, np;
  @@
  - memcpy(dev->dev_addr, np, dev->addr_len)
  + eth_hw_addr_set(dev, np)
eth_hw_addr_set() uses ether_addr_copy(), which says:

Please note: dst & src must both be aligned to u16.

memcpy() does not have this restriction. If the source is something
funky, like an EEPROM, it could be oddly aligned.

If you are going to do this, i think the assumption needs removing, a
test added for unaligned addresses and fall back to memcpy().

    Andrew
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help