diff options
author | Jiri Pirko <jpirko@redhat.com> | 2009-05-22 19:22:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-05-30 01:12:32 -0400 |
commit | ccffad25b5136958d4769ed6de5e87992dd9c65c (patch) | |
tree | cd5f36fe67f4deeae23d76436f7a032a201cba44 /drivers/net/niu.c | |
parent | ae63e808f508c38fe65e23a1480c85d5bd00ecbd (diff) |
net: convert unicast addr list
This patch converts unicast address list to standard list_head using
previously introduced struct netdev_hw_addr. It also relaxes the
locking. Original spinlock (still used for multicast addresses) is not
needed and is no longer used for a protection of this list. All
reading and writing takes place under rtnl (with no changes).
I also removed a possibility to specify the length of the address
while adding or deleting unicast address. It's always dev->addr_len.
The convertion touched especially e1000 and ixgbe codes when the
change is not so trivial.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
drivers/net/bnx2.c | 13 +--
drivers/net/e1000/e1000_main.c | 24 +++--
drivers/net/ixgbe/ixgbe_common.c | 14 ++--
drivers/net/ixgbe/ixgbe_common.h | 4 +-
drivers/net/ixgbe/ixgbe_main.c | 6 +-
drivers/net/ixgbe/ixgbe_type.h | 4 +-
drivers/net/macvlan.c | 11 +-
drivers/net/mv643xx_eth.c | 11 +-
drivers/net/niu.c | 7 +-
drivers/net/virtio_net.c | 7 +-
drivers/s390/net/qeth_l2_main.c | 6 +-
drivers/scsi/fcoe/fcoe.c | 16 ++--
include/linux/netdevice.h | 18 ++--
net/8021q/vlan.c | 4 +-
net/8021q/vlan_dev.c | 10 +-
net/core/dev.c | 195 +++++++++++++++++++++++++++-----------
net/dsa/slave.c | 10 +-
net/packet/af_packet.c | 4 +-
18 files changed, 227 insertions(+), 137 deletions(-)
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/niu.c')
-rw-r--r-- | drivers/net/niu.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index edac3a0b02d6..fa61a12c5e15 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/log2.h> | 22 | #include <linux/log2.h> |
23 | #include <linux/jiffies.h> | 23 | #include <linux/jiffies.h> |
24 | #include <linux/crc32.h> | 24 | #include <linux/crc32.h> |
25 | #include <linux/list.h> | ||
25 | 26 | ||
26 | #include <linux/io.h> | 27 | #include <linux/io.h> |
27 | 28 | ||
@@ -6362,6 +6363,7 @@ static void niu_set_rx_mode(struct net_device *dev) | |||
6362 | struct niu *np = netdev_priv(dev); | 6363 | struct niu *np = netdev_priv(dev); |
6363 | int i, alt_cnt, err; | 6364 | int i, alt_cnt, err; |
6364 | struct dev_addr_list *addr; | 6365 | struct dev_addr_list *addr; |
6366 | struct netdev_hw_addr *ha; | ||
6365 | unsigned long flags; | 6367 | unsigned long flags; |
6366 | u16 hash[16] = { 0, }; | 6368 | u16 hash[16] = { 0, }; |
6367 | 6369 | ||
@@ -6383,9 +6385,8 @@ static void niu_set_rx_mode(struct net_device *dev) | |||
6383 | if (alt_cnt) { | 6385 | if (alt_cnt) { |
6384 | int index = 0; | 6386 | int index = 0; |
6385 | 6387 | ||
6386 | for (addr = dev->uc_list; addr; addr = addr->next) { | 6388 | list_for_each_entry(ha, &dev->uc_list, list) { |
6387 | err = niu_set_alt_mac(np, index, | 6389 | err = niu_set_alt_mac(np, index, ha->addr); |
6388 | addr->da_addr); | ||
6389 | if (err) | 6390 | if (err) |
6390 | printk(KERN_WARNING PFX "%s: Error %d " | 6391 | printk(KERN_WARNING PFX "%s: Error %d " |
6391 | "adding alt mac %d\n", | 6392 | "adding alt mac %d\n", |