aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAndrea Arcangeli <aarcange@redhat.com>2012-10-08 16:31:52 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-02-28 06:32:24 -0800
commitd98f0eb2ac95485b0fce8f14f77f1482ce293948 (patch)
treec9bd5f4a2600cfe24ddf838d55f6ae8d2b5b3d49 /mm
parented5ac19078a65a66008f9bef0037b56828349b5b (diff)
downloadkernel_samsung_smdk4412-d98f0eb2ac95485b0fce8f14f77f1482ce293948.tar.gz
kernel_samsung_smdk4412-d98f0eb2ac95485b0fce8f14f77f1482ce293948.tar.bz2
kernel_samsung_smdk4412-d98f0eb2ac95485b0fce8f14f77f1482ce293948.zip
mm: mmu_notifier: make the mmu_notifier srcu static
commit 70400303ce0c4ced3139499c676d5c79636b0c72 upstream. The variable must be static especially given the variable name. s/RCU/SRCU/ over a few comments. Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Cc: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com> Cc: Sagi Grimberg <sagig@mellanox.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Haggai Eran <haggaie@mellanox.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/mmu_notifier.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
index 320865c6c6a..bbab08f6dfc 100644
--- a/mm/mmu_notifier.c
+++ b/mm/mmu_notifier.c
@@ -20,7 +20,7 @@
#include <linux/slab.h>
/* global SRCU for all MMs */
-struct srcu_struct srcu;
+static struct srcu_struct srcu;
/*
* This function can't run concurrently against mmu_notifier_register
@@ -41,7 +41,7 @@ void __mmu_notifier_release(struct mm_struct *mm)
int id;
/*
- * RCU here will block mmu_notifier_unregister until
+ * SRCU here will block mmu_notifier_unregister until
* ->release returns.
*/
id = srcu_read_lock(&srcu);
@@ -302,7 +302,7 @@ void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
if (!hlist_unhashed(&mn->hlist)) {
/*
- * RCU here will force exit_mmap to wait ->release to finish
+ * SRCU here will force exit_mmap to wait ->release to finish
* before freeing the pages.
*/
int id;