ipv6: Take table lock outside of sernum update function
authorIdo Schimmel <idosch@mellanox.com>
Sun, 7 Jan 2018 10:45:14 +0000 (12:45 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Jan 2018 02:29:41 +0000 (21:29 -0500)
commit922c2ac82e37523d1f0efaac8978ef573071d889
tree840875b6412b56f9e1894ab74c7dd08792f1f4dd
parent4a8e56ee2c8551e674f69ba007aabede8f0b88d9
ipv6: Take table lock outside of sernum update function

The next patch is going to allow dead routes to remain in the FIB tree
in certain situations.

When this happens we need to be sure to bump the sernum of the nodes
where these are stored so that potential copies cached in sockets are
invalidated.

The function that performs this update assumes the table lock is not
taken when it is invoked, but that will not be the case when it is
invoked by the tree walker.

Have the function assume the lock is taken and make the single caller
take the lock itself.

Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Acked-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_fib.c
net/ipv6/route.c