summaryrefslogtreecommitdiffstats
path: root/crypto/pcrypt.c
diff options
context:
space:
mode:
authorPaul E. McKenney2018-11-06 01:57:40 +0100
committerPaul E. McKenney2018-11-27 18:18:59 +0100
commita0076e1778c23de4a42d90fee4ecb4c21dbb5838 (patch)
treed413f9d1ad63dc9df7df513e3e1ee608f1ce761d /crypto/pcrypt.c
parentpowerpc: Convert hugepd_free() to use call_rcu() (diff)
downloadkernel-qcow2-linux-a0076e1778c23de4a42d90fee4ecb4c21dbb5838.tar.gz
kernel-qcow2-linux-a0076e1778c23de4a42d90fee4ecb4c21dbb5838.tar.xz
kernel-qcow2-linux-a0076e1778c23de4a42d90fee4ecb4c21dbb5838.zip
crypto/pcrypt: Replace synchronize_rcu_bh() with synchronize_rcu()
Now that synchronize_rcu() waits for bh-disable regions of code as well as RCU read-side critical sections, the synchronize_rcu_bh() in pcrypt_cpumask_change_notify() can be replaced by synchronize_rcu(). This commit therefore makes this change. Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com> Cc: Steffen Klassert <steffen.klassert@secunet.com> Cc: <linux-crypto@vger.kernel.org> Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/pcrypt.c')
-rw-r--r--crypto/pcrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pcrypt.c b/crypto/pcrypt.c
index f8ec3d4ba4a8..8eb3c4c9ff67 100644
--- a/crypto/pcrypt.c
+++ b/crypto/pcrypt.c
@@ -382,7 +382,7 @@ static int pcrypt_cpumask_change_notify(struct notifier_block *self,
cpumask_copy(new_mask->mask, cpumask->cbcpu);
rcu_assign_pointer(pcrypt->cb_cpumask, new_mask);
- synchronize_rcu_bh();
+ synchronize_rcu();
free_cpumask_var(old_mask->mask);
kfree(old_mask);