GNU Linux-libre 4.4.288-gnu1
[releases.git] / include / net / bonding.h
1 /*
2  * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'.
3  *
4  * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
5  * NCM: Network and Communications Management, Inc.
6  *
7  * BUT, I'm the one who modified it for ethernet, so:
8  * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov
9  *
10  *      This software may be used and distributed according to the terms
11  *      of the GNU Public License, incorporated herein by reference.
12  *
13  */
14
15 #ifndef _NET_BONDING_H
16 #define _NET_BONDING_H
17
18 #include <linux/timer.h>
19 #include <linux/proc_fs.h>
20 #include <linux/if_bonding.h>
21 #include <linux/cpumask.h>
22 #include <linux/in6.h>
23 #include <linux/netpoll.h>
24 #include <linux/inetdevice.h>
25 #include <linux/etherdevice.h>
26 #include <linux/reciprocal_div.h>
27 #include <linux/if_link.h>
28
29 #include <net/bond_3ad.h>
30 #include <net/bond_alb.h>
31 #include <net/bond_options.h>
32
33 #define BOND_MAX_ARP_TARGETS    16
34
35 #define BOND_DEFAULT_MIIMON     100
36
37 #ifndef __long_aligned
38 #define __long_aligned __attribute__((aligned((sizeof(long)))))
39 #endif
40 /*
41  * Less bad way to call ioctl from within the kernel; this needs to be
42  * done some other way to get the call out of interrupt context.
43  * Needs "ioctl" variable to be supplied by calling context.
44  */
45 #define IOCTL(dev, arg, cmd) ({         \
46         int res = 0;                    \
47         mm_segment_t fs = get_fs();     \
48         set_fs(get_ds());               \
49         res = ioctl(dev, arg, cmd);     \
50         set_fs(fs);                     \
51         res; })
52
53 #define BOND_MODE(bond) ((bond)->params.mode)
54
55 /* slave list primitives */
56 #define bond_slave_list(bond) (&(bond)->dev->adj_list.lower)
57
58 #define bond_has_slaves(bond) !list_empty(bond_slave_list(bond))
59
60 /* IMPORTANT: bond_first/last_slave can return NULL in case of an empty list */
61 #define bond_first_slave(bond) \
62         (bond_has_slaves(bond) ? \
63                 netdev_adjacent_get_private(bond_slave_list(bond)->next) : \
64                 NULL)
65 #define bond_last_slave(bond) \
66         (bond_has_slaves(bond) ? \
67                 netdev_adjacent_get_private(bond_slave_list(bond)->prev) : \
68                 NULL)
69
70 /* Caller must have rcu_read_lock */
71 #define bond_first_slave_rcu(bond) \
72         netdev_lower_get_first_private_rcu(bond->dev)
73
74 #define bond_is_first_slave(bond, pos) (pos == bond_first_slave(bond))
75 #define bond_is_last_slave(bond, pos) (pos == bond_last_slave(bond))
76
77 /**
78  * bond_for_each_slave - iterate over all slaves
79  * @bond:       the bond holding this list
80  * @pos:        current slave
81  * @iter:       list_head * iterator
82  *
83  * Caller must hold RTNL
84  */
85 #define bond_for_each_slave(bond, pos, iter) \
86         netdev_for_each_lower_private((bond)->dev, pos, iter)
87
88 /* Caller must have rcu_read_lock */
89 #define bond_for_each_slave_rcu(bond, pos, iter) \
90         netdev_for_each_lower_private_rcu((bond)->dev, pos, iter)
91
92 #ifdef CONFIG_NET_POLL_CONTROLLER
93 extern atomic_t netpoll_block_tx;
94
95 static inline void block_netpoll_tx(void)
96 {
97         atomic_inc(&netpoll_block_tx);
98 }
99
100 static inline void unblock_netpoll_tx(void)
101 {
102         atomic_dec(&netpoll_block_tx);
103 }
104
105 static inline int is_netpoll_tx_blocked(struct net_device *dev)
106 {
107         if (unlikely(netpoll_tx_running(dev)))
108                 return atomic_read(&netpoll_block_tx);
109         return 0;
110 }
111 #else
112 #define block_netpoll_tx()
113 #define unblock_netpoll_tx()
114 #define is_netpoll_tx_blocked(dev) (0)
115 #endif
116
117 struct bond_params {
118         int mode;
119         int xmit_policy;
120         int miimon;
121         u8 num_peer_notif;
122         int arp_interval;
123         int arp_validate;
124         int arp_all_targets;
125         int use_carrier;
126         int fail_over_mac;
127         int updelay;
128         int downdelay;
129         int lacp_fast;
130         unsigned int min_links;
131         int ad_select;
132         char primary[IFNAMSIZ];
133         int primary_reselect;
134         __be32 arp_targets[BOND_MAX_ARP_TARGETS];
135         int tx_queues;
136         int all_slaves_active;
137         int resend_igmp;
138         int lp_interval;
139         int packets_per_slave;
140         int tlb_dynamic_lb;
141         struct reciprocal_value reciprocal_packets_per_slave;
142         u16 ad_actor_sys_prio;
143         u16 ad_user_port_key;
144
145         /* 2 bytes of padding : see ether_addr_equal_64bits() */
146         u8 ad_actor_system[ETH_ALEN + 2];
147 };
148
149 struct bond_parm_tbl {
150         char *modename;
151         int mode;
152 };
153
154 struct slave {
155         struct net_device *dev; /* first - useful for panic debug */
156         struct bonding *bond; /* our master */
157         int    delay;
158         /* all three in jiffies */
159         unsigned long last_link_up;
160         unsigned long last_rx;
161         unsigned long target_last_arp_rx[BOND_MAX_ARP_TARGETS];
162         s8     link;    /* one of BOND_LINK_XXXX */
163         s8     new_link;
164         u8     backup:1,   /* indicates backup slave. Value corresponds with
165                               BOND_STATE_ACTIVE and BOND_STATE_BACKUP */
166                inactive:1, /* indicates inactive slave */
167                should_notify:1; /* indicateds whether the state changed */
168         u8     duplex;
169         u32    original_mtu;
170         u32    link_failure_count;
171         u32    speed;
172         u16    queue_id;
173         u8     perm_hwaddr[ETH_ALEN];
174         struct ad_slave_info *ad_info;
175         struct tlb_slave_info tlb_info;
176 #ifdef CONFIG_NET_POLL_CONTROLLER
177         struct netpoll *np;
178 #endif
179         struct delayed_work notify_work;
180         struct kobject kobj;
181         struct rtnl_link_stats64 slave_stats;
182 };
183
184 static inline struct slave *to_slave(struct kobject *kobj)
185 {
186         return container_of(kobj, struct slave, kobj);
187 }
188
189 struct bond_up_slave {
190         unsigned int    count;
191         struct rcu_head rcu;
192         struct slave    *arr[0];
193 };
194
195 /*
196  * Link pseudo-state only used internally by monitors
197  */
198 #define BOND_LINK_NOCHANGE -1
199
200 /*
201  * Here are the locking policies for the two bonding locks:
202  * Get rcu_read_lock when reading or RTNL when writing slave list.
203  */
204 struct bonding {
205         struct   net_device *dev; /* first - useful for panic debug */
206         struct   slave __rcu *curr_active_slave;
207         struct   slave __rcu *current_arp_slave;
208         struct   slave __rcu *primary_slave;
209         struct   bond_up_slave __rcu *slave_arr; /* Array of usable slaves */
210         bool     force_primary;
211         s32      slave_cnt; /* never change this value outside the attach/detach wrappers */
212         int     (*recv_probe)(const struct sk_buff *, struct bonding *,
213                               struct slave *);
214         /* mode_lock is used for mode-specific locking needs, currently used by:
215          * 3ad mode (4) - protect against running bond_3ad_unbind_slave() and
216          *                bond_3ad_state_machine_handler() concurrently and also
217          *                the access to the state machine shared variables.
218          * TLB mode (5) - to sync the use and modifications of its hash table
219          * ALB mode (6) - to sync the use and modifications of its hash table
220          */
221         spinlock_t mode_lock;
222         spinlock_t stats_lock;
223         u8       send_peer_notif;
224         u8       igmp_retrans;
225 #ifdef CONFIG_PROC_FS
226         struct   proc_dir_entry *proc_entry;
227         char     proc_file_name[IFNAMSIZ];
228 #endif /* CONFIG_PROC_FS */
229         struct   list_head bond_list;
230         u32      rr_tx_counter;
231         struct   ad_bond_info ad_info;
232         struct   alb_bond_info alb_info;
233         struct   bond_params params;
234         struct   workqueue_struct *wq;
235         struct   delayed_work mii_work;
236         struct   delayed_work arp_work;
237         struct   delayed_work alb_work;
238         struct   delayed_work ad_work;
239         struct   delayed_work mcast_work;
240         struct   delayed_work slave_arr_work;
241 #ifdef CONFIG_DEBUG_FS
242         /* debugging support via debugfs */
243         struct   dentry *debug_dir;
244 #endif /* CONFIG_DEBUG_FS */
245         struct rtnl_link_stats64 bond_stats;
246 };
247
248 #define bond_slave_get_rcu(dev) \
249         ((struct slave *) rcu_dereference(dev->rx_handler_data))
250
251 #define bond_slave_get_rtnl(dev) \
252         ((struct slave *) rtnl_dereference(dev->rx_handler_data))
253
254 void bond_queue_slave_event(struct slave *slave);
255
256 struct bond_vlan_tag {
257         __be16          vlan_proto;
258         unsigned short  vlan_id;
259 };
260
261 /**
262  * Returns NULL if the net_device does not belong to any of the bond's slaves
263  *
264  * Caller must hold bond lock for read
265  */
266 static inline struct slave *bond_get_slave_by_dev(struct bonding *bond,
267                                                   struct net_device *slave_dev)
268 {
269         return netdev_lower_dev_get_private(bond->dev, slave_dev);
270 }
271
272 static inline struct bonding *bond_get_bond_by_slave(struct slave *slave)
273 {
274         return slave->bond;
275 }
276
277 static inline bool bond_should_override_tx_queue(struct bonding *bond)
278 {
279         return BOND_MODE(bond) == BOND_MODE_ACTIVEBACKUP ||
280                BOND_MODE(bond) == BOND_MODE_ROUNDROBIN;
281 }
282
283 static inline bool bond_is_lb(const struct bonding *bond)
284 {
285         return BOND_MODE(bond) == BOND_MODE_TLB ||
286                BOND_MODE(bond) == BOND_MODE_ALB;
287 }
288
289 static inline bool bond_is_nondyn_tlb(const struct bonding *bond)
290 {
291         return (BOND_MODE(bond) == BOND_MODE_TLB)  &&
292                (bond->params.tlb_dynamic_lb == 0);
293 }
294
295 static inline bool bond_mode_uses_xmit_hash(const struct bonding *bond)
296 {
297         return (BOND_MODE(bond) == BOND_MODE_8023AD ||
298                 BOND_MODE(bond) == BOND_MODE_XOR ||
299                 bond_is_nondyn_tlb(bond));
300 }
301
302 static inline bool bond_mode_uses_arp(int mode)
303 {
304         return mode != BOND_MODE_8023AD && mode != BOND_MODE_TLB &&
305                mode != BOND_MODE_ALB;
306 }
307
308 static inline bool bond_mode_uses_primary(int mode)
309 {
310         return mode == BOND_MODE_ACTIVEBACKUP || mode == BOND_MODE_TLB ||
311                mode == BOND_MODE_ALB;
312 }
313
314 static inline bool bond_uses_primary(struct bonding *bond)
315 {
316         return bond_mode_uses_primary(BOND_MODE(bond));
317 }
318
319 static inline struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond)
320 {
321         struct slave *slave = rcu_dereference(bond->curr_active_slave);
322
323         return bond_uses_primary(bond) && slave ? slave->dev : NULL;
324 }
325
326 static inline bool bond_slave_is_up(struct slave *slave)
327 {
328         return netif_running(slave->dev) && netif_carrier_ok(slave->dev);
329 }
330
331 static inline void bond_set_active_slave(struct slave *slave)
332 {
333         if (slave->backup) {
334                 slave->backup = 0;
335                 bond_queue_slave_event(slave);
336                 rtmsg_ifinfo(RTM_NEWLINK, slave->dev, 0, GFP_ATOMIC);
337         }
338 }
339
340 static inline void bond_set_backup_slave(struct slave *slave)
341 {
342         if (!slave->backup) {
343                 slave->backup = 1;
344                 bond_queue_slave_event(slave);
345                 rtmsg_ifinfo(RTM_NEWLINK, slave->dev, 0, GFP_ATOMIC);
346         }
347 }
348
349 static inline void bond_set_slave_state(struct slave *slave,
350                                         int slave_state, bool notify)
351 {
352         if (slave->backup == slave_state)
353                 return;
354
355         slave->backup = slave_state;
356         if (notify) {
357                 rtmsg_ifinfo(RTM_NEWLINK, slave->dev, 0, GFP_ATOMIC);
358                 bond_queue_slave_event(slave);
359                 slave->should_notify = 0;
360         } else {
361                 if (slave->should_notify)
362                         slave->should_notify = 0;
363                 else
364                         slave->should_notify = 1;
365         }
366 }
367
368 static inline void bond_slave_state_change(struct bonding *bond)
369 {
370         struct list_head *iter;
371         struct slave *tmp;
372
373         bond_for_each_slave(bond, tmp, iter) {
374                 if (tmp->link == BOND_LINK_UP)
375                         bond_set_active_slave(tmp);
376                 else if (tmp->link == BOND_LINK_DOWN)
377                         bond_set_backup_slave(tmp);
378         }
379 }
380
381 static inline void bond_slave_state_notify(struct bonding *bond)
382 {
383         struct list_head *iter;
384         struct slave *tmp;
385
386         bond_for_each_slave(bond, tmp, iter) {
387                 if (tmp->should_notify) {
388                         rtmsg_ifinfo(RTM_NEWLINK, tmp->dev, 0, GFP_ATOMIC);
389                         tmp->should_notify = 0;
390                 }
391         }
392 }
393
394 static inline int bond_slave_state(struct slave *slave)
395 {
396         return slave->backup;
397 }
398
399 static inline bool bond_is_active_slave(struct slave *slave)
400 {
401         return !bond_slave_state(slave);
402 }
403
404 static inline bool bond_slave_can_tx(struct slave *slave)
405 {
406         return bond_slave_is_up(slave) && slave->link == BOND_LINK_UP &&
407                bond_is_active_slave(slave);
408 }
409
410 #define BOND_PRI_RESELECT_ALWAYS        0
411 #define BOND_PRI_RESELECT_BETTER        1
412 #define BOND_PRI_RESELECT_FAILURE       2
413
414 #define BOND_FOM_NONE                   0
415 #define BOND_FOM_ACTIVE                 1
416 #define BOND_FOM_FOLLOW                 2
417
418 #define BOND_ARP_TARGETS_ANY            0
419 #define BOND_ARP_TARGETS_ALL            1
420
421 #define BOND_ARP_VALIDATE_NONE          0
422 #define BOND_ARP_VALIDATE_ACTIVE        (1 << BOND_STATE_ACTIVE)
423 #define BOND_ARP_VALIDATE_BACKUP        (1 << BOND_STATE_BACKUP)
424 #define BOND_ARP_VALIDATE_ALL           (BOND_ARP_VALIDATE_ACTIVE | \
425                                          BOND_ARP_VALIDATE_BACKUP)
426 #define BOND_ARP_FILTER                 (BOND_ARP_VALIDATE_ALL + 1)
427 #define BOND_ARP_FILTER_ACTIVE          (BOND_ARP_VALIDATE_ACTIVE | \
428                                          BOND_ARP_FILTER)
429 #define BOND_ARP_FILTER_BACKUP          (BOND_ARP_VALIDATE_BACKUP | \
430                                          BOND_ARP_FILTER)
431
432 #define BOND_SLAVE_NOTIFY_NOW           true
433 #define BOND_SLAVE_NOTIFY_LATER         false
434
435 static inline int slave_do_arp_validate(struct bonding *bond,
436                                         struct slave *slave)
437 {
438         return bond->params.arp_validate & (1 << bond_slave_state(slave));
439 }
440
441 static inline int slave_do_arp_validate_only(struct bonding *bond)
442 {
443         return bond->params.arp_validate & BOND_ARP_FILTER;
444 }
445
446 static inline int bond_is_ip_target_ok(__be32 addr)
447 {
448         return !ipv4_is_lbcast(addr) && !ipv4_is_zeronet(addr);
449 }
450
451 /* Get the oldest arp which we've received on this slave for bond's
452  * arp_targets.
453  */
454 static inline unsigned long slave_oldest_target_arp_rx(struct bonding *bond,
455                                                        struct slave *slave)
456 {
457         int i = 1;
458         unsigned long ret = slave->target_last_arp_rx[0];
459
460         for (; (i < BOND_MAX_ARP_TARGETS) && bond->params.arp_targets[i]; i++)
461                 if (time_before(slave->target_last_arp_rx[i], ret))
462                         ret = slave->target_last_arp_rx[i];
463
464         return ret;
465 }
466
467 static inline unsigned long slave_last_rx(struct bonding *bond,
468                                         struct slave *slave)
469 {
470         if (bond->params.arp_all_targets == BOND_ARP_TARGETS_ALL)
471                 return slave_oldest_target_arp_rx(bond, slave);
472
473         return slave->last_rx;
474 }
475
476 #ifdef CONFIG_NET_POLL_CONTROLLER
477 static inline void bond_netpoll_send_skb(const struct slave *slave,
478                                          struct sk_buff *skb)
479 {
480         struct netpoll *np = slave->np;
481
482         if (np)
483                 netpoll_send_skb(np, skb);
484 }
485 #else
486 static inline void bond_netpoll_send_skb(const struct slave *slave,
487                                          struct sk_buff *skb)
488 {
489 }
490 #endif
491
492 static inline void bond_set_slave_inactive_flags(struct slave *slave,
493                                                  bool notify)
494 {
495         if (!bond_is_lb(slave->bond))
496                 bond_set_slave_state(slave, BOND_STATE_BACKUP, notify);
497         if (!slave->bond->params.all_slaves_active)
498                 slave->inactive = 1;
499 }
500
501 static inline void bond_set_slave_active_flags(struct slave *slave,
502                                                bool notify)
503 {
504         bond_set_slave_state(slave, BOND_STATE_ACTIVE, notify);
505         slave->inactive = 0;
506 }
507
508 static inline bool bond_is_slave_inactive(struct slave *slave)
509 {
510         return slave->inactive;
511 }
512
513 static inline void bond_set_slave_link_state(struct slave *slave, int state)
514 {
515         slave->link = state;
516         bond_queue_slave_event(slave);
517 }
518
519 static inline __be32 bond_confirm_addr(struct net_device *dev, __be32 dst, __be32 local)
520 {
521         struct in_device *in_dev;
522         __be32 addr = 0;
523
524         rcu_read_lock();
525         in_dev = __in_dev_get_rcu(dev);
526
527         if (in_dev)
528                 addr = inet_confirm_addr(dev_net(dev), in_dev, dst, local,
529                                          RT_SCOPE_HOST);
530         rcu_read_unlock();
531         return addr;
532 }
533
534 struct bond_net {
535         struct net              *net;   /* Associated network namespace */
536         struct list_head        dev_list;
537 #ifdef CONFIG_PROC_FS
538         struct proc_dir_entry   *proc_dir;
539 #endif
540         struct class_attribute  class_attr_bonding_masters;
541 };
542
543 int bond_arp_rcv(const struct sk_buff *skb, struct bonding *bond, struct slave *slave);
544 void bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb, struct net_device *slave_dev);
545 int bond_create(struct net *net, const char *name);
546 int bond_create_sysfs(struct bond_net *net);
547 void bond_destroy_sysfs(struct bond_net *net);
548 void bond_prepare_sysfs_group(struct bonding *bond);
549 int bond_sysfs_slave_add(struct slave *slave);
550 void bond_sysfs_slave_del(struct slave *slave);
551 int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev);
552 int bond_release(struct net_device *bond_dev, struct net_device *slave_dev);
553 u32 bond_xmit_hash(struct bonding *bond, struct sk_buff *skb);
554 int bond_set_carrier(struct bonding *bond);
555 void bond_select_active_slave(struct bonding *bond);
556 void bond_change_active_slave(struct bonding *bond, struct slave *new_active);
557 void bond_create_debugfs(void);
558 void bond_destroy_debugfs(void);
559 void bond_debug_register(struct bonding *bond);
560 void bond_debug_unregister(struct bonding *bond);
561 void bond_debug_reregister(struct bonding *bond);
562 const char *bond_mode_name(int mode);
563 void bond_setup(struct net_device *bond_dev);
564 unsigned int bond_get_num_tx_queues(void);
565 int bond_netlink_init(void);
566 void bond_netlink_fini(void);
567 struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond);
568 const char *bond_slave_link_status(s8 link);
569 struct bond_vlan_tag *bond_verify_device_path(struct net_device *start_dev,
570                                               struct net_device *end_dev,
571                                               int level);
572 int bond_update_slave_arr(struct bonding *bond, struct slave *skipslave);
573 void bond_slave_arr_work_rearm(struct bonding *bond, unsigned long delay);
574
575 #ifdef CONFIG_PROC_FS
576 void bond_create_proc_entry(struct bonding *bond);
577 void bond_remove_proc_entry(struct bonding *bond);
578 void bond_create_proc_dir(struct bond_net *bn);
579 void bond_destroy_proc_dir(struct bond_net *bn);
580 #else
581 static inline void bond_create_proc_entry(struct bonding *bond)
582 {
583 }
584
585 static inline void bond_remove_proc_entry(struct bonding *bond)
586 {
587 }
588
589 static inline void bond_create_proc_dir(struct bond_net *bn)
590 {
591 }
592
593 static inline void bond_destroy_proc_dir(struct bond_net *bn)
594 {
595 }
596 #endif
597
598 static inline struct slave *bond_slave_has_mac(struct bonding *bond,
599                                                const u8 *mac)
600 {
601         struct list_head *iter;
602         struct slave *tmp;
603
604         bond_for_each_slave(bond, tmp, iter)
605                 if (ether_addr_equal_64bits(mac, tmp->dev->dev_addr))
606                         return tmp;
607
608         return NULL;
609 }
610
611 /* Caller must hold rcu_read_lock() for read */
612 static inline struct slave *bond_slave_has_mac_rcu(struct bonding *bond,
613                                                const u8 *mac)
614 {
615         struct list_head *iter;
616         struct slave *tmp;
617
618         bond_for_each_slave_rcu(bond, tmp, iter)
619                 if (ether_addr_equal_64bits(mac, tmp->dev->dev_addr))
620                         return tmp;
621
622         return NULL;
623 }
624
625 /* Caller must hold rcu_read_lock() for read */
626 static inline bool bond_slave_has_mac_rx(struct bonding *bond, const u8 *mac)
627 {
628         struct list_head *iter;
629         struct slave *tmp;
630         struct netdev_hw_addr *ha;
631
632         bond_for_each_slave_rcu(bond, tmp, iter)
633                 if (ether_addr_equal_64bits(mac, tmp->dev->dev_addr))
634                         return true;
635
636         if (netdev_uc_empty(bond->dev))
637                 return false;
638
639         netdev_for_each_uc_addr(ha, bond->dev)
640                 if (ether_addr_equal_64bits(mac, ha->addr))
641                         return true;
642
643         return false;
644 }
645
646 /* Check if the ip is present in arp ip list, or first free slot if ip == 0
647  * Returns -1 if not found, index if found
648  */
649 static inline int bond_get_targets_ip(__be32 *targets, __be32 ip)
650 {
651         int i;
652
653         for (i = 0; i < BOND_MAX_ARP_TARGETS; i++)
654                 if (targets[i] == ip)
655                         return i;
656                 else if (targets[i] == 0)
657                         break;
658
659         return -1;
660 }
661
662 /* exported from bond_main.c */
663 extern int bond_net_id;
664 extern const struct bond_parm_tbl bond_lacp_tbl[];
665 extern const struct bond_parm_tbl xmit_hashtype_tbl[];
666 extern const struct bond_parm_tbl arp_validate_tbl[];
667 extern const struct bond_parm_tbl arp_all_targets_tbl[];
668 extern const struct bond_parm_tbl fail_over_mac_tbl[];
669 extern const struct bond_parm_tbl pri_reselect_tbl[];
670 extern struct bond_parm_tbl ad_select_tbl[];
671
672 /* exported from bond_netlink.c */
673 extern struct rtnl_link_ops bond_link_ops;
674
675 /* exported from bond_sysfs_slave.c */
676 extern const struct sysfs_ops slave_sysfs_ops;
677
678 static inline void bond_tx_drop(struct net_device *dev, struct sk_buff *skb)
679 {
680         atomic_long_inc(&dev->tx_dropped);
681         dev_kfree_skb_any(skb);
682 }
683
684 #endif /* _NET_BONDING_H */