OSDN Git Service

bluetooth: use eth_hw_addr_set()
authorJakub Kicinski <kuba@kernel.org>
Fri, 22 Oct 2021 23:18:33 +0000 (16:18 -0700)
committerJakub Kicinski <kuba@kernel.org>
Mon, 25 Oct 2021 18:01:24 +0000 (11:01 -0700)
commit08c181f052ed8e89beb84f61c1e8cb87f199dd8d
tree3d052813544d6fbafe7da871a71a04f6e97a21d4
parenta0c8c3372b41002e65dc109d431eb50da002e728
bluetooth: use eth_hw_addr_set()

Commit 406f42fa0d3c ("net-next: When a bond have a massive amount
of VLANs...") introduced a rbtree for faster Ethernet address look
up. To maintain netdev->dev_addr in this tree we need to make all
the writes to it go through appropriate helpers.

Convert bluetooth from memcpy(... ETH_ADDR) to eth_hw_addr_set():

  @@
  expression dev, np;
  @@
  - memcpy(dev->dev_addr, np, ETH_ALEN)
  + eth_hw_addr_set(dev, np)

Reviewed-by: Marcel Holtmann <marcel@holtmann.org>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/bluetooth/bnep/core.c