From: Yan Zheng <yanzheng@21cn.com>
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH]The second param of addrconf_ifdown() in function addrconf_notify() for event NETDEV_CHANGEMTU.
Date: Sun, 16 Oct 2005 23:25:29 +0800 [thread overview]
Message-ID: <435270E9.10005@21cn.com> (raw)
Hi.
I think the second parameter of addrconf_ifdown() should be 0 for event NETDEV_CHANGEMTU.
Signed-off-by: Yan Zheng <yanzheng@21cn.com>
Index: net/ipv6/addrconf.c
===================================================================
--- linux-2.6.14-rc4-git2/net/ipv6/addrconf.c 2005-10-14 18:28:01.000000000 +0800
+++ linux/net/ipv6/addrconf.c 2005-10-16 23:04:40.000000000 +0800
@@ -2018,7 +2018,7 @@
stop IPv6 on this interface.
*/
if (dev->mtu < IPV6_MIN_MTU)
- addrconf_ifdown(dev, event != NETDEV_DOWN);
+ addrconf_ifdown(dev, 0);
}
break;
@@ -2036,7 +2036,7 @@
/*
* Remove all addresses from this interface.
*/
- addrconf_ifdown(dev, event != NETDEV_DOWN);
+ addrconf_ifdown(dev, event == NETDEV_UNREGISTER);
break;
case NETDEV_CHANGE:
break;
reply other threads:[~2005-10-16 15:25 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=435270E9.10005@21cn.com \
--to=yanzheng@21cn.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).