diff options
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 37 |
1 files changed, 35 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index ff42aba403c5..02882e2ebd49 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -210,6 +210,16 @@ struct dev_addr_list | |||
210 | #define dmi_users da_users | 210 | #define dmi_users da_users |
211 | #define dmi_gusers da_gusers | 211 | #define dmi_gusers da_gusers |
212 | 212 | ||
213 | struct netdev_hw_addr { | ||
214 | struct list_head list; | ||
215 | unsigned char addr[MAX_ADDR_LEN]; | ||
216 | unsigned char type; | ||
217 | #define NETDEV_HW_ADDR_T_LAN 1 | ||
218 | #define NETDEV_HW_ADDR_T_SAN 2 | ||
219 | #define NETDEV_HW_ADDR_T_SLAVE 3 | ||
220 | struct rcu_head rcu_head; | ||
221 | }; | ||
222 | |||
213 | struct hh_cache | 223 | struct hh_cache |
214 | { | 224 | { |
215 | struct hh_cache *hh_next; /* Next entry */ | 225 | struct hh_cache *hh_next; /* Next entry */ |
@@ -784,8 +794,11 @@ struct net_device | |||
784 | */ | 794 | */ |
785 | unsigned long last_rx; /* Time of last Rx */ | 795 | unsigned long last_rx; /* Time of last Rx */ |
786 | /* Interface address info used in eth_type_trans() */ | 796 | /* Interface address info used in eth_type_trans() */ |
787 | unsigned char dev_addr[MAX_ADDR_LEN]; /* hw address, (before bcast | 797 | unsigned char *dev_addr; /* hw address, (before bcast |
788 | because most packets are unicast) */ | 798 | because most packets are |
799 | unicast) */ | ||
800 | |||
801 | struct list_head dev_addr_list; /* list of device hw addresses */ | ||
789 | 802 | ||
790 | unsigned char broadcast[MAX_ADDR_LEN]; /* hw bcast add */ | 803 | unsigned char broadcast[MAX_ADDR_LEN]; /* hw bcast add */ |
791 | 804 | ||
@@ -1791,6 +1804,13 @@ static inline void netif_addr_unlock_bh(struct net_device *dev) | |||
1791 | spin_unlock_bh(&dev->addr_list_lock); | 1804 | spin_unlock_bh(&dev->addr_list_lock); |
1792 | } | 1805 | } |
1793 | 1806 | ||
1807 | /* | ||
1808 | * dev_addr_list walker. Should be used only for read access. Call with | ||
1809 | * rcu_read_lock held. | ||
1810 | */ | ||
1811 | #define for_each_dev_addr(dev, ha) \ | ||
1812 | list_for_each_entry_rcu(ha, &dev->dev_addr_list, list) | ||
1813 | |||
1794 | /* These functions live elsewhere (drivers/net/net_init.c, but related) */ | 1814 | /* These functions live elsewhere (drivers/net/net_init.c, but related) */ |
1795 | 1815 | ||
1796 | extern void ether_setup(struct net_device *dev); | 1816 | extern void ether_setup(struct net_device *dev); |
@@ -1803,6 +1823,19 @@ extern struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name, | |||
1803 | alloc_netdev_mq(sizeof_priv, name, setup, 1) | 1823 | alloc_netdev_mq(sizeof_priv, name, setup, 1) |
1804 | extern int register_netdev(struct net_device *dev); | 1824 | extern int register_netdev(struct net_device *dev); |
1805 | extern void unregister_netdev(struct net_device *dev); | 1825 | extern void unregister_netdev(struct net_device *dev); |
1826 | |||
1827 | /* Functions used for device addresses handling */ | ||
1828 | extern int dev_addr_add(struct net_device *dev, unsigned char *addr, | ||
1829 | unsigned char addr_type); | ||
1830 | extern int dev_addr_del(struct net_device *dev, unsigned char *addr, | ||
1831 | unsigned char addr_type); | ||
1832 | extern int dev_addr_add_multiple(struct net_device *to_dev, | ||
1833 | struct net_device *from_dev, | ||
1834 | unsigned char addr_type); | ||
1835 | extern int dev_addr_del_multiple(struct net_device *to_dev, | ||
1836 | struct net_device *from_dev, | ||
1837 | unsigned char addr_type); | ||
1838 | |||
1806 | /* Functions used for secondary unicast and multicast support */ | 1839 | /* Functions used for secondary unicast and multicast support */ |
1807 | extern void dev_set_rx_mode(struct net_device *dev); | 1840 | extern void dev_set_rx_mode(struct net_device *dev); |
1808 | extern void __dev_set_rx_mode(struct net_device *dev); | 1841 | extern void __dev_set_rx_mode(struct net_device *dev); |