Rev 422 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
422 | giacomo | 1 | /* |
2 | * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'. |
||
3 | * |
||
4 | * |
||
5 | * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes |
||
6 | * NCM: Network and Communications Management, Inc. |
||
7 | * |
||
8 | * BUT, I'm the one who modified it for ethernet, so: |
||
9 | * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov |
||
10 | * |
||
11 | * This software may be used and distributed according to the terms |
||
12 | * of the GNU Public License, incorporated herein by reference. |
||
13 | * |
||
14 | * 2003/03/18 - Amir Noam <amir.noam at intel dot com> |
||
15 | * - Added support for getting slave's speed and duplex via ethtool. |
||
16 | * Needed for 802.3ad and other future modes. |
||
17 | * |
||
18 | * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and |
||
19 | * Shmulik Hen <shmulik.hen at intel dot com> |
||
20 | * - Enable support of modes that need to use the unique mac address of |
||
21 | * each slave. |
||
22 | * |
||
23 | * 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and |
||
24 | * Amir Noam <amir.noam at intel dot com> |
||
25 | * - Moved driver's private data types to bonding.h |
||
26 | * |
||
27 | * 2003/03/18 - Amir Noam <amir.noam at intel dot com>, |
||
28 | * Tsippy Mendelson <tsippy.mendelson at intel dot com> and |
||
29 | * Shmulik Hen <shmulik.hen at intel dot com> |
||
30 | * - Added support for IEEE 802.3ad Dynamic link aggregation mode. |
||
31 | * |
||
32 | * 2003/05/01 - Amir Noam <amir.noam at intel dot com> |
||
33 | * - Added ABI version control to restore compatibility between |
||
34 | * new/old ifenslave and new/old bonding. |
||
35 | */ |
||
36 | |||
37 | #ifndef _LINUX_IF_BONDING_H |
||
38 | #define _LINUX_IF_BONDING_H |
||
39 | |||
40 | #include <linux/if.h> |
||
41 | #include <linux/types.h> |
||
42 | #include <linux/if_ether.h> |
||
43 | |||
44 | /* userland - kernel ABI version (2003/05/08) */ |
||
45 | #define BOND_ABI_VERSION 1 |
||
46 | |||
47 | /* |
||
48 | * We can remove these ioctl definitions in 2.5. People should use the |
||
49 | * SIOC*** versions of them instead |
||
50 | */ |
||
51 | #define BOND_ENSLAVE_OLD (SIOCDEVPRIVATE) |
||
52 | #define BOND_RELEASE_OLD (SIOCDEVPRIVATE + 1) |
||
53 | #define BOND_SETHWADDR_OLD (SIOCDEVPRIVATE + 2) |
||
54 | #define BOND_SLAVE_INFO_QUERY_OLD (SIOCDEVPRIVATE + 11) |
||
55 | #define BOND_INFO_QUERY_OLD (SIOCDEVPRIVATE + 12) |
||
56 | #define BOND_CHANGE_ACTIVE_OLD (SIOCDEVPRIVATE + 13) |
||
57 | |||
58 | #define BOND_CHECK_MII_STATUS (SIOCGMIIPHY) |
||
59 | |||
60 | #define BOND_MODE_ROUNDROBIN 0 |
||
61 | #define BOND_MODE_ACTIVEBACKUP 1 |
||
62 | #define BOND_MODE_XOR 2 |
||
63 | #define BOND_MODE_BROADCAST 3 |
||
64 | #define BOND_MODE_8023AD 4 |
||
65 | #define BOND_MODE_TLB 5 |
||
66 | #define BOND_MODE_ALB 6 /* TLB + RLB (receive load balancing) */ |
||
67 | |||
68 | /* each slave's link has 4 states */ |
||
69 | #define BOND_LINK_UP 0 /* link is up and running */ |
||
70 | #define BOND_LINK_FAIL 1 /* link has just gone down */ |
||
71 | #define BOND_LINK_DOWN 2 /* link has been down for too long time */ |
||
72 | #define BOND_LINK_BACK 3 /* link is going back */ |
||
73 | |||
74 | /* each slave has several states */ |
||
75 | #define BOND_STATE_ACTIVE 0 /* link is active */ |
||
76 | #define BOND_STATE_BACKUP 1 /* link is backup */ |
||
77 | |||
78 | #define BOND_DEFAULT_MAX_BONDS 1 /* Default maximum number of devices to support */ |
||
79 | |||
80 | #define BOND_MULTICAST_DISABLED 0 |
||
81 | #define BOND_MULTICAST_ACTIVE 1 |
||
82 | #define BOND_MULTICAST_ALL 2 |
||
83 | |||
84 | typedef struct ifbond { |
||
85 | __s32 bond_mode; |
||
86 | __s32 num_slaves; |
||
87 | __s32 miimon; |
||
88 | } ifbond; |
||
89 | |||
90 | typedef struct ifslave |
||
91 | { |
||
92 | __s32 slave_id; /* Used as an IN param to the BOND_SLAVE_INFO_QUERY ioctl */ |
||
93 | char slave_name[IFNAMSIZ]; |
||
94 | char link; |
||
95 | char state; |
||
96 | __u32 link_failure_count; |
||
97 | } ifslave; |
||
98 | |||
99 | struct ad_info { |
||
100 | __u16 aggregator_id; |
||
101 | __u16 ports; |
||
102 | __u16 actor_key; |
||
103 | __u16 partner_key; |
||
104 | __u8 partner_system[ETH_ALEN]; |
||
105 | }; |
||
106 | |||
107 | #endif /* _LINUX_IF_BONDING_H */ |
||
108 | |||
109 | /* |
||
110 | * Local variables: |
||
111 | * version-control: t |
||
112 | * kept-new-versions: 5 |
||
113 | * c-indent-level: 8 |
||
114 | * c-basic-offset: 8 |
||
115 | * tab-width: 8 |
||
116 | * End: |
||
117 | */ |