aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/benet/be_cmds.c
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2010-04-01 17:22:57 -0400
committerDavid S. Miller <davem@davemloft.net>2010-04-03 17:22:15 -0400
commit22bedad3ce112d5ca1eaf043d4990fa2ed698c87 (patch)
treeb6fba5688d48b1396f01d13ee53610dea7749c15 /drivers/net/benet/be_cmds.c
parenta748ee2426817a95b1f03012d8f339c45c722ae1 (diff)
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>
Diffstat (limited to 'drivers/net/benet/be_cmds.c')
-rw-r--r--drivers/net/benet/be_cmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/benet/be_cmds.c b/drivers/net/benet/be_cmds.c
index 9f53d9e86e2b..61a9afdb83f4 100644
--- a/drivers/net/benet/be_cmds.c
+++ b/drivers/net/benet/be_cmds.c
@@ -1159,13 +1159,13 @@ int be_cmd_multicast_set(struct be_adapter *adapter, u32 if_id,
1159 req->interface_id = if_id; 1159 req->interface_id = if_id;
1160 if (netdev) { 1160 if (netdev) {
1161 int i; 1161 int i;
1162 struct dev_mc_list *mc; 1162 struct netdev_hw_addr *ha;
1163 1163
1164 req->num_mac = cpu_to_le16(netdev_mc_count(netdev)); 1164 req->num_mac = cpu_to_le16(netdev_mc_count(netdev));
1165 1165
1166 i = 0; 1166 i = 0;
1167 netdev_for_each_mc_addr(mc, netdev) 1167 netdev_for_each_mc_addr(ha, netdev)
1168 memcpy(req->mac[i].byte, mc->dmi_addr, ETH_ALEN); 1168 memcpy(req->mac[i].byte, ha->addr, ETH_ALEN);
1169 } else { 1169 } else {
1170 req->promiscuous = 1; 1170 req->promiscuous = 1;
1171 } 1171 }