Commit dd06d25d authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

net/decnet: Replace rcu_barrier_bh() with rcu_barrier()



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: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: <linux-decnet-user@lists.sourceforge.net>
Cc: <netdev@vger.kernel.org>
parent 0245b80e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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