Commit 0c509a6c authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller

net: Allow devices to specify a device specific sysfs group.

This isn't beautifully abstracted, but it is simple,
simplifies uses and so far is only needed for the bonding driver.
Signed-off-by: default avatarEric W. Biederman <ebiederm@aristanetworks.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0bd8d536
...@@ -900,8 +900,8 @@ struct net_device ...@@ -900,8 +900,8 @@ struct net_device
/* class/net/name entry */ /* class/net/name entry */
struct device dev; struct device dev;
/* space for optional statistics and wireless sysfs groups */ /* space for optional device, statistics, and wireless sysfs groups */
const struct attribute_group *sysfs_groups[3]; const struct attribute_group *sysfs_groups[4];
/* rtnetlink link ops */ /* rtnetlink link ops */
const struct rtnl_link_ops *rtnl_link_ops; const struct rtnl_link_ops *rtnl_link_ops;
......
...@@ -544,8 +544,11 @@ int netdev_register_kobject(struct net_device *net) ...@@ -544,8 +544,11 @@ int netdev_register_kobject(struct net_device *net)
dev_set_name(dev, "%s", net->name); dev_set_name(dev, "%s", net->name);
#ifdef CONFIG_SYSFS #ifdef CONFIG_SYSFS
*groups++ = &netstat_group; /* Allow for a device specific group */
if (*groups)
groups++;
*groups++ = &netstat_group;
#ifdef CONFIG_WIRELESS_EXT_SYSFS #ifdef CONFIG_WIRELESS_EXT_SYSFS
if (net->ieee80211_ptr) if (net->ieee80211_ptr)
*groups++ = &wireless_group; *groups++ = &wireless_group;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment