diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-04-01 17:22:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-03 17:22:15 -0400 |
commit | 22bedad3ce112d5ca1eaf043d4990fa2ed698c87 (patch) | |
tree | b6fba5688d48b1396f01d13ee53610dea7749c15 /drivers/net/octeon | |
parent | a748ee2426817a95b1f03012d8f339c45c722ae1 (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/octeon')
-rw-r--r-- | drivers/net/octeon/octeon_mgmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/octeon/octeon_mgmt.c b/drivers/net/octeon/octeon_mgmt.c index be368e5cbf75..ee894ed35f7f 100644 --- a/drivers/net/octeon/octeon_mgmt.c +++ b/drivers/net/octeon/octeon_mgmt.c | |||
@@ -474,7 +474,7 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev) | |||
474 | unsigned int cam_mode = 1; /* 1 - Accept on CAM match */ | 474 | unsigned int cam_mode = 1; /* 1 - Accept on CAM match */ |
475 | unsigned int multicast_mode = 1; /* 1 - Reject all multicast. */ | 475 | unsigned int multicast_mode = 1; /* 1 - Reject all multicast. */ |
476 | struct octeon_mgmt_cam_state cam_state; | 476 | struct octeon_mgmt_cam_state cam_state; |
477 | struct dev_addr_list *list; | 477 | struct netdev_hw_addr *ha; |
478 | struct list_head *pos; | 478 | struct list_head *pos; |
479 | int available_cam_entries; | 479 | int available_cam_entries; |
480 | 480 | ||
@@ -510,8 +510,8 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev) | |||
510 | } | 510 | } |
511 | } | 511 | } |
512 | if (multicast_mode == 0) { | 512 | if (multicast_mode == 0) { |
513 | netdev_for_each_mc_addr(list, netdev) | 513 | netdev_for_each_mc_addr(ha, netdev) |
514 | octeon_mgmt_cam_state_add(&cam_state, list->da_addr); | 514 | octeon_mgmt_cam_state_add(&cam_state, ha->addr); |
515 | } | 515 | } |
516 | 516 | ||
517 | 517 | ||