diff options
author | Lubomir Rintel <[email protected]> | 2014-10-27 17:39:16 +0100 |
---|---|---|
committer | David S. Miller <[email protected]> | 2014-10-29 14:35:32 -0400 |
commit | b2ed64a97430a26a63c6ea91c9b50e639a98dfbc (patch) | |
tree | 22e877409940639589de155229a3bd8129ebcbe9 | |
parent | d56109020d93337545dd257a790cb429a70acfad (diff) |
ipv6: notify userspace when we added or changed an ipv6 token
NetworkManager might want to know that it changed when the router advertisement
arrives.
Signed-off-by: Lubomir Rintel <[email protected]>
Cc: Hannes Frederic Sowa <[email protected]>
Cc: Daniel Borkmann <[email protected]>
Acked-by: Daniel Borkmann <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/ipv6/addrconf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 725c763270a0..0169ccf5aa4f 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -4531,6 +4531,7 @@ static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token) } write_unlock_bh(&idev->lock); + inet6_ifinfo_notify(RTM_NEWLINK, idev); addrconf_verify_rtnl(); return 0; } |