aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/iseries_veth.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2011-06-28 22:15:35 -0400
committerDavid S. Miller <davem@davemloft.net>2011-07-01 01:13:38 -0400
commiteb31c4e0b0d8d7f673f95644cbfd2993f1c36840 (patch)
tree7f68a01aee4b929e9ac0560dec53c368caab2fdc /drivers/net/iseries_veth.c
parent3170ff54c26004ea627022af695d0c8709d29b04 (diff)
net: iseries_veth: Omit check for multicast bit in netdev_for_each_mc_addr
There is no need to check for the address being a multicast address in the netdev_for_each_mc_addr loop, so remove it. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/iseries_veth.c')
-rw-r--r--drivers/net/iseries_veth.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/net/iseries_veth.c b/drivers/net/iseries_veth.c
index b6c296f4b4d5..242bf524273e 100644
--- a/drivers/net/iseries_veth.c
+++ b/drivers/net/iseries_veth.c
@@ -964,11 +964,9 @@ static void veth_set_multicast_list(struct net_device *dev)
964 u8 *addr = ha->addr; 964 u8 *addr = ha->addr;
965 u64 xaddr = 0; 965 u64 xaddr = 0;
966 966
967 if (addr[0] & 0x01) {/* multicast address? */ 967 memcpy(&xaddr, addr, ETH_ALEN);
968 memcpy(&xaddr, addr, ETH_ALEN); 968 port->mcast_addr[port->num_mcast] = xaddr;
969 port->mcast_addr[port->num_mcast] = xaddr; 969 port->num_mcast++;
970 port->num_mcast++;
971 }
972 } 970 }
973 } 971 }
974 972