Skip to content

Commit

Permalink
net/decnet: Replace rcu_barrier_bh() with rcu_barrier()
Browse files Browse the repository at this point in the history
Now that all RCU flavors have been consolidated, rcu_barrier_bh()
is but a synonym for rcu_barrier().  This commit therefore replaces
the former with the latter.

Signed-off-by: Paul E. McKenney <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: <[email protected]>
Cc: <[email protected]>
  • Loading branch information
Paul E. McKenney committed Dec 1, 2018
1 parent 0245b80 commit dd06d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/decnet/af_decnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -2405,7 +2405,7 @@ static void __exit decnet_exit(void)

proto_unregister(&dn_proto);

rcu_barrier_bh(); /* Wait for completion of call_rcu_bh()'s */
rcu_barrier(); /* Wait for completion of call_rcu()'s */
}
module_exit(decnet_exit);
#endif

0 comments on commit dd06d25

Please sign in to comment.