wireless: use eth_hw_addr_set() instead of ether_addr_copy()
Commit 406f42fa0d
("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 got through appropriate helpers.
Convert wireless from ether_addr_copy() to eth_hw_addr_set():
@@
expression dev, np;
@@
- ether_addr_copy(dev->dev_addr, np)
+ eth_hw_addr_set(dev, np)
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211018235021.1279697-3-kuba@kernel.org
This commit is contained in:
parent
708884e7f7
commit
fcb79f31d9
|
@ -723,9 +723,9 @@ wil_cfg80211_add_iface(struct wiphy *wiphy, const char *name,
|
|||
ndev = vif_to_ndev(vif);
|
||||
ether_addr_copy(ndev->perm_addr, ndev_main->perm_addr);
|
||||
if (is_valid_ether_addr(params->macaddr)) {
|
||||
ether_addr_copy(ndev->dev_addr, params->macaddr);
|
||||
eth_hw_addr_set(ndev, params->macaddr);
|
||||
} else {
|
||||
ether_addr_copy(ndev->dev_addr, ndev_main->perm_addr);
|
||||
eth_hw_addr_set(ndev, ndev_main->perm_addr);
|
||||
ndev->dev_addr[0] = (ndev->dev_addr[0] ^ (1 << vif->mid)) |
|
||||
0x2; /* locally administered */
|
||||
}
|
||||
|
|
|
@ -1358,7 +1358,7 @@ static int wil_get_bl_info(struct wil6210_priv *wil)
|
|||
ether_addr_copy(ndev->perm_addr, mac);
|
||||
ether_addr_copy(wiphy->perm_addr, mac);
|
||||
if (!is_valid_ether_addr(ndev->dev_addr))
|
||||
ether_addr_copy(ndev->dev_addr, mac);
|
||||
eth_hw_addr_set(ndev, mac);
|
||||
|
||||
if (rf_status) {/* bad RF cable? */
|
||||
wil_err(wil, "RF communication error 0x%04x",
|
||||
|
@ -1431,7 +1431,7 @@ static int wil_get_otp_info(struct wil6210_priv *wil)
|
|||
ether_addr_copy(ndev->perm_addr, mac);
|
||||
ether_addr_copy(wiphy->perm_addr, mac);
|
||||
if (!is_valid_ether_addr(ndev->dev_addr))
|
||||
ether_addr_copy(ndev->dev_addr, mac);
|
||||
eth_hw_addr_set(ndev, mac);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1609,7 +1609,7 @@ int wil_reset(struct wil6210_priv *wil, bool load_fw)
|
|||
struct net_device *ndev = wil->main_ndev;
|
||||
|
||||
ether_addr_copy(ndev->perm_addr, mac);
|
||||
ether_addr_copy(ndev->dev_addr, ndev->perm_addr);
|
||||
eth_hw_addr_set(ndev, ndev->perm_addr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -1003,7 +1003,7 @@ int mwifiex_set_mac_address(struct mwifiex_private *priv,
|
|||
return ret;
|
||||
}
|
||||
|
||||
ether_addr_copy(dev->dev_addr, priv->curr_addr);
|
||||
eth_hw_addr_set(dev, priv->curr_addr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -478,7 +478,7 @@ int qtnf_core_net_attach(struct qtnf_wmac *mac, struct qtnf_vif *vif,
|
|||
dev->needs_free_netdev = true;
|
||||
dev_net_set(dev, wiphy_net(wiphy));
|
||||
dev->ieee80211_ptr = &vif->wdev;
|
||||
ether_addr_copy(dev->dev_addr, vif->mac_addr);
|
||||
eth_hw_addr_set(dev, vif->mac_addr);
|
||||
dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
|
||||
dev->watchdog_timeo = QTNF_DEF_WDOG_TIMEOUT;
|
||||
dev->tx_queue_len = 100;
|
||||
|
|
Loading…
Reference in New Issue