aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding/bond_sysfs.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@aristanetworks.com>2009-10-29 10:18:22 -0400
committerDavid S. Miller <davem@davemloft.net>2009-10-30 15:41:19 -0400
commit6151b3d435feeeae7487032fcd5c8c7f281ba05c (patch)
tree0fa59fbfc8c7afb246870308dc742de931d926b3 /drivers/net/bonding/bond_sysfs.c
parent0c509a6c9393b27a8c5a01acd4a72616206cfc24 (diff)
bond: Simply bond sysfs group creation
This patch delegates the work of creating the sysfs groups to the netdev layer and ultimately to the device layer. This closes races between uevents. Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_sysfs.c')
-rw-r--r--drivers/net/bonding/bond_sysfs.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/drivers/net/bonding/bond_sysfs.c b/drivers/net/bonding/bond_sysfs.c
index dca7d82f7b9..f924a0bcf8d 100644
--- a/drivers/net/bonding/bond_sysfs.c
+++ b/drivers/net/bonding/bond_sysfs.c
@@ -1616,24 +1616,8 @@ void bond_destroy_sysfs(void)
1616 * Initialize sysfs for each bond. This sets up and registers 1616 * Initialize sysfs for each bond. This sets up and registers
1617 * the 'bondctl' directory for each individual bond under /sys/class/net. 1617 * the 'bondctl' directory for each individual bond under /sys/class/net.
1618 */ 1618 */
1619int bond_create_sysfs_entry(struct bonding *bond) 1619void bond_prepare_sysfs_group(struct bonding *bond)
1620{ 1620{
1621 struct net_device *dev = bond->dev; 1621 bond->dev->sysfs_groups[0] = &bonding_group;
1622 int err;
1623
1624 err = sysfs_create_group(&(dev->dev.kobj), &bonding_group);
1625 if (err)
1626 pr_emerg("eek! didn't create group!\n");
1627
1628 return err;
1629}
1630/*
1631 * Remove sysfs entries for each bond.
1632 */
1633void bond_destroy_sysfs_entry(struct bonding *bond)
1634{
1635 struct net_device *dev = bond->dev;
1636
1637 sysfs_remove_group(&(dev->dev.kobj), &bonding_group);
1638} 1622}
1639 1623