aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/loopback.c
diff options
context:
space:
mode:
authorDaniel Lezcano <dlezcano@fr.ibm.com>2007-09-25 22:16:28 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:52:14 -0400
commitde3cb747ffac5f2a4a6bb156e7e2fd5229e688e5 (patch)
treefe79764b8093843934c9b9f82f573e7a92cef406 /drivers/net/loopback.c
parent556829657397b9b05baec6691ead4e22ee8d1567 (diff)
[NET]: Dynamically allocate the loopback device, part 1.
This patch replaces all occurences to the static variable loopback_dev to a pointer loopback_dev. That provides the mindless, trivial, uninteressting change part for the dynamic allocation for the loopback. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com> Acked-By: Kirill Korotaev <dev@sw.ru> Acked-by: Benjamin Thery <benjamin.thery@bull.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/loopback.c')
-rw-r--r--drivers/net/loopback.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c
index 0e2252fd71ab..588092e13186 100644
--- a/drivers/net/loopback.c
+++ b/drivers/net/loopback.c
@@ -202,7 +202,7 @@ static const struct ethtool_ops loopback_ethtool_ops = {
202 * The loopback device is special. There is only one instance and 202 * The loopback device is special. There is only one instance and
203 * it is statically allocated. Don't do this for other devices. 203 * it is statically allocated. Don't do this for other devices.
204 */ 204 */
205struct net_device loopback_dev = { 205struct net_device __loopback_dev = {
206 .name = "lo", 206 .name = "lo",
207 .get_stats = &get_stats, 207 .get_stats = &get_stats,
208 .mtu = (16 * 1024) + 20 + 20 + 12, 208 .mtu = (16 * 1024) + 20 + 20 + 12,
@@ -227,10 +227,12 @@ struct net_device loopback_dev = {
227 .nd_net = &init_net, 227 .nd_net = &init_net,
228}; 228};
229 229
230struct net_device *loopback_dev = &__loopback_dev;
231
230/* Setup and register the loopback device. */ 232/* Setup and register the loopback device. */
231static int __init loopback_init(void) 233static int __init loopback_init(void)
232{ 234{
233 int err = register_netdev(&loopback_dev); 235 int err = register_netdev(loopback_dev);
234 236
235 if (err) 237 if (err)
236 panic("loopback: Failed to register netdevice: %d\n", err); 238 panic("loopback: Failed to register netdevice: %d\n", err);