summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ward2015-07-26 18:18:58 +0200
committerDavid S. Miller2015-07-29 08:38:13 +0200
commit865b804244f228e80fb62abe464296399253cce8 (patch)
tree36c6b26af69a5ac1e5cb788eb13e1604fc533c6e
parentbridge: stp: when using userspace stp stop kernel hello and hold timers (diff)
downloadkernel-qcow2-linux-865b804244f228e80fb62abe464296399253cce8.tar.gz
kernel-qcow2-linux-865b804244f228e80fb62abe464296399253cce8.tar.xz
kernel-qcow2-linux-865b804244f228e80fb62abe464296399253cce8.zip
net/ipv4: suppress NETDEV_UP notification on address lifetime update
This notification causes the FIB to be updated, which is not needed because the address already exists, and more importantly it may undo intentional changes that were made to the FIB after the address was originally added. (As a point of comparison, when an address becomes deprecated because its preferred lifetime expired, a notification on this chain is not generated.) The motivation for this commit is fixing an incompatibility between DHCP clients which set and update the address lifetime according to the lease, and a commercial VPN client which replaces kernel routes in a way that outbound traffic is sent only through the tunnel (and disconnects if any further route changes are detected via netlink). Signed-off-by: David Ward <david.ward@ll.mit.edu> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv4/devinet.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
index e813196c91c7..2d9cb1748f81 100644
--- a/net/ipv4/devinet.c
+++ b/net/ipv4/devinet.c
@@ -882,7 +882,6 @@ static int inet_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
queue_delayed_work(system_power_efficient_wq,
&check_lifetime_work, 0);
rtmsg_ifa(RTM_NEWADDR, ifa, nlh, NETLINK_CB(skb).portid);
- blocking_notifier_call_chain(&inetaddr_chain, NETDEV_UP, ifa);
}
return 0;
}