diff options
Diffstat (limited to 'net/ipv4/fib_trie.c')
| -rw-r--r-- | net/ipv4/fib_trie.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index f0cdb30921c..57bd978483e 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c @@ -367,7 +367,7 @@ static void __leaf_free_rcu(struct rcu_head *head)  static inline void free_leaf(struct leaf *l)  { -	call_rcu_bh(&l->rcu, __leaf_free_rcu); +	call_rcu(&l->rcu, __leaf_free_rcu);  }  static inline void free_leaf_info(struct leaf_info *leaf)  |