diff options
Diffstat (limited to 'net/decnet/dn_fib.c')
-rw-r--r-- | net/decnet/dn_fib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/decnet/dn_fib.c b/net/decnet/dn_fib.c index d2bc19d47950..3760a20d10d0 100644 --- a/net/decnet/dn_fib.c +++ b/net/decnet/dn_fib.c | |||
@@ -212,7 +212,7 @@ static int dn_fib_check_nh(const struct rtmsg *r, struct dn_fib_info *fi, struct | |||
212 | return -EINVAL; | 212 | return -EINVAL; |
213 | if (dnet_addr_type(nh->nh_gw) != RTN_UNICAST) | 213 | if (dnet_addr_type(nh->nh_gw) != RTN_UNICAST) |
214 | return -EINVAL; | 214 | return -EINVAL; |
215 | if ((dev = __dev_get_by_index(nh->nh_oif)) == NULL) | 215 | if ((dev = __dev_get_by_index(&init_net, nh->nh_oif)) == NULL) |
216 | return -ENODEV; | 216 | return -ENODEV; |
217 | if (!(dev->flags&IFF_UP)) | 217 | if (!(dev->flags&IFF_UP)) |
218 | return -ENETDOWN; | 218 | return -ENETDOWN; |
@@ -255,7 +255,7 @@ out: | |||
255 | if (nh->nh_flags&(RTNH_F_PERVASIVE|RTNH_F_ONLINK)) | 255 | if (nh->nh_flags&(RTNH_F_PERVASIVE|RTNH_F_ONLINK)) |
256 | return -EINVAL; | 256 | return -EINVAL; |
257 | 257 | ||
258 | dev = __dev_get_by_index(nh->nh_oif); | 258 | dev = __dev_get_by_index(&init_net, nh->nh_oif); |
259 | if (dev == NULL || dev->dn_ptr == NULL) | 259 | if (dev == NULL || dev->dn_ptr == NULL) |
260 | return -ENODEV; | 260 | return -ENODEV; |
261 | if (!(dev->flags&IFF_UP)) | 261 | if (!(dev->flags&IFF_UP)) |
@@ -355,7 +355,7 @@ struct dn_fib_info *dn_fib_create_info(const struct rtmsg *r, struct dn_kern_rta | |||
355 | if (nhs != 1 || nh->nh_gw) | 355 | if (nhs != 1 || nh->nh_gw) |
356 | goto err_inval; | 356 | goto err_inval; |
357 | nh->nh_scope = RT_SCOPE_NOWHERE; | 357 | nh->nh_scope = RT_SCOPE_NOWHERE; |
358 | nh->nh_dev = dev_get_by_index(fi->fib_nh->nh_oif); | 358 | nh->nh_dev = dev_get_by_index(&init_net, fi->fib_nh->nh_oif); |
359 | err = -ENODEV; | 359 | err = -ENODEV; |
360 | if (nh->nh_dev == NULL) | 360 | if (nh->nh_dev == NULL) |
361 | goto failure; | 361 | goto failure; |
@@ -602,7 +602,7 @@ static void dn_fib_del_ifaddr(struct dn_ifaddr *ifa) | |||
602 | 602 | ||
603 | /* Scan device list */ | 603 | /* Scan device list */ |
604 | read_lock(&dev_base_lock); | 604 | read_lock(&dev_base_lock); |
605 | for_each_netdev(dev) { | 605 | for_each_netdev(&init_net, dev) { |
606 | dn_db = dev->dn_ptr; | 606 | dn_db = dev->dn_ptr; |
607 | if (dn_db == NULL) | 607 | if (dn_db == NULL) |
608 | continue; | 608 | continue; |