aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@parallels.com>2012-08-08 17:52:46 -0400
committerDavid S. Miller <davem@davemloft.net>2012-08-09 19:18:06 -0400
commit9c7dafbfab1554705f85523fead578aa1a3d338c (patch)
tree462dc2a2b854b3c7ad80a351a0ef780b790bc109 /net/core/dev.c
parentb14f243a42c7aa43de71f878641acd003f223022 (diff)
net: Allow to create links with given ifindex
Currently the RTM_NEWLINK results in -EOPNOTSUPP if the ifinfomsg->ifi_index is not zero. I propose to allow requesting ifindices on link creation. This is required by the checkpoint-restore to correctly restore a net namespace (i.e. -- a container). Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Acked-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index f91abf80016..3ca300d8527 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -5579,7 +5579,12 @@ int register_netdevice(struct net_device *dev)
5579 } 5579 }
5580 } 5580 }
5581 5581
5582 dev->ifindex = dev_new_index(net); 5582 ret = -EBUSY;
5583 if (!dev->ifindex)
5584 dev->ifindex = dev_new_index(net);
5585 else if (__dev_get_by_index(net, dev->ifindex))
5586 goto err_uninit;
5587
5583 if (dev->iflink == -1) 5588 if (dev->iflink == -1)
5584 dev->iflink = dev->ifindex; 5589 dev->iflink = dev->ifindex;
5585 5590