[NET]: Initialize the network namespace of network devices.
authorEric W. Biederman <ebiederm@xmission.com>
Wed, 12 Sep 2007 10:57:33 +0000 (12:57 +0200)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:49:07 +0000 (16:49 -0700)
commit6d34b1c27a72d5d1c73c567b2f6b1fde316e0eae
tree01e9abb8a2babae407ffe11b5202505992d41265
parent1b8d7ae42d02e483ad94035cca851e4f7fbecb40
[NET]: Initialize the network namespace of network devices.

Except for carefully selected pseudo devices all network
interfaces should start out in the initial network namespace.
Ultimately it will be register_netdev that examines what
dev->nd_net is set to and places a device in a network namespace.

This patch modifies alloc_netdev to initialize the network
namespace a device is in with the initial network namespace.
This gets it right for the vast majority of devices so their
drivers need not be modified and for those few pseudo devices
that need something different they can change this parameter
before calling register_netdevice.

The network namespace parameter on a network device is not
reference counted as the devices are inside of a network namespace
and cannot remain in that namespace past the lifetime of the
network namespace.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c