[NETNS]: Fix loopback network namespace initialization.

The core patchset of the network namespace sent by
Eric Biederman does not do dynamic loopback creation.
So there is no call to alloc_netdev_mq which fills the
network namespace field of the netdevice.

This patch assign the loopback to the init network namespace.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Daniel Lezcano 2007-09-12 14:54:14 +02:00 коммит произвёл David S. Miller
Родитель 36ac3135f5
Коммит abf07acbb9
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -225,6 +225,7 @@ struct net_device loopback_dev = {
| NETIF_F_LLTX | NETIF_F_LLTX
| NETIF_F_NETNS_LOCAL, | NETIF_F_NETNS_LOCAL,
.ethtool_ops = &loopback_ethtool_ops, .ethtool_ops = &loopback_ethtool_ops,
.nd_net = &init_net,
}; };
/* Setup and register the loopback device. */ /* Setup and register the loopback device. */