Commit fbc450b1 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller

octeon: convert to use netdev_for_each_mc_addr

Hmm so actually my original patch including this bit was correct,
"list = list->next;" confused me :) - will send patch correcting that in a few.
Signed-off-by: default avatarJiri Pirko <jpirko@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 567ec874
...@@ -467,7 +467,6 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev) ...@@ -467,7 +467,6 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev)
{ {
struct octeon_mgmt *p = netdev_priv(netdev); struct octeon_mgmt *p = netdev_priv(netdev);
int port = p->port; int port = p->port;
int i;
union cvmx_agl_gmx_rxx_adr_ctl adr_ctl; union cvmx_agl_gmx_rxx_adr_ctl adr_ctl;
union cvmx_agl_gmx_prtx_cfg agl_gmx_prtx; union cvmx_agl_gmx_prtx_cfg agl_gmx_prtx;
unsigned long flags; unsigned long flags;
...@@ -511,12 +510,8 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev) ...@@ -511,12 +510,8 @@ static void octeon_mgmt_set_rx_filtering(struct net_device *netdev)
} }
} }
if (multicast_mode == 0) { if (multicast_mode == 0) {
i = netdev_mc_count(netdev); netdev_for_each_mc_addr(list, netdev)
list = netdev->mc_list;
while (i--) {
octeon_mgmt_cam_state_add(&cam_state, list->da_addr); octeon_mgmt_cam_state_add(&cam_state, list->da_addr);
list = list->next;
}
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment