diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-06-08 01:35:38 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-06-08 20:33:08 (GMT) |
commit | 6363097cc4d182f93788131b5d8f72aa91d950a0 (patch) | |
tree | a90b11cc948ce3dcb48bd14f82c0776cf25e8eaf | |
parent | 85f6038f2170e3335dda09c3dfb0f83110e87019 (diff) | |
download | linux-fsl-qoriq-6363097cc4d182f93788131b5d8f72aa91d950a0.tar.xz |
[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>
-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 fa97b96..abf6352 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, } } - if (destroy) { + if (destroy) inet_free_ifa(ifa1); - - if (!in_dev->ifa_list) - inetdev_destroy(in_dev); - } } static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap, |