2 * Copyright(c) 2004-2005 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/device.h>
28 #include <linux/sched.h>
29 #include <linux/sysdev.h>
31 #include <linux/types.h>
32 #include <linux/string.h>
33 #include <linux/netdevice.h>
34 #include <linux/inetdevice.h>
36 #include <linux/sysfs.h>
37 #include <linux/ctype.h>
38 #include <linux/inet.h>
39 #include <linux/rtnetlink.h>
40 #include <linux/etherdevice.h>
41 #include <net/net_namespace.h>
42 #include <net/netns/generic.h>
43 #include <linux/nsproxy.h>
47 #define to_dev(obj) container_of(obj, struct device, kobj)
48 #define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
51 * "show" function for the bond_masters attribute.
52 * The class parameter is ignored.
54 static ssize_t
bonding_show_bonds(struct class *cls
,
55 struct class_attribute
*attr
,
58 struct net
*net
= current
->nsproxy
->net_ns
;
59 struct bond_net
*bn
= net_generic(net
, bond_net_id
);
65 list_for_each_entry(bond
, &bn
->dev_list
, bond_list
) {
66 if (res
> (PAGE_SIZE
- IFNAMSIZ
)) {
67 /* not enough space for another interface name */
68 if ((PAGE_SIZE
- res
) > 10)
70 res
+= sprintf(buf
+ res
, "++more++ ");
73 res
+= sprintf(buf
+ res
, "%s ", bond
->dev
->name
);
76 buf
[res
-1] = '\n'; /* eat the leftover space */
82 static struct net_device
*bond_get_by_name(struct net
*net
, const char *ifname
)
84 struct bond_net
*bn
= net_generic(net
, bond_net_id
);
87 list_for_each_entry(bond
, &bn
->dev_list
, bond_list
) {
88 if (strncmp(bond
->dev
->name
, ifname
, IFNAMSIZ
) == 0)
95 * "store" function for the bond_masters attribute. This is what
96 * creates and deletes entire bonds.
98 * The class parameter is ignored.
102 static ssize_t
bonding_store_bonds(struct class *cls
,
103 struct class_attribute
*attr
,
104 const char *buffer
, size_t count
)
106 struct net
*net
= current
->nsproxy
->net_ns
;
107 char command
[IFNAMSIZ
+ 1] = {0, };
111 sscanf(buffer
, "%16s", command
); /* IFNAMSIZ*/
112 ifname
= command
+ 1;
113 if ((strlen(command
) <= 1) ||
114 !dev_valid_name(ifname
))
117 if (command
[0] == '+') {
118 pr_info("%s is being created...\n", ifname
);
119 rv
= bond_create(net
, ifname
);
122 pr_info("%s already exists.\n", ifname
);
124 pr_info("%s creation failed.\n", ifname
);
127 } else if (command
[0] == '-') {
128 struct net_device
*bond_dev
;
131 bond_dev
= bond_get_by_name(net
, ifname
);
133 pr_info("%s is being deleted...\n", ifname
);
134 unregister_netdevice(bond_dev
);
136 pr_err("unable to delete non-existent %s\n", ifname
);
143 /* Always return either count or an error. If you return 0, you'll
144 * get called forever, which is bad.
149 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
153 /* class attribute for bond_masters file. This ends up in /sys/class/net */
154 static CLASS_ATTR(bonding_masters
, S_IWUSR
| S_IRUGO
,
155 bonding_show_bonds
, bonding_store_bonds
);
157 int bond_create_slave_symlinks(struct net_device
*master
,
158 struct net_device
*slave
)
160 char linkname
[IFNAMSIZ
+7];
163 /* first, create a link from the slave back to the master */
164 ret
= sysfs_create_link(&(slave
->dev
.kobj
), &(master
->dev
.kobj
),
168 /* next, create a link from the master to the slave */
169 sprintf(linkname
, "slave_%s", slave
->name
);
170 ret
= sysfs_create_link(&(master
->dev
.kobj
), &(slave
->dev
.kobj
),
176 void bond_destroy_slave_symlinks(struct net_device
*master
,
177 struct net_device
*slave
)
179 char linkname
[IFNAMSIZ
+7];
181 sysfs_remove_link(&(slave
->dev
.kobj
), "master");
182 sprintf(linkname
, "slave_%s", slave
->name
);
183 sysfs_remove_link(&(master
->dev
.kobj
), linkname
);
188 * Show the slaves in the current bond.
190 static ssize_t
bonding_show_slaves(struct device
*d
,
191 struct device_attribute
*attr
, char *buf
)
195 struct bonding
*bond
= to_bond(d
);
197 read_lock(&bond
->lock
);
198 bond_for_each_slave(bond
, slave
, i
) {
199 if (res
> (PAGE_SIZE
- IFNAMSIZ
)) {
200 /* not enough space for another interface name */
201 if ((PAGE_SIZE
- res
) > 10)
202 res
= PAGE_SIZE
- 10;
203 res
+= sprintf(buf
+ res
, "++more++ ");
206 res
+= sprintf(buf
+ res
, "%s ", slave
->dev
->name
);
208 read_unlock(&bond
->lock
);
210 buf
[res
-1] = '\n'; /* eat the leftover space */
215 * Set the slaves in the current bond. The bond interface must be
216 * up for this to succeed.
217 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
218 * All hard work should be done there.
220 static ssize_t
bonding_store_slaves(struct device
*d
,
221 struct device_attribute
*attr
,
222 const char *buffer
, size_t count
)
224 char command
[IFNAMSIZ
+ 1] = { 0, };
226 int res
, ret
= count
;
227 struct net_device
*dev
;
228 struct bonding
*bond
= to_bond(d
);
231 return restart_syscall();
233 sscanf(buffer
, "%16s", command
); /* IFNAMSIZ*/
234 ifname
= command
+ 1;
235 if ((strlen(command
) <= 1) ||
236 !dev_valid_name(ifname
))
239 dev
= __dev_get_by_name(dev_net(bond
->dev
), ifname
);
241 pr_info("%s: Interface %s does not exist!\n",
242 bond
->dev
->name
, ifname
);
247 switch (command
[0]) {
249 pr_info("%s: Adding slave %s.\n", bond
->dev
->name
, dev
->name
);
250 res
= bond_enslave(bond
->dev
, dev
);
254 pr_info("%s: Removing slave %s.\n", bond
->dev
->name
, dev
->name
);
255 res
= bond_release(bond
->dev
, dev
);
267 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
276 static DEVICE_ATTR(slaves
, S_IRUGO
| S_IWUSR
, bonding_show_slaves
,
277 bonding_store_slaves
);
280 * Show and set the bonding mode. The bond interface must be down to
283 static ssize_t
bonding_show_mode(struct device
*d
,
284 struct device_attribute
*attr
, char *buf
)
286 struct bonding
*bond
= to_bond(d
);
288 return sprintf(buf
, "%s %d\n",
289 bond_mode_tbl
[bond
->params
.mode
].modename
,
293 static ssize_t
bonding_store_mode(struct device
*d
,
294 struct device_attribute
*attr
,
295 const char *buf
, size_t count
)
297 int new_value
, ret
= count
;
298 struct bonding
*bond
= to_bond(d
);
300 if (bond
->dev
->flags
& IFF_UP
) {
301 pr_err("unable to update mode of %s because interface is up.\n",
307 new_value
= bond_parse_parm(buf
, bond_mode_tbl
);
309 pr_err("%s: Ignoring invalid mode value %.*s.\n",
310 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
314 if ((new_value
== BOND_MODE_ALB
||
315 new_value
== BOND_MODE_TLB
) &&
316 bond
->params
.arp_interval
) {
317 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
318 bond
->dev
->name
, bond_mode_tbl
[new_value
].modename
);
323 bond
->params
.mode
= new_value
;
324 bond_set_mode_ops(bond
, bond
->params
.mode
);
325 pr_info("%s: setting mode to %s (%d).\n",
326 bond
->dev
->name
, bond_mode_tbl
[new_value
].modename
,
331 static DEVICE_ATTR(mode
, S_IRUGO
| S_IWUSR
,
332 bonding_show_mode
, bonding_store_mode
);
335 * Show and set the bonding transmit hash method.
336 * The bond interface must be down to change the xmit hash policy.
338 static ssize_t
bonding_show_xmit_hash(struct device
*d
,
339 struct device_attribute
*attr
,
342 struct bonding
*bond
= to_bond(d
);
344 return sprintf(buf
, "%s %d\n",
345 xmit_hashtype_tbl
[bond
->params
.xmit_policy
].modename
,
346 bond
->params
.xmit_policy
);
349 static ssize_t
bonding_store_xmit_hash(struct device
*d
,
350 struct device_attribute
*attr
,
351 const char *buf
, size_t count
)
353 int new_value
, ret
= count
;
354 struct bonding
*bond
= to_bond(d
);
356 if (bond
->dev
->flags
& IFF_UP
) {
357 pr_err("%s: Interface is up. Unable to update xmit policy.\n",
363 new_value
= bond_parse_parm(buf
, xmit_hashtype_tbl
);
365 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
367 (int)strlen(buf
) - 1, buf
);
371 bond
->params
.xmit_policy
= new_value
;
372 bond_set_mode_ops(bond
, bond
->params
.mode
);
373 pr_info("%s: setting xmit hash policy to %s (%d).\n",
375 xmit_hashtype_tbl
[new_value
].modename
, new_value
);
380 static DEVICE_ATTR(xmit_hash_policy
, S_IRUGO
| S_IWUSR
,
381 bonding_show_xmit_hash
, bonding_store_xmit_hash
);
384 * Show and set arp_validate.
386 static ssize_t
bonding_show_arp_validate(struct device
*d
,
387 struct device_attribute
*attr
,
390 struct bonding
*bond
= to_bond(d
);
392 return sprintf(buf
, "%s %d\n",
393 arp_validate_tbl
[bond
->params
.arp_validate
].modename
,
394 bond
->params
.arp_validate
);
397 static ssize_t
bonding_store_arp_validate(struct device
*d
,
398 struct device_attribute
*attr
,
399 const char *buf
, size_t count
)
402 struct bonding
*bond
= to_bond(d
);
404 new_value
= bond_parse_parm(buf
, arp_validate_tbl
);
406 pr_err("%s: Ignoring invalid arp_validate value %s\n",
407 bond
->dev
->name
, buf
);
410 if (new_value
&& (bond
->params
.mode
!= BOND_MODE_ACTIVEBACKUP
)) {
411 pr_err("%s: arp_validate only supported in active-backup mode.\n",
415 pr_info("%s: setting arp_validate to %s (%d).\n",
416 bond
->dev
->name
, arp_validate_tbl
[new_value
].modename
,
419 bond
->params
.arp_validate
= new_value
;
424 static DEVICE_ATTR(arp_validate
, S_IRUGO
| S_IWUSR
, bonding_show_arp_validate
,
425 bonding_store_arp_validate
);
428 * Show and store fail_over_mac. User only allowed to change the
429 * value when there are no slaves.
431 static ssize_t
bonding_show_fail_over_mac(struct device
*d
,
432 struct device_attribute
*attr
,
435 struct bonding
*bond
= to_bond(d
);
437 return sprintf(buf
, "%s %d\n",
438 fail_over_mac_tbl
[bond
->params
.fail_over_mac
].modename
,
439 bond
->params
.fail_over_mac
);
442 static ssize_t
bonding_store_fail_over_mac(struct device
*d
,
443 struct device_attribute
*attr
,
444 const char *buf
, size_t count
)
447 struct bonding
*bond
= to_bond(d
);
449 if (bond
->slave_cnt
!= 0) {
450 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
455 new_value
= bond_parse_parm(buf
, fail_over_mac_tbl
);
457 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
458 bond
->dev
->name
, buf
);
462 bond
->params
.fail_over_mac
= new_value
;
463 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
464 bond
->dev
->name
, fail_over_mac_tbl
[new_value
].modename
,
470 static DEVICE_ATTR(fail_over_mac
, S_IRUGO
| S_IWUSR
,
471 bonding_show_fail_over_mac
, bonding_store_fail_over_mac
);
474 * Show and set the arp timer interval. There are two tricky bits
475 * here. First, if ARP monitoring is activated, then we must disable
476 * MII monitoring. Second, if the ARP timer isn't running, we must
479 static ssize_t
bonding_show_arp_interval(struct device
*d
,
480 struct device_attribute
*attr
,
483 struct bonding
*bond
= to_bond(d
);
485 return sprintf(buf
, "%d\n", bond
->params
.arp_interval
);
488 static ssize_t
bonding_store_arp_interval(struct device
*d
,
489 struct device_attribute
*attr
,
490 const char *buf
, size_t count
)
492 int new_value
, ret
= count
;
493 struct bonding
*bond
= to_bond(d
);
495 if (sscanf(buf
, "%d", &new_value
) != 1) {
496 pr_err("%s: no arp_interval value specified.\n",
502 pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
503 bond
->dev
->name
, new_value
, INT_MAX
);
507 if (bond
->params
.mode
== BOND_MODE_ALB
||
508 bond
->params
.mode
== BOND_MODE_TLB
) {
509 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
510 bond
->dev
->name
, bond
->dev
->name
);
514 pr_info("%s: Setting ARP monitoring interval to %d.\n",
515 bond
->dev
->name
, new_value
);
516 bond
->params
.arp_interval
= new_value
;
517 if (bond
->params
.miimon
) {
518 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
519 bond
->dev
->name
, bond
->dev
->name
);
520 bond
->params
.miimon
= 0;
521 if (delayed_work_pending(&bond
->mii_work
)) {
522 cancel_delayed_work(&bond
->mii_work
);
523 flush_workqueue(bond
->wq
);
526 if (!bond
->params
.arp_targets
[0]) {
527 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
530 if (bond
->dev
->flags
& IFF_UP
) {
531 /* If the interface is up, we may need to fire off
532 * the ARP timer. If the interface is down, the
533 * timer will get fired off when the open function
536 if (!delayed_work_pending(&bond
->arp_work
)) {
537 if (bond
->params
.mode
== BOND_MODE_ACTIVEBACKUP
)
538 INIT_DELAYED_WORK(&bond
->arp_work
,
539 bond_activebackup_arp_mon
);
541 INIT_DELAYED_WORK(&bond
->arp_work
,
542 bond_loadbalance_arp_mon
);
544 queue_delayed_work(bond
->wq
, &bond
->arp_work
, 0);
551 static DEVICE_ATTR(arp_interval
, S_IRUGO
| S_IWUSR
,
552 bonding_show_arp_interval
, bonding_store_arp_interval
);
555 * Show and set the arp targets.
557 static ssize_t
bonding_show_arp_targets(struct device
*d
,
558 struct device_attribute
*attr
,
562 struct bonding
*bond
= to_bond(d
);
564 for (i
= 0; i
< BOND_MAX_ARP_TARGETS
; i
++) {
565 if (bond
->params
.arp_targets
[i
])
566 res
+= sprintf(buf
+ res
, "%pI4 ",
567 &bond
->params
.arp_targets
[i
]);
570 buf
[res
-1] = '\n'; /* eat the leftover space */
574 static ssize_t
bonding_store_arp_targets(struct device
*d
,
575 struct device_attribute
*attr
,
576 const char *buf
, size_t count
)
579 int i
= 0, done
= 0, ret
= count
;
580 struct bonding
*bond
= to_bond(d
);
583 targets
= bond
->params
.arp_targets
;
584 newtarget
= in_aton(buf
+ 1);
587 if ((newtarget
== 0) || (newtarget
== htonl(INADDR_BROADCAST
))) {
588 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
589 bond
->dev
->name
, &newtarget
);
593 /* look for an empty slot to put the target in, and check for dupes */
594 for (i
= 0; (i
< BOND_MAX_ARP_TARGETS
) && !done
; i
++) {
595 if (targets
[i
] == newtarget
) { /* duplicate */
596 pr_err("%s: ARP target %pI4 is already present\n",
597 bond
->dev
->name
, &newtarget
);
601 if (targets
[i
] == 0) {
602 pr_info("%s: adding ARP target %pI4.\n",
603 bond
->dev
->name
, &newtarget
);
605 targets
[i
] = newtarget
;
609 pr_err("%s: ARP target table is full!\n",
615 } else if (buf
[0] == '-') {
616 if ((newtarget
== 0) || (newtarget
== htonl(INADDR_BROADCAST
))) {
617 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
618 bond
->dev
->name
, &newtarget
);
623 for (i
= 0; (i
< BOND_MAX_ARP_TARGETS
) && !done
; i
++) {
624 if (targets
[i
] == newtarget
) {
626 pr_info("%s: removing ARP target %pI4.\n",
627 bond
->dev
->name
, &newtarget
);
628 for (j
= i
; (j
< (BOND_MAX_ARP_TARGETS
-1)) && targets
[j
+1]; j
++)
629 targets
[j
] = targets
[j
+1];
636 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
637 bond
->dev
->name
, &newtarget
);
642 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
651 static DEVICE_ATTR(arp_ip_target
, S_IRUGO
| S_IWUSR
, bonding_show_arp_targets
, bonding_store_arp_targets
);
654 * Show and set the up and down delays. These must be multiples of the
655 * MII monitoring value, and are stored internally as the multiplier.
656 * Thus, we must translate to MS for the real world.
658 static ssize_t
bonding_show_downdelay(struct device
*d
,
659 struct device_attribute
*attr
,
662 struct bonding
*bond
= to_bond(d
);
664 return sprintf(buf
, "%d\n", bond
->params
.downdelay
* bond
->params
.miimon
);
667 static ssize_t
bonding_store_downdelay(struct device
*d
,
668 struct device_attribute
*attr
,
669 const char *buf
, size_t count
)
671 int new_value
, ret
= count
;
672 struct bonding
*bond
= to_bond(d
);
674 if (!(bond
->params
.miimon
)) {
675 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
681 if (sscanf(buf
, "%d", &new_value
) != 1) {
682 pr_err("%s: no down delay value specified.\n", bond
->dev
->name
);
687 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
688 bond
->dev
->name
, new_value
, 1, INT_MAX
);
692 if ((new_value
% bond
->params
.miimon
) != 0) {
693 pr_warning("%s: Warning: down delay (%d) is not a multiple of miimon (%d), delay rounded to %d ms\n",
694 bond
->dev
->name
, new_value
,
696 (new_value
/ bond
->params
.miimon
) *
697 bond
->params
.miimon
);
699 bond
->params
.downdelay
= new_value
/ bond
->params
.miimon
;
700 pr_info("%s: Setting down delay to %d.\n",
702 bond
->params
.downdelay
* bond
->params
.miimon
);
709 static DEVICE_ATTR(downdelay
, S_IRUGO
| S_IWUSR
,
710 bonding_show_downdelay
, bonding_store_downdelay
);
712 static ssize_t
bonding_show_updelay(struct device
*d
,
713 struct device_attribute
*attr
,
716 struct bonding
*bond
= to_bond(d
);
718 return sprintf(buf
, "%d\n", bond
->params
.updelay
* bond
->params
.miimon
);
722 static ssize_t
bonding_store_updelay(struct device
*d
,
723 struct device_attribute
*attr
,
724 const char *buf
, size_t count
)
726 int new_value
, ret
= count
;
727 struct bonding
*bond
= to_bond(d
);
729 if (!(bond
->params
.miimon
)) {
730 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
736 if (sscanf(buf
, "%d", &new_value
) != 1) {
737 pr_err("%s: no up delay value specified.\n",
743 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
744 bond
->dev
->name
, new_value
, 1, INT_MAX
);
748 if ((new_value
% bond
->params
.miimon
) != 0) {
749 pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
750 bond
->dev
->name
, new_value
,
752 (new_value
/ bond
->params
.miimon
) *
753 bond
->params
.miimon
);
755 bond
->params
.updelay
= new_value
/ bond
->params
.miimon
;
756 pr_info("%s: Setting up delay to %d.\n",
758 bond
->params
.updelay
* bond
->params
.miimon
);
764 static DEVICE_ATTR(updelay
, S_IRUGO
| S_IWUSR
,
765 bonding_show_updelay
, bonding_store_updelay
);
768 * Show and set the LACP interval. Interface must be down, and the mode
769 * must be set to 802.3ad mode.
771 static ssize_t
bonding_show_lacp(struct device
*d
,
772 struct device_attribute
*attr
,
775 struct bonding
*bond
= to_bond(d
);
777 return sprintf(buf
, "%s %d\n",
778 bond_lacp_tbl
[bond
->params
.lacp_fast
].modename
,
779 bond
->params
.lacp_fast
);
782 static ssize_t
bonding_store_lacp(struct device
*d
,
783 struct device_attribute
*attr
,
784 const char *buf
, size_t count
)
786 int new_value
, ret
= count
;
787 struct bonding
*bond
= to_bond(d
);
789 if (bond
->dev
->flags
& IFF_UP
) {
790 pr_err("%s: Unable to update LACP rate because interface is up.\n",
796 if (bond
->params
.mode
!= BOND_MODE_8023AD
) {
797 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
803 new_value
= bond_parse_parm(buf
, bond_lacp_tbl
);
805 if ((new_value
== 1) || (new_value
== 0)) {
806 bond
->params
.lacp_fast
= new_value
;
807 bond_3ad_update_lacp_rate(bond
);
808 pr_info("%s: Setting LACP rate to %s (%d).\n",
809 bond
->dev
->name
, bond_lacp_tbl
[new_value
].modename
,
812 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
813 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
819 static DEVICE_ATTR(lacp_rate
, S_IRUGO
| S_IWUSR
,
820 bonding_show_lacp
, bonding_store_lacp
);
822 static ssize_t
bonding_show_min_links(struct device
*d
,
823 struct device_attribute
*attr
,
826 struct bonding
*bond
= to_bond(d
);
828 return sprintf(buf
, "%d\n", bond
->params
.min_links
);
831 static ssize_t
bonding_store_min_links(struct device
*d
,
832 struct device_attribute
*attr
,
833 const char *buf
, size_t count
)
835 struct bonding
*bond
= to_bond(d
);
837 unsigned int new_value
;
839 ret
= kstrtouint(buf
, 0, &new_value
);
841 pr_err("%s: Ignoring invalid min links value %s.\n",
842 bond
->dev
->name
, buf
);
846 pr_info("%s: Setting min links value to %u\n",
847 bond
->dev
->name
, new_value
);
848 bond
->params
.min_links
= new_value
;
851 static DEVICE_ATTR(min_links
, S_IRUGO
| S_IWUSR
,
852 bonding_show_min_links
, bonding_store_min_links
);
854 static ssize_t
bonding_show_ad_select(struct device
*d
,
855 struct device_attribute
*attr
,
858 struct bonding
*bond
= to_bond(d
);
860 return sprintf(buf
, "%s %d\n",
861 ad_select_tbl
[bond
->params
.ad_select
].modename
,
862 bond
->params
.ad_select
);
866 static ssize_t
bonding_store_ad_select(struct device
*d
,
867 struct device_attribute
*attr
,
868 const char *buf
, size_t count
)
870 int new_value
, ret
= count
;
871 struct bonding
*bond
= to_bond(d
);
873 if (bond
->dev
->flags
& IFF_UP
) {
874 pr_err("%s: Unable to update ad_select because interface is up.\n",
880 new_value
= bond_parse_parm(buf
, ad_select_tbl
);
882 if (new_value
!= -1) {
883 bond
->params
.ad_select
= new_value
;
884 pr_info("%s: Setting ad_select to %s (%d).\n",
885 bond
->dev
->name
, ad_select_tbl
[new_value
].modename
,
888 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
889 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
895 static DEVICE_ATTR(ad_select
, S_IRUGO
| S_IWUSR
,
896 bonding_show_ad_select
, bonding_store_ad_select
);
899 * Show and set the number of peer notifications to send after a failover event.
901 static ssize_t
bonding_show_num_peer_notif(struct device
*d
,
902 struct device_attribute
*attr
,
905 struct bonding
*bond
= to_bond(d
);
906 return sprintf(buf
, "%d\n", bond
->params
.num_peer_notif
);
909 static ssize_t
bonding_store_num_peer_notif(struct device
*d
,
910 struct device_attribute
*attr
,
911 const char *buf
, size_t count
)
913 struct bonding
*bond
= to_bond(d
);
914 int err
= kstrtou8(buf
, 10, &bond
->params
.num_peer_notif
);
915 return err
? err
: count
;
917 static DEVICE_ATTR(num_grat_arp
, S_IRUGO
| S_IWUSR
,
918 bonding_show_num_peer_notif
, bonding_store_num_peer_notif
);
919 static DEVICE_ATTR(num_unsol_na
, S_IRUGO
| S_IWUSR
,
920 bonding_show_num_peer_notif
, bonding_store_num_peer_notif
);
923 * Show and set the MII monitor interval. There are two tricky bits
924 * here. First, if MII monitoring is activated, then we must disable
925 * ARP monitoring. Second, if the timer isn't running, we must
928 static ssize_t
bonding_show_miimon(struct device
*d
,
929 struct device_attribute
*attr
,
932 struct bonding
*bond
= to_bond(d
);
934 return sprintf(buf
, "%d\n", bond
->params
.miimon
);
937 static ssize_t
bonding_store_miimon(struct device
*d
,
938 struct device_attribute
*attr
,
939 const char *buf
, size_t count
)
941 int new_value
, ret
= count
;
942 struct bonding
*bond
= to_bond(d
);
944 if (sscanf(buf
, "%d", &new_value
) != 1) {
945 pr_err("%s: no miimon value specified.\n",
951 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
952 bond
->dev
->name
, new_value
, 1, INT_MAX
);
956 pr_info("%s: Setting MII monitoring interval to %d.\n",
957 bond
->dev
->name
, new_value
);
958 bond
->params
.miimon
= new_value
;
959 if (bond
->params
.updelay
)
960 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
962 bond
->params
.updelay
* bond
->params
.miimon
);
963 if (bond
->params
.downdelay
)
964 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
966 bond
->params
.downdelay
* bond
->params
.miimon
);
967 if (bond
->params
.arp_interval
) {
968 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
970 bond
->params
.arp_interval
= 0;
971 if (bond
->params
.arp_validate
) {
972 bond
->params
.arp_validate
=
973 BOND_ARP_VALIDATE_NONE
;
975 if (delayed_work_pending(&bond
->arp_work
)) {
976 cancel_delayed_work(&bond
->arp_work
);
977 flush_workqueue(bond
->wq
);
981 if (bond
->dev
->flags
& IFF_UP
) {
982 /* If the interface is up, we may need to fire off
983 * the MII timer. If the interface is down, the
984 * timer will get fired off when the open function
987 if (!delayed_work_pending(&bond
->mii_work
)) {
988 INIT_DELAYED_WORK(&bond
->mii_work
,
990 queue_delayed_work(bond
->wq
,
998 static DEVICE_ATTR(miimon
, S_IRUGO
| S_IWUSR
,
999 bonding_show_miimon
, bonding_store_miimon
);
1002 * Show and set the primary slave. The store function is much
1003 * simpler than bonding_store_slaves function because it only needs to
1004 * handle one interface name.
1005 * The bond must be a mode that supports a primary for this be
1008 static ssize_t
bonding_show_primary(struct device
*d
,
1009 struct device_attribute
*attr
,
1013 struct bonding
*bond
= to_bond(d
);
1015 if (bond
->primary_slave
)
1016 count
= sprintf(buf
, "%s\n", bond
->primary_slave
->dev
->name
);
1021 static ssize_t
bonding_store_primary(struct device
*d
,
1022 struct device_attribute
*attr
,
1023 const char *buf
, size_t count
)
1026 struct slave
*slave
;
1027 struct bonding
*bond
= to_bond(d
);
1028 char ifname
[IFNAMSIZ
];
1030 if (!rtnl_trylock())
1031 return restart_syscall();
1033 read_lock(&bond
->lock
);
1034 write_lock_bh(&bond
->curr_slave_lock
);
1036 if (!USES_PRIMARY(bond
->params
.mode
)) {
1037 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1038 bond
->dev
->name
, bond
->dev
->name
, bond
->params
.mode
);
1042 sscanf(buf
, "%16s", ifname
); /* IFNAMSIZ */
1044 /* check to see if we are clearing primary */
1045 if (!strlen(ifname
) || buf
[0] == '\n') {
1046 pr_info("%s: Setting primary slave to None.\n",
1048 bond
->primary_slave
= NULL
;
1049 bond_select_active_slave(bond
);
1053 bond_for_each_slave(bond
, slave
, i
) {
1054 if (strncmp(slave
->dev
->name
, ifname
, IFNAMSIZ
) == 0) {
1055 pr_info("%s: Setting %s as primary slave.\n",
1056 bond
->dev
->name
, slave
->dev
->name
);
1057 bond
->primary_slave
= slave
;
1058 strcpy(bond
->params
.primary
, slave
->dev
->name
);
1059 bond_select_active_slave(bond
);
1064 pr_info("%s: Unable to set %.*s as primary slave.\n",
1065 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
1067 write_unlock_bh(&bond
->curr_slave_lock
);
1068 read_unlock(&bond
->lock
);
1069 unblock_netpoll_tx();
1074 static DEVICE_ATTR(primary
, S_IRUGO
| S_IWUSR
,
1075 bonding_show_primary
, bonding_store_primary
);
1078 * Show and set the primary_reselect flag.
1080 static ssize_t
bonding_show_primary_reselect(struct device
*d
,
1081 struct device_attribute
*attr
,
1084 struct bonding
*bond
= to_bond(d
);
1086 return sprintf(buf
, "%s %d\n",
1087 pri_reselect_tbl
[bond
->params
.primary_reselect
].modename
,
1088 bond
->params
.primary_reselect
);
1091 static ssize_t
bonding_store_primary_reselect(struct device
*d
,
1092 struct device_attribute
*attr
,
1093 const char *buf
, size_t count
)
1095 int new_value
, ret
= count
;
1096 struct bonding
*bond
= to_bond(d
);
1098 if (!rtnl_trylock())
1099 return restart_syscall();
1101 new_value
= bond_parse_parm(buf
, pri_reselect_tbl
);
1102 if (new_value
< 0) {
1103 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
1105 (int) strlen(buf
) - 1, buf
);
1110 bond
->params
.primary_reselect
= new_value
;
1111 pr_info("%s: setting primary_reselect to %s (%d).\n",
1112 bond
->dev
->name
, pri_reselect_tbl
[new_value
].modename
,
1116 read_lock(&bond
->lock
);
1117 write_lock_bh(&bond
->curr_slave_lock
);
1118 bond_select_active_slave(bond
);
1119 write_unlock_bh(&bond
->curr_slave_lock
);
1120 read_unlock(&bond
->lock
);
1121 unblock_netpoll_tx();
1126 static DEVICE_ATTR(primary_reselect
, S_IRUGO
| S_IWUSR
,
1127 bonding_show_primary_reselect
,
1128 bonding_store_primary_reselect
);
1131 * Show and set the use_carrier flag.
1133 static ssize_t
bonding_show_carrier(struct device
*d
,
1134 struct device_attribute
*attr
,
1137 struct bonding
*bond
= to_bond(d
);
1139 return sprintf(buf
, "%d\n", bond
->params
.use_carrier
);
1142 static ssize_t
bonding_store_carrier(struct device
*d
,
1143 struct device_attribute
*attr
,
1144 const char *buf
, size_t count
)
1146 int new_value
, ret
= count
;
1147 struct bonding
*bond
= to_bond(d
);
1150 if (sscanf(buf
, "%d", &new_value
) != 1) {
1151 pr_err("%s: no use_carrier value specified.\n",
1156 if ((new_value
== 0) || (new_value
== 1)) {
1157 bond
->params
.use_carrier
= new_value
;
1158 pr_info("%s: Setting use_carrier to %d.\n",
1159 bond
->dev
->name
, new_value
);
1161 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1162 bond
->dev
->name
, new_value
);
1167 static DEVICE_ATTR(use_carrier
, S_IRUGO
| S_IWUSR
,
1168 bonding_show_carrier
, bonding_store_carrier
);
1172 * Show and set currently active_slave.
1174 static ssize_t
bonding_show_active_slave(struct device
*d
,
1175 struct device_attribute
*attr
,
1179 struct bonding
*bond
= to_bond(d
);
1182 read_lock(&bond
->curr_slave_lock
);
1183 curr
= bond
->curr_active_slave
;
1184 read_unlock(&bond
->curr_slave_lock
);
1186 if (USES_PRIMARY(bond
->params
.mode
) && curr
)
1187 count
= sprintf(buf
, "%s\n", curr
->dev
->name
);
1191 static ssize_t
bonding_store_active_slave(struct device
*d
,
1192 struct device_attribute
*attr
,
1193 const char *buf
, size_t count
)
1196 struct slave
*slave
;
1197 struct slave
*old_active
= NULL
;
1198 struct slave
*new_active
= NULL
;
1199 struct bonding
*bond
= to_bond(d
);
1200 char ifname
[IFNAMSIZ
];
1202 if (!rtnl_trylock())
1203 return restart_syscall();
1206 read_lock(&bond
->lock
);
1207 write_lock_bh(&bond
->curr_slave_lock
);
1209 if (!USES_PRIMARY(bond
->params
.mode
)) {
1210 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
1211 bond
->dev
->name
, bond
->dev
->name
, bond
->params
.mode
);
1215 sscanf(buf
, "%16s", ifname
); /* IFNAMSIZ */
1217 /* check to see if we are clearing active */
1218 if (!strlen(ifname
) || buf
[0] == '\n') {
1219 pr_info("%s: Clearing current active slave.\n",
1221 bond
->curr_active_slave
= NULL
;
1222 bond_select_active_slave(bond
);
1226 bond_for_each_slave(bond
, slave
, i
) {
1227 if (strncmp(slave
->dev
->name
, ifname
, IFNAMSIZ
) == 0) {
1228 old_active
= bond
->curr_active_slave
;
1230 if (new_active
== old_active
) {
1232 pr_info("%s: %s is already the current"
1241 (new_active
->link
== BOND_LINK_UP
) &&
1242 IS_UP(new_active
->dev
)) {
1243 pr_info("%s: Setting %s as active"
1247 bond_change_active_slave(bond
,
1251 pr_info("%s: Could not set %s as"
1252 " active slave; either %s is"
1253 " down or the link is down.\n",
1263 pr_info("%s: Unable to set %.*s as active slave.\n",
1264 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
1266 write_unlock_bh(&bond
->curr_slave_lock
);
1267 read_unlock(&bond
->lock
);
1268 unblock_netpoll_tx();
1275 static DEVICE_ATTR(active_slave
, S_IRUGO
| S_IWUSR
,
1276 bonding_show_active_slave
, bonding_store_active_slave
);
1280 * Show link status of the bond interface.
1282 static ssize_t
bonding_show_mii_status(struct device
*d
,
1283 struct device_attribute
*attr
,
1287 struct bonding
*bond
= to_bond(d
);
1289 read_lock(&bond
->curr_slave_lock
);
1290 curr
= bond
->curr_active_slave
;
1291 read_unlock(&bond
->curr_slave_lock
);
1293 return sprintf(buf
, "%s\n", curr
? "up" : "down");
1295 static DEVICE_ATTR(mii_status
, S_IRUGO
, bonding_show_mii_status
, NULL
);
1299 * Show current 802.3ad aggregator ID.
1301 static ssize_t
bonding_show_ad_aggregator(struct device
*d
,
1302 struct device_attribute
*attr
,
1306 struct bonding
*bond
= to_bond(d
);
1308 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1309 struct ad_info ad_info
;
1310 count
= sprintf(buf
, "%d\n",
1311 (bond_3ad_get_active_agg_info(bond
, &ad_info
))
1312 ? 0 : ad_info
.aggregator_id
);
1317 static DEVICE_ATTR(ad_aggregator
, S_IRUGO
, bonding_show_ad_aggregator
, NULL
);
1321 * Show number of active 802.3ad ports.
1323 static ssize_t
bonding_show_ad_num_ports(struct device
*d
,
1324 struct device_attribute
*attr
,
1328 struct bonding
*bond
= to_bond(d
);
1330 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1331 struct ad_info ad_info
;
1332 count
= sprintf(buf
, "%d\n",
1333 (bond_3ad_get_active_agg_info(bond
, &ad_info
))
1334 ? 0 : ad_info
.ports
);
1339 static DEVICE_ATTR(ad_num_ports
, S_IRUGO
, bonding_show_ad_num_ports
, NULL
);
1343 * Show current 802.3ad actor key.
1345 static ssize_t
bonding_show_ad_actor_key(struct device
*d
,
1346 struct device_attribute
*attr
,
1350 struct bonding
*bond
= to_bond(d
);
1352 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1353 struct ad_info ad_info
;
1354 count
= sprintf(buf
, "%d\n",
1355 (bond_3ad_get_active_agg_info(bond
, &ad_info
))
1356 ? 0 : ad_info
.actor_key
);
1361 static DEVICE_ATTR(ad_actor_key
, S_IRUGO
, bonding_show_ad_actor_key
, NULL
);
1365 * Show current 802.3ad partner key.
1367 static ssize_t
bonding_show_ad_partner_key(struct device
*d
,
1368 struct device_attribute
*attr
,
1372 struct bonding
*bond
= to_bond(d
);
1374 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1375 struct ad_info ad_info
;
1376 count
= sprintf(buf
, "%d\n",
1377 (bond_3ad_get_active_agg_info(bond
, &ad_info
))
1378 ? 0 : ad_info
.partner_key
);
1383 static DEVICE_ATTR(ad_partner_key
, S_IRUGO
, bonding_show_ad_partner_key
, NULL
);
1387 * Show current 802.3ad partner mac.
1389 static ssize_t
bonding_show_ad_partner_mac(struct device
*d
,
1390 struct device_attribute
*attr
,
1394 struct bonding
*bond
= to_bond(d
);
1396 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1397 struct ad_info ad_info
;
1398 if (!bond_3ad_get_active_agg_info(bond
, &ad_info
))
1399 count
= sprintf(buf
, "%pM\n", ad_info
.partner_system
);
1404 static DEVICE_ATTR(ad_partner_mac
, S_IRUGO
, bonding_show_ad_partner_mac
, NULL
);
1407 * Show the queue_ids of the slaves in the current bond.
1409 static ssize_t
bonding_show_queue_id(struct device
*d
,
1410 struct device_attribute
*attr
,
1413 struct slave
*slave
;
1415 struct bonding
*bond
= to_bond(d
);
1417 if (!rtnl_trylock())
1418 return restart_syscall();
1420 read_lock(&bond
->lock
);
1421 bond_for_each_slave(bond
, slave
, i
) {
1422 if (res
> (PAGE_SIZE
- IFNAMSIZ
- 6)) {
1423 /* not enough space for another interface_name:queue_id pair */
1424 if ((PAGE_SIZE
- res
) > 10)
1425 res
= PAGE_SIZE
- 10;
1426 res
+= sprintf(buf
+ res
, "++more++ ");
1429 res
+= sprintf(buf
+ res
, "%s:%d ",
1430 slave
->dev
->name
, slave
->queue_id
);
1432 read_unlock(&bond
->lock
);
1434 buf
[res
-1] = '\n'; /* eat the leftover space */
1440 * Set the queue_ids of the slaves in the current bond. The bond
1441 * interface must be enslaved for this to work.
1443 static ssize_t
bonding_store_queue_id(struct device
*d
,
1444 struct device_attribute
*attr
,
1445 const char *buffer
, size_t count
)
1447 struct slave
*slave
, *update_slave
;
1448 struct bonding
*bond
= to_bond(d
);
1452 struct net_device
*sdev
= NULL
;
1454 if (!rtnl_trylock())
1455 return restart_syscall();
1457 /* delim will point to queue id if successful */
1458 delim
= strchr(buffer
, ':');
1463 * Terminate string that points to device name and bump it
1464 * up one, so we can read the queue id there.
1467 if (sscanf(++delim
, "%hd\n", &qid
) != 1)
1470 /* Check buffer length, valid ifname and queue id */
1471 if (strlen(buffer
) > IFNAMSIZ
||
1472 !dev_valid_name(buffer
) ||
1473 qid
> bond
->params
.tx_queues
)
1476 /* Get the pointer to that interface if it exists */
1477 sdev
= __dev_get_by_name(dev_net(bond
->dev
), buffer
);
1481 read_lock(&bond
->lock
);
1483 /* Search for thes slave and check for duplicate qids */
1484 update_slave
= NULL
;
1485 bond_for_each_slave(bond
, slave
, i
) {
1486 if (sdev
== slave
->dev
)
1488 * We don't need to check the matching
1489 * slave for dups, since we're overwriting it
1491 update_slave
= slave
;
1492 else if (qid
&& qid
== slave
->queue_id
) {
1493 goto err_no_cmd_unlock
;
1498 goto err_no_cmd_unlock
;
1500 /* Actually set the qids for the slave */
1501 update_slave
->queue_id
= qid
;
1503 read_unlock(&bond
->lock
);
1509 read_unlock(&bond
->lock
);
1511 pr_info("invalid input for queue_id set for %s.\n",
1517 static DEVICE_ATTR(queue_id
, S_IRUGO
| S_IWUSR
, bonding_show_queue_id
,
1518 bonding_store_queue_id
);
1522 * Show and set the all_slaves_active flag.
1524 static ssize_t
bonding_show_slaves_active(struct device
*d
,
1525 struct device_attribute
*attr
,
1528 struct bonding
*bond
= to_bond(d
);
1530 return sprintf(buf
, "%d\n", bond
->params
.all_slaves_active
);
1533 static ssize_t
bonding_store_slaves_active(struct device
*d
,
1534 struct device_attribute
*attr
,
1535 const char *buf
, size_t count
)
1537 int i
, new_value
, ret
= count
;
1538 struct bonding
*bond
= to_bond(d
);
1539 struct slave
*slave
;
1541 if (sscanf(buf
, "%d", &new_value
) != 1) {
1542 pr_err("%s: no all_slaves_active value specified.\n",
1548 if (new_value
== bond
->params
.all_slaves_active
)
1551 if ((new_value
== 0) || (new_value
== 1)) {
1552 bond
->params
.all_slaves_active
= new_value
;
1554 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1555 bond
->dev
->name
, new_value
);
1560 bond_for_each_slave(bond
, slave
, i
) {
1561 if (!bond_is_active_slave(slave
)) {
1563 slave
->inactive
= 0;
1565 slave
->inactive
= 1;
1571 static DEVICE_ATTR(all_slaves_active
, S_IRUGO
| S_IWUSR
,
1572 bonding_show_slaves_active
, bonding_store_slaves_active
);
1575 * Show and set the number of IGMP membership reports to send on link failure
1577 static ssize_t
bonding_show_resend_igmp(struct device
*d
,
1578 struct device_attribute
*attr
,
1581 struct bonding
*bond
= to_bond(d
);
1583 return sprintf(buf
, "%d\n", bond
->params
.resend_igmp
);
1586 static ssize_t
bonding_store_resend_igmp(struct device
*d
,
1587 struct device_attribute
*attr
,
1588 const char *buf
, size_t count
)
1590 int new_value
, ret
= count
;
1591 struct bonding
*bond
= to_bond(d
);
1593 if (sscanf(buf
, "%d", &new_value
) != 1) {
1594 pr_err("%s: no resend_igmp value specified.\n",
1600 if (new_value
< 0 || new_value
> 255) {
1601 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1602 bond
->dev
->name
, new_value
);
1607 pr_info("%s: Setting resend_igmp to %d.\n",
1608 bond
->dev
->name
, new_value
);
1609 bond
->params
.resend_igmp
= new_value
;
1614 static DEVICE_ATTR(resend_igmp
, S_IRUGO
| S_IWUSR
,
1615 bonding_show_resend_igmp
, bonding_store_resend_igmp
);
1617 static struct attribute
*per_bond_attrs
[] = {
1618 &dev_attr_slaves
.attr
,
1619 &dev_attr_mode
.attr
,
1620 &dev_attr_fail_over_mac
.attr
,
1621 &dev_attr_arp_validate
.attr
,
1622 &dev_attr_arp_interval
.attr
,
1623 &dev_attr_arp_ip_target
.attr
,
1624 &dev_attr_downdelay
.attr
,
1625 &dev_attr_updelay
.attr
,
1626 &dev_attr_lacp_rate
.attr
,
1627 &dev_attr_ad_select
.attr
,
1628 &dev_attr_xmit_hash_policy
.attr
,
1629 &dev_attr_num_grat_arp
.attr
,
1630 &dev_attr_num_unsol_na
.attr
,
1631 &dev_attr_miimon
.attr
,
1632 &dev_attr_primary
.attr
,
1633 &dev_attr_primary_reselect
.attr
,
1634 &dev_attr_use_carrier
.attr
,
1635 &dev_attr_active_slave
.attr
,
1636 &dev_attr_mii_status
.attr
,
1637 &dev_attr_ad_aggregator
.attr
,
1638 &dev_attr_ad_num_ports
.attr
,
1639 &dev_attr_ad_actor_key
.attr
,
1640 &dev_attr_ad_partner_key
.attr
,
1641 &dev_attr_ad_partner_mac
.attr
,
1642 &dev_attr_queue_id
.attr
,
1643 &dev_attr_all_slaves_active
.attr
,
1644 &dev_attr_resend_igmp
.attr
,
1645 &dev_attr_min_links
.attr
,
1649 static struct attribute_group bonding_group
= {
1651 .attrs
= per_bond_attrs
,
1655 * Initialize sysfs. This sets up the bonding_masters file in
1658 int bond_create_sysfs(void)
1662 ret
= netdev_class_create_file(&class_attr_bonding_masters
);
1664 * Permit multiple loads of the module by ignoring failures to
1665 * create the bonding_masters sysfs file. Bonding devices
1666 * created by second or subsequent loads of the module will
1667 * not be listed in, or controllable by, bonding_masters, but
1668 * will have the usual "bonding" sysfs directory.
1670 * This is done to preserve backwards compatibility for
1671 * initscripts/sysconfig, which load bonding multiple times to
1672 * configure multiple bonding devices.
1674 if (ret
== -EEXIST
) {
1675 /* Is someone being kinky and naming a device bonding_master? */
1676 if (__dev_get_by_name(&init_net
,
1677 class_attr_bonding_masters
.attr
.name
))
1678 pr_err("network device named %s already exists in sysfs",
1679 class_attr_bonding_masters
.attr
.name
);
1688 * Remove /sys/class/net/bonding_masters.
1690 void bond_destroy_sysfs(void)
1692 netdev_class_remove_file(&class_attr_bonding_masters
);
1696 * Initialize sysfs for each bond. This sets up and registers
1697 * the 'bondctl' directory for each individual bond under /sys/class/net.
1699 void bond_prepare_sysfs_group(struct bonding
*bond
)
1701 bond
->dev
->sysfs_groups
[0] = &bonding_group
;