diff options
Diffstat (limited to 'net/core/dst.c')
-rw-r--r-- | net/core/dst.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index ad5ffa19d809..16958e64e577 100644 --- a/net/core/dst.c +++ b/net/core/dst.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/types.h> | 18 | #include <linux/types.h> |
19 | #include <net/net_namespace.h> | 19 | #include <net/net_namespace.h> |
20 | 20 | ||
21 | #include <net/net_namespace.h> | ||
21 | #include <net/dst.h> | 22 | #include <net/dst.h> |
22 | 23 | ||
23 | /* | 24 | /* |
@@ -278,11 +279,11 @@ static inline void dst_ifdown(struct dst_entry *dst, struct net_device *dev, | |||
278 | if (!unregister) { | 279 | if (!unregister) { |
279 | dst->input = dst->output = dst_discard; | 280 | dst->input = dst->output = dst_discard; |
280 | } else { | 281 | } else { |
281 | dst->dev = loopback_dev; | 282 | dst->dev = init_net.loopback_dev; |
282 | dev_hold(dst->dev); | 283 | dev_hold(dst->dev); |
283 | dev_put(dev); | 284 | dev_put(dev); |
284 | if (dst->neighbour && dst->neighbour->dev == dev) { | 285 | if (dst->neighbour && dst->neighbour->dev == dev) { |
285 | dst->neighbour->dev = loopback_dev; | 286 | dst->neighbour->dev = init_net.loopback_dev; |
286 | dev_put(dev); | 287 | dev_put(dev); |
287 | dev_hold(dst->neighbour->dev); | 288 | dev_hold(dst->neighbour->dev); |
288 | } | 289 | } |