diff options
author | Daniel Lezcano <dlezcano@fr.ibm.com> | 2007-09-25 22:16:28 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:14 -0400 |
commit | de3cb747ffac5f2a4a6bb156e7e2fd5229e688e5 (patch) | |
tree | fe79764b8093843934c9b9f82f573e7a92cef406 /net/xfrm/xfrm_policy.c | |
parent | 556829657397b9b05baec6691ead4e22ee8d1567 (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 'net/xfrm/xfrm_policy.c')
-rw-r--r-- | net/xfrm/xfrm_policy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index 50682d3cd7a9..d6dfd7d1948f 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c | |||
@@ -1949,8 +1949,8 @@ static int stale_bundle(struct dst_entry *dst) | |||
1949 | void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev) | 1949 | void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev) |
1950 | { | 1950 | { |
1951 | while ((dst = dst->child) && dst->xfrm && dst->dev == dev) { | 1951 | while ((dst = dst->child) && dst->xfrm && dst->dev == dev) { |
1952 | dst->dev = &loopback_dev; | 1952 | dst->dev = loopback_dev; |
1953 | dev_hold(&loopback_dev); | 1953 | dev_hold(dst->dev); |
1954 | dev_put(dev); | 1954 | dev_put(dev); |
1955 | } | 1955 | } |
1956 | } | 1956 | } |