[PATCH 3/4] net: cleanup some vars names to be more consistant withthe network code

From: Benjamin Thery
Date: Wed Oct 22 2008 - 11:24:35 EST


This small patch renames a couple of net_device variables from
'net' to 'netdev' to avoid confusion with 'struct net' variables
that will be introduced in the next patch.
'net' is commonly used to designate 'struct net' in the rest of
the network code.

Signed-off-by: Benjamin Thery <benjamin.thery@xxxxxxxx>
Acked-by: Serge Hallyn <serue@xxxxxxxxxx>
---
net/core/net-sysfs.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

Index: net-next-2.6/net/core/net-sysfs.c
===================================================================
--- net-next-2.6.orig/net/core/net-sysfs.c
+++ net-next-2.6/net/core/net-sysfs.c
@@ -471,32 +471,33 @@ static struct class net_class = {
/* Delete sysfs entries but hold kobject reference until after all
* netdev references are gone.
*/
-void netdev_unregister_kobject(struct net_device * net)
+void netdev_unregister_kobject(struct net_device *netdev)
{
- struct device *dev = &(net->dev);
+ struct device *dev = &(netdev->dev);

kobject_get(&dev->kobj);
device_del(dev);
}

/* Create sysfs entries for network device. */
-int netdev_register_kobject(struct net_device *net)
+int netdev_register_kobject(struct net_device *netdev)
{
- struct device *dev = &(net->dev);
- struct attribute_group **groups = net->sysfs_groups;
+ struct device *dev = &(netdev->dev);
+ struct attribute_group **groups = netdev->sysfs_groups;

dev->class = &net_class;
- dev->platform_data = net;
+ dev->platform_data = netdev;
dev->groups = groups;

BUILD_BUG_ON(BUS_ID_SIZE < IFNAMSIZ);
- strlcpy(dev->bus_id, net->name, BUS_ID_SIZE);
+ strlcpy(dev->bus_id, netdev->name, BUS_ID_SIZE);

#ifdef CONFIG_SYSFS
*groups++ = &netstat_group;

#ifdef CONFIG_WIRELESS_EXT_SYSFS
- if (net->wireless_handlers && net->wireless_handlers->get_wireless_stats)
+ if (netdev->wireless_handlers &&
+ netdev->wireless_handlers->get_wireless_stats)
*groups++ = &wireless_group;
#endif
#endif /* CONFIG_SYSFS */

--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/