net: convert multicast list to list_head
Converts the list and the core manipulating with it to be the same as uc_list. +uses two functions for adding/removing mc address (normal and "global" variant) instead of a function parameter. +removes dev_mcast.c completely. +exposes netdev_hw_addr_list_* macros along with __hw_addr_* functions for manipulation with lists on a sandbox (used in bonding and 80211 drivers) Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
这个提交包含在:
@@ -1159,13 +1159,13 @@ int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id,
|
||||
req->interface_id = if_id;
|
||||
if (netdev) {
|
||||
int i;
|
||||
struct dev_mc_list *mc;
|
||||
struct netdev_hw_addr *ha;
|
||||
|
||||
req->num_mac = cpu_to_le16(netdev_mc_count(netdev));
|
||||
|
||||
i = 0;
|
||||
netdev_for_each_mc_addr(mc, netdev)
|
||||
memcpy(req->mac[i].byte, mc->dmi_addr, ETH_ALEN);
|
||||
netdev_for_each_mc_addr(ha, netdev)
|
||||
memcpy(req->mac[i].byte, ha->addr, ETH_ALEN);
|
||||
} else {
|
||||
req->promiscuous = 1;
|
||||
}
|
||||
|
在新工单中引用
屏蔽一个用户