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>
30 #include <linux/types.h>
31 #include <linux/string.h>
32 #include <linux/netdevice.h>
33 #include <linux/inetdevice.h>
35 #include <linux/sysfs.h>
36 #include <linux/ctype.h>
37 #include <linux/inet.h>
38 #include <linux/rtnetlink.h>
39 #include <linux/etherdevice.h>
40 #include <net/net_namespace.h>
41 #include <net/netns/generic.h>
42 #include <linux/nsproxy.h>
46 #define to_dev(obj) container_of(obj, struct device, kobj)
47 #define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
50 * "show" function for the bond_masters attribute.
51 * The class parameter is ignored.
53 static ssize_t
bonding_show_bonds(struct class *cls
,
54 struct class_attribute
*attr
,
58 container_of(attr
, struct bond_net
, class_attr_bonding_masters
);
64 list_for_each_entry(bond
, &bn
->dev_list
, bond_list
) {
65 if (res
> (PAGE_SIZE
- IFNAMSIZ
)) {
66 /* not enough space for another interface name */
67 if ((PAGE_SIZE
- res
) > 10)
69 res
+= sprintf(buf
+ res
, "++more++ ");
72 res
+= sprintf(buf
+ res
, "%s ", bond
->dev
->name
);
75 buf
[res
-1] = '\n'; /* eat the leftover space */
81 static struct net_device
*bond_get_by_name(struct bond_net
*bn
, const char *ifname
)
85 list_for_each_entry(bond
, &bn
->dev_list
, bond_list
) {
86 if (strncmp(bond
->dev
->name
, ifname
, IFNAMSIZ
) == 0)
93 * "store" function for the bond_masters attribute. This is what
94 * creates and deletes entire bonds.
96 * The class parameter is ignored.
100 static ssize_t
bonding_store_bonds(struct class *cls
,
101 struct class_attribute
*attr
,
102 const char *buffer
, size_t count
)
104 struct bond_net
*bn
=
105 container_of(attr
, struct bond_net
, class_attr_bonding_masters
);
106 char command
[IFNAMSIZ
+ 1] = {0, };
110 sscanf(buffer
, "%16s", command
); /* IFNAMSIZ*/
111 ifname
= command
+ 1;
112 if ((strlen(command
) <= 1) ||
113 !dev_valid_name(ifname
))
116 if (command
[0] == '+') {
117 pr_info("%s is being created...\n", ifname
);
118 rv
= bond_create(bn
->net
, ifname
);
121 pr_info("%s already exists.\n", ifname
);
123 pr_info("%s creation failed.\n", ifname
);
126 } else if (command
[0] == '-') {
127 struct net_device
*bond_dev
;
130 bond_dev
= bond_get_by_name(bn
, ifname
);
132 pr_info("%s is being deleted...\n", ifname
);
133 unregister_netdevice(bond_dev
);
135 pr_err("unable to delete non-existent %s\n", ifname
);
142 /* Always return either count or an error. If you return 0, you'll
143 * get called forever, which is bad.
148 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
152 static const void *bonding_namespace(struct class *cls
,
153 const struct class_attribute
*attr
)
155 const struct bond_net
*bn
=
156 container_of(attr
, struct bond_net
, class_attr_bonding_masters
);
160 /* class attribute for bond_masters file. This ends up in /sys/class/net */
161 static const struct class_attribute class_attr_bonding_masters
= {
163 .name
= "bonding_masters",
164 .mode
= S_IWUSR
| S_IRUGO
,
166 .show
= bonding_show_bonds
,
167 .store
= bonding_store_bonds
,
168 .namespace = bonding_namespace
,
171 int bond_create_slave_symlinks(struct net_device
*master
,
172 struct net_device
*slave
)
174 char linkname
[IFNAMSIZ
+7];
177 /* first, create a link from the slave back to the master */
178 ret
= sysfs_create_link(&(slave
->dev
.kobj
), &(master
->dev
.kobj
),
182 /* next, create a link from the master to the slave */
183 sprintf(linkname
, "slave_%s", slave
->name
);
184 ret
= sysfs_create_link(&(master
->dev
.kobj
), &(slave
->dev
.kobj
),
187 /* free the master link created earlier in case of error */
189 sysfs_remove_link(&(slave
->dev
.kobj
), "master");
195 void bond_destroy_slave_symlinks(struct net_device
*master
,
196 struct net_device
*slave
)
198 char linkname
[IFNAMSIZ
+7];
200 sysfs_remove_link(&(slave
->dev
.kobj
), "master");
201 sprintf(linkname
, "slave_%s", slave
->name
);
202 sysfs_remove_link(&(master
->dev
.kobj
), linkname
);
207 * Show the slaves in the current bond.
209 static ssize_t
bonding_show_slaves(struct device
*d
,
210 struct device_attribute
*attr
, char *buf
)
214 struct bonding
*bond
= to_bond(d
);
216 read_lock(&bond
->lock
);
217 bond_for_each_slave(bond
, slave
, i
) {
218 if (res
> (PAGE_SIZE
- IFNAMSIZ
)) {
219 /* not enough space for another interface name */
220 if ((PAGE_SIZE
- res
) > 10)
221 res
= PAGE_SIZE
- 10;
222 res
+= sprintf(buf
+ res
, "++more++ ");
225 res
+= sprintf(buf
+ res
, "%s ", slave
->dev
->name
);
227 read_unlock(&bond
->lock
);
229 buf
[res
-1] = '\n'; /* eat the leftover space */
234 * Set the slaves in the current bond.
235 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
236 * All hard work should be done there.
238 static ssize_t
bonding_store_slaves(struct device
*d
,
239 struct device_attribute
*attr
,
240 const char *buffer
, size_t count
)
242 char command
[IFNAMSIZ
+ 1] = { 0, };
244 int res
, ret
= count
;
245 struct net_device
*dev
;
246 struct bonding
*bond
= to_bond(d
);
249 return restart_syscall();
251 sscanf(buffer
, "%16s", command
); /* IFNAMSIZ*/
252 ifname
= command
+ 1;
253 if ((strlen(command
) <= 1) ||
254 !dev_valid_name(ifname
))
257 dev
= __dev_get_by_name(dev_net(bond
->dev
), ifname
);
259 pr_info("%s: Interface %s does not exist!\n",
260 bond
->dev
->name
, ifname
);
265 switch (command
[0]) {
267 pr_info("%s: Adding slave %s.\n", bond
->dev
->name
, dev
->name
);
268 res
= bond_enslave(bond
->dev
, dev
);
272 pr_info("%s: Removing slave %s.\n", bond
->dev
->name
, dev
->name
);
273 res
= bond_release(bond
->dev
, dev
);
285 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
294 static DEVICE_ATTR(slaves
, S_IRUGO
| S_IWUSR
, bonding_show_slaves
,
295 bonding_store_slaves
);
298 * Show and set the bonding mode. The bond interface must be down to
301 static ssize_t
bonding_show_mode(struct device
*d
,
302 struct device_attribute
*attr
, char *buf
)
304 struct bonding
*bond
= to_bond(d
);
306 return sprintf(buf
, "%s %d\n",
307 bond_mode_tbl
[bond
->params
.mode
].modename
,
311 static ssize_t
bonding_store_mode(struct device
*d
,
312 struct device_attribute
*attr
,
313 const char *buf
, size_t count
)
315 int new_value
, ret
= count
;
316 struct bonding
*bond
= to_bond(d
);
319 return restart_syscall();
321 if (bond
->dev
->flags
& IFF_UP
) {
322 pr_err("unable to update mode of %s because interface is up.\n",
328 if (bond
->slave_cnt
> 0) {
329 pr_err("unable to update mode of %s because it has slaves.\n",
335 new_value
= bond_parse_parm(buf
, bond_mode_tbl
);
337 pr_err("%s: Ignoring invalid mode value %.*s.\n",
338 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
342 if ((new_value
== BOND_MODE_ALB
||
343 new_value
== BOND_MODE_TLB
) &&
344 bond
->params
.arp_interval
) {
345 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
346 bond
->dev
->name
, bond_mode_tbl
[new_value
].modename
);
351 bond
->params
.mode
= new_value
;
352 bond_set_mode_ops(bond
, bond
->params
.mode
);
353 pr_info("%s: setting mode to %s (%d).\n",
354 bond
->dev
->name
, bond_mode_tbl
[new_value
].modename
,
360 static DEVICE_ATTR(mode
, S_IRUGO
| S_IWUSR
,
361 bonding_show_mode
, bonding_store_mode
);
364 * Show and set the bonding transmit hash method.
366 static ssize_t
bonding_show_xmit_hash(struct device
*d
,
367 struct device_attribute
*attr
,
370 struct bonding
*bond
= to_bond(d
);
372 return sprintf(buf
, "%s %d\n",
373 xmit_hashtype_tbl
[bond
->params
.xmit_policy
].modename
,
374 bond
->params
.xmit_policy
);
377 static ssize_t
bonding_store_xmit_hash(struct device
*d
,
378 struct device_attribute
*attr
,
379 const char *buf
, size_t count
)
381 int new_value
, ret
= count
;
382 struct bonding
*bond
= to_bond(d
);
384 new_value
= bond_parse_parm(buf
, xmit_hashtype_tbl
);
386 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
388 (int)strlen(buf
) - 1, buf
);
391 bond
->params
.xmit_policy
= new_value
;
392 bond_set_mode_ops(bond
, bond
->params
.mode
);
393 pr_info("%s: setting xmit hash policy to %s (%d).\n",
395 xmit_hashtype_tbl
[new_value
].modename
, new_value
);
400 static DEVICE_ATTR(xmit_hash_policy
, S_IRUGO
| S_IWUSR
,
401 bonding_show_xmit_hash
, bonding_store_xmit_hash
);
404 * Show and set arp_validate.
406 static ssize_t
bonding_show_arp_validate(struct device
*d
,
407 struct device_attribute
*attr
,
410 struct bonding
*bond
= to_bond(d
);
412 return sprintf(buf
, "%s %d\n",
413 arp_validate_tbl
[bond
->params
.arp_validate
].modename
,
414 bond
->params
.arp_validate
);
417 static ssize_t
bonding_store_arp_validate(struct device
*d
,
418 struct device_attribute
*attr
,
419 const char *buf
, size_t count
)
422 struct bonding
*bond
= to_bond(d
);
424 new_value
= bond_parse_parm(buf
, arp_validate_tbl
);
426 pr_err("%s: Ignoring invalid arp_validate value %s\n",
427 bond
->dev
->name
, buf
);
430 if (new_value
&& (bond
->params
.mode
!= BOND_MODE_ACTIVEBACKUP
)) {
431 pr_err("%s: arp_validate only supported in active-backup mode.\n",
435 pr_info("%s: setting arp_validate to %s (%d).\n",
436 bond
->dev
->name
, arp_validate_tbl
[new_value
].modename
,
439 bond
->params
.arp_validate
= new_value
;
444 static DEVICE_ATTR(arp_validate
, S_IRUGO
| S_IWUSR
, bonding_show_arp_validate
,
445 bonding_store_arp_validate
);
447 * Show and set arp_all_targets.
449 static ssize_t
bonding_show_arp_all_targets(struct device
*d
,
450 struct device_attribute
*attr
,
453 struct bonding
*bond
= to_bond(d
);
454 int value
= bond
->params
.arp_all_targets
;
456 return sprintf(buf
, "%s %d\n", arp_all_targets_tbl
[value
].modename
,
460 static ssize_t
bonding_store_arp_all_targets(struct device
*d
,
461 struct device_attribute
*attr
,
462 const char *buf
, size_t count
)
464 struct bonding
*bond
= to_bond(d
);
467 new_value
= bond_parse_parm(buf
, arp_all_targets_tbl
);
469 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
470 bond
->dev
->name
, buf
);
473 pr_info("%s: setting arp_all_targets to %s (%d).\n",
474 bond
->dev
->name
, arp_all_targets_tbl
[new_value
].modename
,
477 bond
->params
.arp_all_targets
= new_value
;
482 static DEVICE_ATTR(arp_all_targets
, S_IRUGO
| S_IWUSR
,
483 bonding_show_arp_all_targets
, bonding_store_arp_all_targets
);
486 * Show and store fail_over_mac. User only allowed to change the
487 * value when there are no slaves.
489 static ssize_t
bonding_show_fail_over_mac(struct device
*d
,
490 struct device_attribute
*attr
,
493 struct bonding
*bond
= to_bond(d
);
495 return sprintf(buf
, "%s %d\n",
496 fail_over_mac_tbl
[bond
->params
.fail_over_mac
].modename
,
497 bond
->params
.fail_over_mac
);
500 static ssize_t
bonding_store_fail_over_mac(struct device
*d
,
501 struct device_attribute
*attr
,
502 const char *buf
, size_t count
)
505 struct bonding
*bond
= to_bond(d
);
507 if (bond
->slave_cnt
!= 0) {
508 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
513 new_value
= bond_parse_parm(buf
, fail_over_mac_tbl
);
515 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
516 bond
->dev
->name
, buf
);
520 bond
->params
.fail_over_mac
= new_value
;
521 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
522 bond
->dev
->name
, fail_over_mac_tbl
[new_value
].modename
,
528 static DEVICE_ATTR(fail_over_mac
, S_IRUGO
| S_IWUSR
,
529 bonding_show_fail_over_mac
, bonding_store_fail_over_mac
);
532 * Show and set the arp timer interval. There are two tricky bits
533 * here. First, if ARP monitoring is activated, then we must disable
534 * MII monitoring. Second, if the ARP timer isn't running, we must
537 static ssize_t
bonding_show_arp_interval(struct device
*d
,
538 struct device_attribute
*attr
,
541 struct bonding
*bond
= to_bond(d
);
543 return sprintf(buf
, "%d\n", bond
->params
.arp_interval
);
546 static ssize_t
bonding_store_arp_interval(struct device
*d
,
547 struct device_attribute
*attr
,
548 const char *buf
, size_t count
)
550 int new_value
, ret
= count
;
551 struct bonding
*bond
= to_bond(d
);
554 return restart_syscall();
555 if (sscanf(buf
, "%d", &new_value
) != 1) {
556 pr_err("%s: no arp_interval value specified.\n",
562 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
563 bond
->dev
->name
, new_value
, INT_MAX
);
567 if (bond
->params
.mode
== BOND_MODE_ALB
||
568 bond
->params
.mode
== BOND_MODE_TLB
) {
569 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
570 bond
->dev
->name
, bond
->dev
->name
);
574 pr_info("%s: Setting ARP monitoring interval to %d.\n",
575 bond
->dev
->name
, new_value
);
576 bond
->params
.arp_interval
= new_value
;
578 if (bond
->params
.miimon
) {
579 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
580 bond
->dev
->name
, bond
->dev
->name
);
581 bond
->params
.miimon
= 0;
583 if (!bond
->params
.arp_targets
[0])
584 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
587 if (bond
->dev
->flags
& IFF_UP
) {
588 /* If the interface is up, we may need to fire off
589 * the ARP timer. If the interface is down, the
590 * timer will get fired off when the open function
594 cancel_delayed_work_sync(&bond
->arp_work
);
596 cancel_delayed_work_sync(&bond
->mii_work
);
597 queue_delayed_work(bond
->wq
, &bond
->arp_work
, 0);
604 static DEVICE_ATTR(arp_interval
, S_IRUGO
| S_IWUSR
,
605 bonding_show_arp_interval
, bonding_store_arp_interval
);
608 * Show and set the arp targets.
610 static ssize_t
bonding_show_arp_targets(struct device
*d
,
611 struct device_attribute
*attr
,
615 struct bonding
*bond
= to_bond(d
);
617 for (i
= 0; i
< BOND_MAX_ARP_TARGETS
; i
++) {
618 if (bond
->params
.arp_targets
[i
])
619 res
+= sprintf(buf
+ res
, "%pI4 ",
620 &bond
->params
.arp_targets
[i
]);
623 buf
[res
-1] = '\n'; /* eat the leftover space */
627 static ssize_t
bonding_store_arp_targets(struct device
*d
,
628 struct device_attribute
*attr
,
629 const char *buf
, size_t count
)
631 struct bonding
*bond
= to_bond(d
);
633 __be32 newtarget
, *targets
;
634 unsigned long *targets_rx
;
635 int ind
, i
, j
, ret
= -EINVAL
;
637 targets
= bond
->params
.arp_targets
;
638 newtarget
= in_aton(buf
+ 1);
641 if ((newtarget
== 0) || (newtarget
== htonl(INADDR_BROADCAST
))) {
642 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
643 bond
->dev
->name
, &newtarget
);
647 if (bond_get_targets_ip(targets
, newtarget
) != -1) { /* dup */
648 pr_err("%s: ARP target %pI4 is already present\n",
649 bond
->dev
->name
, &newtarget
);
653 ind
= bond_get_targets_ip(targets
, 0); /* first free slot */
655 pr_err("%s: ARP target table is full!\n",
660 pr_info("%s: adding ARP target %pI4.\n", bond
->dev
->name
,
662 /* not to race with bond_arp_rcv */
663 write_lock_bh(&bond
->lock
);
664 bond_for_each_slave(bond
, slave
, i
)
665 slave
->target_last_arp_rx
[ind
] = jiffies
;
666 targets
[ind
] = newtarget
;
667 write_unlock_bh(&bond
->lock
);
668 } else if (buf
[0] == '-') {
669 if ((newtarget
== 0) || (newtarget
== htonl(INADDR_BROADCAST
))) {
670 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
671 bond
->dev
->name
, &newtarget
);
675 ind
= bond_get_targets_ip(targets
, newtarget
);
677 pr_err("%s: unable to remove nonexistent ARP target %pI4.\n",
678 bond
->dev
->name
, &newtarget
);
682 if (ind
== 0 && !targets
[1] && bond
->params
.arp_interval
)
683 pr_warn("%s: removing last arp target with arp_interval on\n",
686 pr_info("%s: removing ARP target %pI4.\n", bond
->dev
->name
,
689 write_lock_bh(&bond
->lock
);
690 bond_for_each_slave(bond
, slave
, i
) {
691 targets_rx
= slave
->target_last_arp_rx
;
693 for (; (j
< BOND_MAX_ARP_TARGETS
-1) && targets
[j
+1]; j
++)
694 targets_rx
[j
] = targets_rx
[j
+1];
697 for (i
= ind
; (i
< BOND_MAX_ARP_TARGETS
-1) && targets
[i
+1]; i
++)
698 targets
[i
] = targets
[i
+1];
700 write_unlock_bh(&bond
->lock
);
702 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
712 static DEVICE_ATTR(arp_ip_target
, S_IRUGO
| S_IWUSR
, bonding_show_arp_targets
, bonding_store_arp_targets
);
715 * Show and set the up and down delays. These must be multiples of the
716 * MII monitoring value, and are stored internally as the multiplier.
717 * Thus, we must translate to MS for the real world.
719 static ssize_t
bonding_show_downdelay(struct device
*d
,
720 struct device_attribute
*attr
,
723 struct bonding
*bond
= to_bond(d
);
725 return sprintf(buf
, "%d\n", bond
->params
.downdelay
* bond
->params
.miimon
);
728 static ssize_t
bonding_store_downdelay(struct device
*d
,
729 struct device_attribute
*attr
,
730 const char *buf
, size_t count
)
732 int new_value
, ret
= count
;
733 struct bonding
*bond
= to_bond(d
);
735 if (!(bond
->params
.miimon
)) {
736 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
742 if (sscanf(buf
, "%d", &new_value
) != 1) {
743 pr_err("%s: no down delay value specified.\n", bond
->dev
->name
);
748 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
749 bond
->dev
->name
, new_value
, 0, INT_MAX
);
753 if ((new_value
% bond
->params
.miimon
) != 0) {
754 pr_warning("%s: Warning: down delay (%d) is not a multiple of miimon (%d), delay rounded to %d ms\n",
755 bond
->dev
->name
, new_value
,
757 (new_value
/ bond
->params
.miimon
) *
758 bond
->params
.miimon
);
760 bond
->params
.downdelay
= new_value
/ bond
->params
.miimon
;
761 pr_info("%s: Setting down delay to %d.\n",
763 bond
->params
.downdelay
* bond
->params
.miimon
);
770 static DEVICE_ATTR(downdelay
, S_IRUGO
| S_IWUSR
,
771 bonding_show_downdelay
, bonding_store_downdelay
);
773 static ssize_t
bonding_show_updelay(struct device
*d
,
774 struct device_attribute
*attr
,
777 struct bonding
*bond
= to_bond(d
);
779 return sprintf(buf
, "%d\n", bond
->params
.updelay
* bond
->params
.miimon
);
783 static ssize_t
bonding_store_updelay(struct device
*d
,
784 struct device_attribute
*attr
,
785 const char *buf
, size_t count
)
787 int new_value
, ret
= count
;
788 struct bonding
*bond
= to_bond(d
);
790 if (!(bond
->params
.miimon
)) {
791 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
797 if (sscanf(buf
, "%d", &new_value
) != 1) {
798 pr_err("%s: no up delay value specified.\n",
804 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
805 bond
->dev
->name
, new_value
, 0, INT_MAX
);
809 if ((new_value
% bond
->params
.miimon
) != 0) {
810 pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
811 bond
->dev
->name
, new_value
,
813 (new_value
/ bond
->params
.miimon
) *
814 bond
->params
.miimon
);
816 bond
->params
.updelay
= new_value
/ bond
->params
.miimon
;
817 pr_info("%s: Setting up delay to %d.\n",
819 bond
->params
.updelay
* bond
->params
.miimon
);
825 static DEVICE_ATTR(updelay
, S_IRUGO
| S_IWUSR
,
826 bonding_show_updelay
, bonding_store_updelay
);
829 * Show and set the LACP interval. Interface must be down, and the mode
830 * must be set to 802.3ad mode.
832 static ssize_t
bonding_show_lacp(struct device
*d
,
833 struct device_attribute
*attr
,
836 struct bonding
*bond
= to_bond(d
);
838 return sprintf(buf
, "%s %d\n",
839 bond_lacp_tbl
[bond
->params
.lacp_fast
].modename
,
840 bond
->params
.lacp_fast
);
843 static ssize_t
bonding_store_lacp(struct device
*d
,
844 struct device_attribute
*attr
,
845 const char *buf
, size_t count
)
847 int new_value
, ret
= count
;
848 struct bonding
*bond
= to_bond(d
);
850 if (bond
->dev
->flags
& IFF_UP
) {
851 pr_err("%s: Unable to update LACP rate because interface is up.\n",
857 if (bond
->params
.mode
!= BOND_MODE_8023AD
) {
858 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
864 new_value
= bond_parse_parm(buf
, bond_lacp_tbl
);
866 if ((new_value
== 1) || (new_value
== 0)) {
867 bond
->params
.lacp_fast
= new_value
;
868 bond_3ad_update_lacp_rate(bond
);
869 pr_info("%s: Setting LACP rate to %s (%d).\n",
870 bond
->dev
->name
, bond_lacp_tbl
[new_value
].modename
,
873 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
874 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
880 static DEVICE_ATTR(lacp_rate
, S_IRUGO
| S_IWUSR
,
881 bonding_show_lacp
, bonding_store_lacp
);
883 static ssize_t
bonding_show_min_links(struct device
*d
,
884 struct device_attribute
*attr
,
887 struct bonding
*bond
= to_bond(d
);
889 return sprintf(buf
, "%d\n", bond
->params
.min_links
);
892 static ssize_t
bonding_store_min_links(struct device
*d
,
893 struct device_attribute
*attr
,
894 const char *buf
, size_t count
)
896 struct bonding
*bond
= to_bond(d
);
898 unsigned int new_value
;
900 ret
= kstrtouint(buf
, 0, &new_value
);
902 pr_err("%s: Ignoring invalid min links value %s.\n",
903 bond
->dev
->name
, buf
);
907 pr_info("%s: Setting min links value to %u\n",
908 bond
->dev
->name
, new_value
);
909 bond
->params
.min_links
= new_value
;
912 static DEVICE_ATTR(min_links
, S_IRUGO
| S_IWUSR
,
913 bonding_show_min_links
, bonding_store_min_links
);
915 static ssize_t
bonding_show_ad_select(struct device
*d
,
916 struct device_attribute
*attr
,
919 struct bonding
*bond
= to_bond(d
);
921 return sprintf(buf
, "%s %d\n",
922 ad_select_tbl
[bond
->params
.ad_select
].modename
,
923 bond
->params
.ad_select
);
927 static ssize_t
bonding_store_ad_select(struct device
*d
,
928 struct device_attribute
*attr
,
929 const char *buf
, size_t count
)
931 int new_value
, ret
= count
;
932 struct bonding
*bond
= to_bond(d
);
934 if (bond
->dev
->flags
& IFF_UP
) {
935 pr_err("%s: Unable to update ad_select because interface is up.\n",
941 new_value
= bond_parse_parm(buf
, ad_select_tbl
);
943 if (new_value
!= -1) {
944 bond
->params
.ad_select
= new_value
;
945 pr_info("%s: Setting ad_select to %s (%d).\n",
946 bond
->dev
->name
, ad_select_tbl
[new_value
].modename
,
949 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
950 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
956 static DEVICE_ATTR(ad_select
, S_IRUGO
| S_IWUSR
,
957 bonding_show_ad_select
, bonding_store_ad_select
);
960 * Show and set the number of peer notifications to send after a failover event.
962 static ssize_t
bonding_show_num_peer_notif(struct device
*d
,
963 struct device_attribute
*attr
,
966 struct bonding
*bond
= to_bond(d
);
967 return sprintf(buf
, "%d\n", bond
->params
.num_peer_notif
);
970 static ssize_t
bonding_store_num_peer_notif(struct device
*d
,
971 struct device_attribute
*attr
,
972 const char *buf
, size_t count
)
974 struct bonding
*bond
= to_bond(d
);
975 int err
= kstrtou8(buf
, 10, &bond
->params
.num_peer_notif
);
976 return err
? err
: count
;
978 static DEVICE_ATTR(num_grat_arp
, S_IRUGO
| S_IWUSR
,
979 bonding_show_num_peer_notif
, bonding_store_num_peer_notif
);
980 static DEVICE_ATTR(num_unsol_na
, S_IRUGO
| S_IWUSR
,
981 bonding_show_num_peer_notif
, bonding_store_num_peer_notif
);
984 * Show and set the MII monitor interval. There are two tricky bits
985 * here. First, if MII monitoring is activated, then we must disable
986 * ARP monitoring. Second, if the timer isn't running, we must
989 static ssize_t
bonding_show_miimon(struct device
*d
,
990 struct device_attribute
*attr
,
993 struct bonding
*bond
= to_bond(d
);
995 return sprintf(buf
, "%d\n", bond
->params
.miimon
);
998 static ssize_t
bonding_store_miimon(struct device
*d
,
999 struct device_attribute
*attr
,
1000 const char *buf
, size_t count
)
1002 int new_value
, ret
= count
;
1003 struct bonding
*bond
= to_bond(d
);
1005 if (!rtnl_trylock())
1006 return restart_syscall();
1007 if (sscanf(buf
, "%d", &new_value
) != 1) {
1008 pr_err("%s: no miimon value specified.\n",
1013 if (new_value
< 0) {
1014 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
1015 bond
->dev
->name
, new_value
, 0, INT_MAX
);
1019 pr_info("%s: Setting MII monitoring interval to %d.\n",
1020 bond
->dev
->name
, new_value
);
1021 bond
->params
.miimon
= new_value
;
1022 if (bond
->params
.updelay
)
1023 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
1025 bond
->params
.updelay
* bond
->params
.miimon
);
1026 if (bond
->params
.downdelay
)
1027 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
1029 bond
->params
.downdelay
* bond
->params
.miimon
);
1030 if (new_value
&& bond
->params
.arp_interval
) {
1031 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
1033 bond
->params
.arp_interval
= 0;
1034 if (bond
->params
.arp_validate
)
1035 bond
->params
.arp_validate
= BOND_ARP_VALIDATE_NONE
;
1037 if (bond
->dev
->flags
& IFF_UP
) {
1038 /* If the interface is up, we may need to fire off
1039 * the MII timer. If the interface is down, the
1040 * timer will get fired off when the open function
1044 cancel_delayed_work_sync(&bond
->mii_work
);
1046 cancel_delayed_work_sync(&bond
->arp_work
);
1047 queue_delayed_work(bond
->wq
, &bond
->mii_work
, 0);
1054 static DEVICE_ATTR(miimon
, S_IRUGO
| S_IWUSR
,
1055 bonding_show_miimon
, bonding_store_miimon
);
1058 * Show and set the primary slave. The store function is much
1059 * simpler than bonding_store_slaves function because it only needs to
1060 * handle one interface name.
1061 * The bond must be a mode that supports a primary for this be
1064 static ssize_t
bonding_show_primary(struct device
*d
,
1065 struct device_attribute
*attr
,
1069 struct bonding
*bond
= to_bond(d
);
1071 if (bond
->primary_slave
)
1072 count
= sprintf(buf
, "%s\n", bond
->primary_slave
->dev
->name
);
1077 static ssize_t
bonding_store_primary(struct device
*d
,
1078 struct device_attribute
*attr
,
1079 const char *buf
, size_t count
)
1082 struct slave
*slave
;
1083 struct bonding
*bond
= to_bond(d
);
1084 char ifname
[IFNAMSIZ
];
1086 if (!rtnl_trylock())
1087 return restart_syscall();
1089 read_lock(&bond
->lock
);
1090 write_lock_bh(&bond
->curr_slave_lock
);
1092 if (!USES_PRIMARY(bond
->params
.mode
)) {
1093 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1094 bond
->dev
->name
, bond
->dev
->name
, bond
->params
.mode
);
1098 sscanf(buf
, "%15s", ifname
); /* IFNAMSIZ */
1100 /* check to see if we are clearing primary */
1101 if (!strlen(ifname
) || buf
[0] == '\n') {
1102 pr_info("%s: Setting primary slave to None.\n",
1104 bond
->primary_slave
= NULL
;
1105 memset(bond
->params
.primary
, 0, sizeof(bond
->params
.primary
));
1106 bond_select_active_slave(bond
);
1110 bond_for_each_slave(bond
, slave
, i
) {
1111 if (strncmp(slave
->dev
->name
, ifname
, IFNAMSIZ
) == 0) {
1112 pr_info("%s: Setting %s as primary slave.\n",
1113 bond
->dev
->name
, slave
->dev
->name
);
1114 bond
->primary_slave
= slave
;
1115 strcpy(bond
->params
.primary
, slave
->dev
->name
);
1116 bond_select_active_slave(bond
);
1121 strncpy(bond
->params
.primary
, ifname
, IFNAMSIZ
);
1122 bond
->params
.primary
[IFNAMSIZ
- 1] = 0;
1124 pr_info("%s: Recording %s as primary, "
1125 "but it has not been enslaved to %s yet.\n",
1126 bond
->dev
->name
, ifname
, bond
->dev
->name
);
1128 write_unlock_bh(&bond
->curr_slave_lock
);
1129 read_unlock(&bond
->lock
);
1130 unblock_netpoll_tx();
1135 static DEVICE_ATTR(primary
, S_IRUGO
| S_IWUSR
,
1136 bonding_show_primary
, bonding_store_primary
);
1139 * Show and set the primary_reselect flag.
1141 static ssize_t
bonding_show_primary_reselect(struct device
*d
,
1142 struct device_attribute
*attr
,
1145 struct bonding
*bond
= to_bond(d
);
1147 return sprintf(buf
, "%s %d\n",
1148 pri_reselect_tbl
[bond
->params
.primary_reselect
].modename
,
1149 bond
->params
.primary_reselect
);
1152 static ssize_t
bonding_store_primary_reselect(struct device
*d
,
1153 struct device_attribute
*attr
,
1154 const char *buf
, size_t count
)
1156 int new_value
, ret
= count
;
1157 struct bonding
*bond
= to_bond(d
);
1159 if (!rtnl_trylock())
1160 return restart_syscall();
1162 new_value
= bond_parse_parm(buf
, pri_reselect_tbl
);
1163 if (new_value
< 0) {
1164 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
1166 (int) strlen(buf
) - 1, buf
);
1171 bond
->params
.primary_reselect
= new_value
;
1172 pr_info("%s: setting primary_reselect to %s (%d).\n",
1173 bond
->dev
->name
, pri_reselect_tbl
[new_value
].modename
,
1177 read_lock(&bond
->lock
);
1178 write_lock_bh(&bond
->curr_slave_lock
);
1179 bond_select_active_slave(bond
);
1180 write_unlock_bh(&bond
->curr_slave_lock
);
1181 read_unlock(&bond
->lock
);
1182 unblock_netpoll_tx();
1187 static DEVICE_ATTR(primary_reselect
, S_IRUGO
| S_IWUSR
,
1188 bonding_show_primary_reselect
,
1189 bonding_store_primary_reselect
);
1192 * Show and set the use_carrier flag.
1194 static ssize_t
bonding_show_carrier(struct device
*d
,
1195 struct device_attribute
*attr
,
1198 struct bonding
*bond
= to_bond(d
);
1200 return sprintf(buf
, "%d\n", bond
->params
.use_carrier
);
1203 static ssize_t
bonding_store_carrier(struct device
*d
,
1204 struct device_attribute
*attr
,
1205 const char *buf
, size_t count
)
1207 int new_value
, ret
= count
;
1208 struct bonding
*bond
= to_bond(d
);
1211 if (sscanf(buf
, "%d", &new_value
) != 1) {
1212 pr_err("%s: no use_carrier value specified.\n",
1217 if ((new_value
== 0) || (new_value
== 1)) {
1218 bond
->params
.use_carrier
= new_value
;
1219 pr_info("%s: Setting use_carrier to %d.\n",
1220 bond
->dev
->name
, new_value
);
1222 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1223 bond
->dev
->name
, new_value
);
1228 static DEVICE_ATTR(use_carrier
, S_IRUGO
| S_IWUSR
,
1229 bonding_show_carrier
, bonding_store_carrier
);
1233 * Show and set currently active_slave.
1235 static ssize_t
bonding_show_active_slave(struct device
*d
,
1236 struct device_attribute
*attr
,
1240 struct bonding
*bond
= to_bond(d
);
1243 read_lock(&bond
->curr_slave_lock
);
1244 curr
= bond
->curr_active_slave
;
1245 read_unlock(&bond
->curr_slave_lock
);
1247 if (USES_PRIMARY(bond
->params
.mode
) && curr
)
1248 count
= sprintf(buf
, "%s\n", curr
->dev
->name
);
1252 static ssize_t
bonding_store_active_slave(struct device
*d
,
1253 struct device_attribute
*attr
,
1254 const char *buf
, size_t count
)
1257 struct slave
*slave
;
1258 struct slave
*old_active
= NULL
;
1259 struct slave
*new_active
= NULL
;
1260 struct bonding
*bond
= to_bond(d
);
1261 char ifname
[IFNAMSIZ
];
1263 if (!rtnl_trylock())
1264 return restart_syscall();
1267 read_lock(&bond
->lock
);
1268 write_lock_bh(&bond
->curr_slave_lock
);
1270 if (!USES_PRIMARY(bond
->params
.mode
)) {
1271 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
1272 bond
->dev
->name
, bond
->dev
->name
, bond
->params
.mode
);
1276 sscanf(buf
, "%15s", ifname
); /* IFNAMSIZ */
1278 /* check to see if we are clearing active */
1279 if (!strlen(ifname
) || buf
[0] == '\n') {
1280 pr_info("%s: Clearing current active slave.\n",
1282 bond
->curr_active_slave
= NULL
;
1283 bond_select_active_slave(bond
);
1287 bond_for_each_slave(bond
, slave
, i
) {
1288 if (strncmp(slave
->dev
->name
, ifname
, IFNAMSIZ
) == 0) {
1289 old_active
= bond
->curr_active_slave
;
1291 if (new_active
== old_active
) {
1293 pr_info("%s: %s is already the current"
1302 (new_active
->link
== BOND_LINK_UP
) &&
1303 IS_UP(new_active
->dev
)) {
1304 pr_info("%s: Setting %s as active"
1308 bond_change_active_slave(bond
,
1312 pr_info("%s: Could not set %s as"
1313 " active slave; either %s is"
1314 " down or the link is down.\n",
1324 pr_info("%s: Unable to set %.*s as active slave.\n",
1325 bond
->dev
->name
, (int)strlen(buf
) - 1, buf
);
1327 write_unlock_bh(&bond
->curr_slave_lock
);
1328 read_unlock(&bond
->lock
);
1329 unblock_netpoll_tx();
1336 static DEVICE_ATTR(active_slave
, S_IRUGO
| S_IWUSR
,
1337 bonding_show_active_slave
, bonding_store_active_slave
);
1341 * Show link status of the bond interface.
1343 static ssize_t
bonding_show_mii_status(struct device
*d
,
1344 struct device_attribute
*attr
,
1348 struct bonding
*bond
= to_bond(d
);
1350 read_lock(&bond
->curr_slave_lock
);
1351 curr
= bond
->curr_active_slave
;
1352 read_unlock(&bond
->curr_slave_lock
);
1354 return sprintf(buf
, "%s\n", curr
? "up" : "down");
1356 static DEVICE_ATTR(mii_status
, S_IRUGO
, bonding_show_mii_status
, NULL
);
1359 * Show current 802.3ad aggregator ID.
1361 static ssize_t
bonding_show_ad_aggregator(struct device
*d
,
1362 struct device_attribute
*attr
,
1366 struct bonding
*bond
= to_bond(d
);
1368 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1369 struct ad_info ad_info
;
1370 count
= sprintf(buf
, "%d\n",
1371 bond_3ad_get_active_agg_info(bond
, &ad_info
)
1372 ? 0 : ad_info
.aggregator_id
);
1377 static DEVICE_ATTR(ad_aggregator
, S_IRUGO
, bonding_show_ad_aggregator
, NULL
);
1381 * Show number of active 802.3ad ports.
1383 static ssize_t
bonding_show_ad_num_ports(struct device
*d
,
1384 struct device_attribute
*attr
,
1388 struct bonding
*bond
= to_bond(d
);
1390 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1391 struct ad_info ad_info
;
1392 count
= sprintf(buf
, "%d\n",
1393 bond_3ad_get_active_agg_info(bond
, &ad_info
)
1394 ? 0 : ad_info
.ports
);
1399 static DEVICE_ATTR(ad_num_ports
, S_IRUGO
, bonding_show_ad_num_ports
, NULL
);
1403 * Show current 802.3ad actor key.
1405 static ssize_t
bonding_show_ad_actor_key(struct device
*d
,
1406 struct device_attribute
*attr
,
1410 struct bonding
*bond
= to_bond(d
);
1412 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1413 struct ad_info ad_info
;
1414 count
= sprintf(buf
, "%d\n",
1415 bond_3ad_get_active_agg_info(bond
, &ad_info
)
1416 ? 0 : ad_info
.actor_key
);
1421 static DEVICE_ATTR(ad_actor_key
, S_IRUGO
, bonding_show_ad_actor_key
, NULL
);
1425 * Show current 802.3ad partner key.
1427 static ssize_t
bonding_show_ad_partner_key(struct device
*d
,
1428 struct device_attribute
*attr
,
1432 struct bonding
*bond
= to_bond(d
);
1434 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1435 struct ad_info ad_info
;
1436 count
= sprintf(buf
, "%d\n",
1437 bond_3ad_get_active_agg_info(bond
, &ad_info
)
1438 ? 0 : ad_info
.partner_key
);
1443 static DEVICE_ATTR(ad_partner_key
, S_IRUGO
, bonding_show_ad_partner_key
, NULL
);
1447 * Show current 802.3ad partner mac.
1449 static ssize_t
bonding_show_ad_partner_mac(struct device
*d
,
1450 struct device_attribute
*attr
,
1454 struct bonding
*bond
= to_bond(d
);
1456 if (bond
->params
.mode
== BOND_MODE_8023AD
) {
1457 struct ad_info ad_info
;
1458 if (!bond_3ad_get_active_agg_info(bond
, &ad_info
))
1459 count
= sprintf(buf
, "%pM\n", ad_info
.partner_system
);
1464 static DEVICE_ATTR(ad_partner_mac
, S_IRUGO
, bonding_show_ad_partner_mac
, NULL
);
1467 * Show the queue_ids of the slaves in the current bond.
1469 static ssize_t
bonding_show_queue_id(struct device
*d
,
1470 struct device_attribute
*attr
,
1473 struct slave
*slave
;
1475 struct bonding
*bond
= to_bond(d
);
1477 if (!rtnl_trylock())
1478 return restart_syscall();
1480 read_lock(&bond
->lock
);
1481 bond_for_each_slave(bond
, slave
, i
) {
1482 if (res
> (PAGE_SIZE
- IFNAMSIZ
- 6)) {
1483 /* not enough space for another interface_name:queue_id pair */
1484 if ((PAGE_SIZE
- res
) > 10)
1485 res
= PAGE_SIZE
- 10;
1486 res
+= sprintf(buf
+ res
, "++more++ ");
1489 res
+= sprintf(buf
+ res
, "%s:%d ",
1490 slave
->dev
->name
, slave
->queue_id
);
1492 read_unlock(&bond
->lock
);
1494 buf
[res
-1] = '\n'; /* eat the leftover space */
1500 * Set the queue_ids of the slaves in the current bond. The bond
1501 * interface must be enslaved for this to work.
1503 static ssize_t
bonding_store_queue_id(struct device
*d
,
1504 struct device_attribute
*attr
,
1505 const char *buffer
, size_t count
)
1507 struct slave
*slave
, *update_slave
;
1508 struct bonding
*bond
= to_bond(d
);
1512 struct net_device
*sdev
= NULL
;
1514 if (!rtnl_trylock())
1515 return restart_syscall();
1517 /* delim will point to queue id if successful */
1518 delim
= strchr(buffer
, ':');
1523 * Terminate string that points to device name and bump it
1524 * up one, so we can read the queue id there.
1527 if (sscanf(++delim
, "%hd\n", &qid
) != 1)
1530 /* Check buffer length, valid ifname and queue id */
1531 if (strlen(buffer
) > IFNAMSIZ
||
1532 !dev_valid_name(buffer
) ||
1533 qid
> bond
->dev
->real_num_tx_queues
)
1536 /* Get the pointer to that interface if it exists */
1537 sdev
= __dev_get_by_name(dev_net(bond
->dev
), buffer
);
1541 read_lock(&bond
->lock
);
1543 /* Search for thes slave and check for duplicate qids */
1544 update_slave
= NULL
;
1545 bond_for_each_slave(bond
, slave
, i
) {
1546 if (sdev
== slave
->dev
)
1548 * We don't need to check the matching
1549 * slave for dups, since we're overwriting it
1551 update_slave
= slave
;
1552 else if (qid
&& qid
== slave
->queue_id
) {
1553 goto err_no_cmd_unlock
;
1558 goto err_no_cmd_unlock
;
1560 /* Actually set the qids for the slave */
1561 update_slave
->queue_id
= qid
;
1563 read_unlock(&bond
->lock
);
1569 read_unlock(&bond
->lock
);
1571 pr_info("invalid input for queue_id set for %s.\n",
1577 static DEVICE_ATTR(queue_id
, S_IRUGO
| S_IWUSR
, bonding_show_queue_id
,
1578 bonding_store_queue_id
);
1582 * Show and set the all_slaves_active flag.
1584 static ssize_t
bonding_show_slaves_active(struct device
*d
,
1585 struct device_attribute
*attr
,
1588 struct bonding
*bond
= to_bond(d
);
1590 return sprintf(buf
, "%d\n", bond
->params
.all_slaves_active
);
1593 static ssize_t
bonding_store_slaves_active(struct device
*d
,
1594 struct device_attribute
*attr
,
1595 const char *buf
, size_t count
)
1597 int i
, new_value
, ret
= count
;
1598 struct bonding
*bond
= to_bond(d
);
1599 struct slave
*slave
;
1601 if (sscanf(buf
, "%d", &new_value
) != 1) {
1602 pr_err("%s: no all_slaves_active value specified.\n",
1608 if (new_value
== bond
->params
.all_slaves_active
)
1611 if ((new_value
== 0) || (new_value
== 1)) {
1612 bond
->params
.all_slaves_active
= new_value
;
1614 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1615 bond
->dev
->name
, new_value
);
1620 read_lock(&bond
->lock
);
1621 bond_for_each_slave(bond
, slave
, i
) {
1622 if (!bond_is_active_slave(slave
)) {
1624 slave
->inactive
= 0;
1626 slave
->inactive
= 1;
1629 read_unlock(&bond
->lock
);
1633 static DEVICE_ATTR(all_slaves_active
, S_IRUGO
| S_IWUSR
,
1634 bonding_show_slaves_active
, bonding_store_slaves_active
);
1637 * Show and set the number of IGMP membership reports to send on link failure
1639 static ssize_t
bonding_show_resend_igmp(struct device
*d
,
1640 struct device_attribute
*attr
,
1643 struct bonding
*bond
= to_bond(d
);
1645 return sprintf(buf
, "%d\n", bond
->params
.resend_igmp
);
1648 static ssize_t
bonding_store_resend_igmp(struct device
*d
,
1649 struct device_attribute
*attr
,
1650 const char *buf
, size_t count
)
1652 int new_value
, ret
= count
;
1653 struct bonding
*bond
= to_bond(d
);
1655 if (sscanf(buf
, "%d", &new_value
) != 1) {
1656 pr_err("%s: no resend_igmp value specified.\n",
1662 if (new_value
< 0 || new_value
> 255) {
1663 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1664 bond
->dev
->name
, new_value
);
1669 pr_info("%s: Setting resend_igmp to %d.\n",
1670 bond
->dev
->name
, new_value
);
1671 bond
->params
.resend_igmp
= new_value
;
1676 static DEVICE_ATTR(resend_igmp
, S_IRUGO
| S_IWUSR
,
1677 bonding_show_resend_igmp
, bonding_store_resend_igmp
);
1679 static struct attribute
*per_bond_attrs
[] = {
1680 &dev_attr_slaves
.attr
,
1681 &dev_attr_mode
.attr
,
1682 &dev_attr_fail_over_mac
.attr
,
1683 &dev_attr_arp_validate
.attr
,
1684 &dev_attr_arp_all_targets
.attr
,
1685 &dev_attr_arp_interval
.attr
,
1686 &dev_attr_arp_ip_target
.attr
,
1687 &dev_attr_downdelay
.attr
,
1688 &dev_attr_updelay
.attr
,
1689 &dev_attr_lacp_rate
.attr
,
1690 &dev_attr_ad_select
.attr
,
1691 &dev_attr_xmit_hash_policy
.attr
,
1692 &dev_attr_num_grat_arp
.attr
,
1693 &dev_attr_num_unsol_na
.attr
,
1694 &dev_attr_miimon
.attr
,
1695 &dev_attr_primary
.attr
,
1696 &dev_attr_primary_reselect
.attr
,
1697 &dev_attr_use_carrier
.attr
,
1698 &dev_attr_active_slave
.attr
,
1699 &dev_attr_mii_status
.attr
,
1700 &dev_attr_ad_aggregator
.attr
,
1701 &dev_attr_ad_num_ports
.attr
,
1702 &dev_attr_ad_actor_key
.attr
,
1703 &dev_attr_ad_partner_key
.attr
,
1704 &dev_attr_ad_partner_mac
.attr
,
1705 &dev_attr_queue_id
.attr
,
1706 &dev_attr_all_slaves_active
.attr
,
1707 &dev_attr_resend_igmp
.attr
,
1708 &dev_attr_min_links
.attr
,
1712 static struct attribute_group bonding_group
= {
1714 .attrs
= per_bond_attrs
,
1718 * Initialize sysfs. This sets up the bonding_masters file in
1721 int bond_create_sysfs(struct bond_net
*bn
)
1725 bn
->class_attr_bonding_masters
= class_attr_bonding_masters
;
1726 sysfs_attr_init(&bn
->class_attr_bonding_masters
.attr
);
1728 ret
= netdev_class_create_file(&bn
->class_attr_bonding_masters
);
1730 * Permit multiple loads of the module by ignoring failures to
1731 * create the bonding_masters sysfs file. Bonding devices
1732 * created by second or subsequent loads of the module will
1733 * not be listed in, or controllable by, bonding_masters, but
1734 * will have the usual "bonding" sysfs directory.
1736 * This is done to preserve backwards compatibility for
1737 * initscripts/sysconfig, which load bonding multiple times to
1738 * configure multiple bonding devices.
1740 if (ret
== -EEXIST
) {
1741 /* Is someone being kinky and naming a device bonding_master? */
1742 if (__dev_get_by_name(bn
->net
,
1743 class_attr_bonding_masters
.attr
.name
))
1744 pr_err("network device named %s already exists in sysfs",
1745 class_attr_bonding_masters
.attr
.name
);
1754 * Remove /sys/class/net/bonding_masters.
1756 void bond_destroy_sysfs(struct bond_net
*bn
)
1758 netdev_class_remove_file(&bn
->class_attr_bonding_masters
);
1762 * Initialize sysfs for each bond. This sets up and registers
1763 * the 'bondctl' directory for each individual bond under /sys/class/net.
1765 void bond_prepare_sysfs_group(struct bonding
*bond
)
1767 bond
->dev
->sysfs_groups
[0] = &bonding_group
;