Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121504
b: refs/heads/master
c: 3891845
h: refs/heads/master
v: v3
  • Loading branch information
Eric W. Biederman authored and David S. Miller committed Oct 28, 2008
1 parent bdc2676 commit dd5ba1d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7c510e4b730a92cecf94ada45c989d8be0200d47
refs/heads/master: 3891845e1ef6e6807075d4241966b26f6ecb0a5c
2 changes: 1 addition & 1 deletion trunk/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ menu "Networking options"
config NET_NS
bool "Network namespace support"
default n
depends on EXPERIMENTAL && !SYSFS && NAMESPACES
depends on EXPERIMENTAL && NAMESPACES
help
Allow user space to create what appear to be multiple instances
of the network stack.
Expand Down
25 changes: 20 additions & 5 deletions trunk/net/core/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -924,10 +924,15 @@ int dev_change_name(struct net_device *dev, const char *newname)
strlcpy(dev->name, newname, IFNAMSIZ);

rollback:
ret = device_rename(&dev->dev, dev->name);
if (ret) {
memcpy(dev->name, oldname, IFNAMSIZ);
return ret;
/* For now only devices in the initial network namespace
* are in sysfs.
*/
if (net == &init_net) {
ret = device_rename(&dev->dev, dev->name);
if (ret) {
memcpy(dev->name, oldname, IFNAMSIZ);
return ret;
}
}

write_lock_bh(&dev_base_lock);
Expand Down Expand Up @@ -4460,6 +4465,15 @@ int dev_change_net_namespace(struct net_device *dev, struct net *net, const char
if (dev->features & NETIF_F_NETNS_LOCAL)
goto out;

#ifdef CONFIG_SYSFS
/* Don't allow real devices to be moved when sysfs
* is enabled.
*/
err = -EINVAL;
if (dev->dev.parent)
goto out;
#endif

/* Ensure the device has been registrered */
err = -EINVAL;
if (dev->reg_state != NETREG_REGISTERED)
Expand Down Expand Up @@ -4517,6 +4531,8 @@ int dev_change_net_namespace(struct net_device *dev, struct net *net, const char
*/
dev_addr_discard(dev);

netdev_unregister_kobject(dev);

/* Actually switch the network namespace */
dev_net_set(dev, net);

Expand All @@ -4533,7 +4549,6 @@ int dev_change_net_namespace(struct net_device *dev, struct net *net, const char
}

/* Fixup kobjects */
netdev_unregister_kobject(dev);
err = netdev_register_kobject(dev);
WARN_ON(err);

Expand Down
7 changes: 7 additions & 0 deletions trunk/net/core/net-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,10 @@ void netdev_unregister_kobject(struct net_device * net)
struct device *dev = &(net->dev);

kobject_get(&dev->kobj);

if (dev_net(net) != &init_net)
return;

device_del(dev);
}

Expand All @@ -501,6 +505,9 @@ int netdev_register_kobject(struct net_device *net)
#endif
#endif /* CONFIG_SYSFS */

if (dev_net(net) != &init_net)
return 0;

return device_add(dev);
}

Expand Down

0 comments on commit dd5ba1d

Please sign in to comment.