diff options
author | Ido Schimmel <idosch@mellanox.com> | 2018-01-07 12:45:14 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-07 21:29:41 -0500 |
commit | 922c2ac82e37523d1f0efaac8978ef573071d889 (patch) | |
tree | 840875b6412b56f9e1894ab74c7dd08792f1f4dd /net/ipv6/ip6_fib.c | |
parent | 4a8e56ee2c8551e674f69ba007aabede8f0b88d9 (diff) | |
download | blackbird-op-linux-922c2ac82e37523d1f0efaac8978ef573071d889.tar.gz blackbird-op-linux-922c2ac82e37523d1f0efaac8978ef573071d889.zip |
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>
Diffstat (limited to 'net/ipv6/ip6_fib.c')
-rw-r--r-- | net/ipv6/ip6_fib.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c index c1bbe7bf9fdd..edda5ad3b405 100644 --- a/net/ipv6/ip6_fib.c +++ b/net/ipv6/ip6_fib.c @@ -107,16 +107,13 @@ enum { void fib6_update_sernum(struct rt6_info *rt) { - struct fib6_table *table = rt->rt6i_table; struct net *net = dev_net(rt->dst.dev); struct fib6_node *fn; - spin_lock_bh(&table->tb6_lock); fn = rcu_dereference_protected(rt->rt6i_node, - lockdep_is_held(&table->tb6_lock)); + lockdep_is_held(&rt->rt6i_table->tb6_lock)); if (fn) fn->fn_sernum = fib6_new_sernum(net); - spin_unlock_bh(&table->tb6_lock); } /* |