diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-06-07 21:35:38 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-06-08 16:33:08 -0400 |
commit | 6363097cc4d182f93788131b5d8f72aa91d950a0 (patch) | |
tree | a90b11cc948ce3dcb48bd14f82c0776cf25e8eaf /net | |
parent | 85f6038f2170e3335dda09c3dfb0f83110e87019 (diff) |
[IPV4]: Do not remove idev when addresses are cleared
Now that we create idev before addresses are added, it no longer makes
sense to remove them when addresses are all deleted.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/devinet.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c index fa97b96a3d89..abf6352f990f 100644 --- a/net/ipv4/devinet.c +++ b/net/ipv4/devinet.c | |||
@@ -327,12 +327,8 @@ static void __inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, | |||
327 | } | 327 | } |
328 | 328 | ||
329 | } | 329 | } |
330 | if (destroy) { | 330 | if (destroy) |
331 | inet_free_ifa(ifa1); | 331 | inet_free_ifa(ifa1); |
332 | |||
333 | if (!in_dev->ifa_list) | ||
334 | inetdev_destroy(in_dev); | ||
335 | } | ||
336 | } | 332 | } |
337 | 333 | ||
338 | static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, | 334 | static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, |