diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-10-24 13:54:20 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-25 10:54:39 +0900 |
commit | ef5201c83d1400570a3b6f004ad7a23d71934411 (patch) | |
tree | acb2bda2500e8c867695fe8fe2e6a168d50287f6 /net/core | |
parent | eeda3fb9e132bd5f9592c4c664ba944cf1ac5b9f (diff) | |
download | linux-stable-ef5201c83d1400570a3b6f004ad7a23d71934411.tar.gz linux-stable-ef5201c83d1400570a3b6f004ad7a23d71934411.tar.bz2 linux-stable-ef5201c83d1400570a3b6f004ad7a23d71934411.zip |
bonding: remove rtmsg_ifinfo called after bond_lower_state_changed
After the patch 'rtnetlink: bring NETDEV_CHANGELOWERSTATE event
process back to rtnetlink_event', bond_lower_state_changed would
generate NETDEV_CHANGEUPPER event which would send a notification
to userspace in rtnetlink_event.
There's no need to call rtmsg_ifinfo to send the notification
any more. So this patch is to remove it from these places after
bond_lower_state_changed.
Besides, after this, rtmsg_ifinfo is not needed to be exported.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/rtnetlink.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 854a848842ea..de24d394c69e 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c @@ -2989,7 +2989,6 @@ void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change, { rtmsg_ifinfo_event(type, dev, change, rtnl_get_event(0), flags, NULL); } -EXPORT_SYMBOL(rtmsg_ifinfo); void rtmsg_ifinfo_newnet(int type, struct net_device *dev, unsigned int change, gfp_t flags, int *new_nsid) |