diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/netdevice.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 7a8f22fb4eee..aa389c77aa3e 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -177,6 +177,14 @@ struct netif_rx_stats | |||
177 | 177 | ||
178 | DECLARE_PER_CPU(struct netif_rx_stats, netdev_rx_stat); | 178 | DECLARE_PER_CPU(struct netif_rx_stats, netdev_rx_stat); |
179 | 179 | ||
180 | struct dev_addr_list | ||
181 | { | ||
182 | struct dev_addr_list *next; | ||
183 | u8 da_addr[MAX_ADDR_LEN]; | ||
184 | u8 da_addrlen; | ||
185 | int da_users; | ||
186 | int da_gusers; | ||
187 | }; | ||
180 | 188 | ||
181 | /* | 189 | /* |
182 | * We tag multicasts with these structures. | 190 | * We tag multicasts with these structures. |
@@ -1008,6 +1016,9 @@ extern void dev_mc_upload(struct net_device *dev); | |||
1008 | extern int dev_mc_delete(struct net_device *dev, void *addr, int alen, int all); | 1016 | extern int dev_mc_delete(struct net_device *dev, void *addr, int alen, int all); |
1009 | extern int dev_mc_add(struct net_device *dev, void *addr, int alen, int newonly); | 1017 | extern int dev_mc_add(struct net_device *dev, void *addr, int alen, int newonly); |
1010 | extern void dev_mc_discard(struct net_device *dev); | 1018 | extern void dev_mc_discard(struct net_device *dev); |
1019 | extern int __dev_addr_delete(struct dev_addr_list **list, void *addr, int alen, int all); | ||
1020 | extern int __dev_addr_add(struct dev_addr_list **list, void *addr, int alen, int newonly); | ||
1021 | extern void __dev_addr_discard(struct dev_addr_list **list); | ||
1011 | extern void dev_set_promiscuity(struct net_device *dev, int inc); | 1022 | extern void dev_set_promiscuity(struct net_device *dev, int inc); |
1012 | extern void dev_set_allmulti(struct net_device *dev, int inc); | 1023 | extern void dev_set_allmulti(struct net_device *dev, int inc); |
1013 | extern void netdev_state_change(struct net_device *dev); | 1024 | extern void netdev_state_change(struct net_device *dev); |