You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
net: convert multiple drivers to use netdev_for_each_mc_addr, part2
Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
2a0d18f97c
commit
5508590c19
@@ -1528,8 +1528,7 @@ static void set_rx_mode(struct net_device *dev)
|
||||
int index;
|
||||
int crc;
|
||||
memset (mc_filter, 0, sizeof (mc_filter));
|
||||
for (i = 0, mclist = dev->mc_list; mclist && i < netdev_mc_count(dev);
|
||||
i++, mclist = mclist->next) {
|
||||
netdev_for_each_mc_addr(mclist, dev) {
|
||||
crc = ether_crc_le (ETH_ALEN, mclist->dmi_addr);
|
||||
for (index=0, bit=0; bit < 6; bit++, crc <<= 1)
|
||||
if (crc & 0x80000000) index |= 1 << bit;
|
||||
|
||||
Reference in New Issue
Block a user