From: Herbert Xu Date: Fri, 8 Jun 2007 01:35:38 +0000 (-0700) Subject: [IPV4]: Do not remove idev when addresses are cleared X-Git-Tag: v2.6.22-rc5~58^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6363097cc4d182f93788131b5d8f72aa91d950a0;p=platform%2Fkernel%2Flinux-3.10.git [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 Signed-off-by: David S. Miller --- 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,