diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/sit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 7badac6c7416..4b2f1033994e 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c | |||
@@ -182,6 +182,8 @@ static struct ip_tunnel * ipip6_tunnel_locate(struct net *net, | |||
182 | if (dev == NULL) | 182 | if (dev == NULL) |
183 | return NULL; | 183 | return NULL; |
184 | 184 | ||
185 | dev_net_set(dev, net); | ||
186 | |||
185 | if (strchr(name, '%')) { | 187 | if (strchr(name, '%')) { |
186 | if (dev_alloc_name(dev, name) < 0) | 188 | if (dev_alloc_name(dev, name) < 0) |
187 | goto failed_free; | 189 | goto failed_free; |
@@ -1029,6 +1031,7 @@ static void ipip6_tunnel_setup(struct net_device *dev) | |||
1029 | dev->flags = IFF_NOARP; | 1031 | dev->flags = IFF_NOARP; |
1030 | dev->iflink = 0; | 1032 | dev->iflink = 0; |
1031 | dev->addr_len = 4; | 1033 | dev->addr_len = 4; |
1034 | dev->features |= NETIF_F_NETNS_LOCAL; | ||
1032 | } | 1035 | } |
1033 | 1036 | ||
1034 | static int ipip6_tunnel_init(struct net_device *dev) | 1037 | static int ipip6_tunnel_init(struct net_device *dev) |