diff options
| author | Jiri Pirko <jpirko@redhat.com> | 2010-04-01 21:22:57 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-04-03 14:22:15 -0700 | 
| commit | 22bedad3ce112d5ca1eaf043d4990fa2ed698c87 (patch) | |
| tree | b6fba5688d48b1396f01d13ee53610dea7749c15 /drivers/net/tlan.c | |
| parent | a748ee2426817a95b1f03012d8f339c45c722ae1 (diff) | |
| download | olio-linux-3.10-22bedad3ce112d5ca1eaf043d4990fa2ed698c87.tar.xz olio-linux-3.10-22bedad3ce112d5ca1eaf043d4990fa2ed698c87.zip  | |
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/tlan.c')
| -rw-r--r-- | drivers/net/tlan.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c index 05ea30a94e8..8ffec22b74b 100644 --- a/drivers/net/tlan.c +++ b/drivers/net/tlan.c @@ -1314,7 +1314,7 @@ static struct net_device_stats *TLan_GetStats( struct net_device *dev )  static void TLan_SetMulticastList( struct net_device *dev )  { -	struct dev_mc_list *dmi; +	struct netdev_hw_addr *ha;  	u32			hash1 = 0;  	u32			hash2 = 0;  	int			i; @@ -1336,12 +1336,12 @@ static void TLan_SetMulticastList( struct net_device *dev )  			TLan_DioWrite32( dev->base_addr, TLAN_HASH_2, 0xFFFFFFFF );  		} else {  			i = 0; -			netdev_for_each_mc_addr(dmi, dev) { +			netdev_for_each_mc_addr(ha, dev) {  				if ( i < 3 ) {  					TLan_SetMac( dev, i + 1, -						     (char *) &dmi->dmi_addr ); +						     (char *) &ha->addr);  				} else { -					offset = TLan_HashFunc( (u8 *) &dmi->dmi_addr ); +					offset = TLan_HashFunc((u8 *)&ha->addr);  					if ( offset < 32 )  						hash1 |= ( 1 << offset );  					else  |