aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
authorFrederic Weisbecker2012-10-10 18:47:16 -0500
committerPaul E. McKenney2012-10-23 16:54:06 -0500
commit4d9a5d4319e22670ec6d6227e12b54f361c46d0f (patch)
treed82eb23f01225bf31027e19ce983cd05e9b900bd /arch/um
parent6f0c0580b70c89094b3422ba81118c7b959c7556 (diff)
downloadam43-linux-kernel-4d9a5d4319e22670ec6d6227e12b54f361c46d0f.tar.gz
am43-linux-kernel-4d9a5d4319e22670ec6d6227e12b54f361c46d0f.tar.xz
am43-linux-kernel-4d9a5d4319e22670ec6d6227e12b54f361c46d0f.zip
rcu: Remove rcu_switch()
It's only there to call rcu_user_hooks_switch(). Let's just call rcu_user_hooks_switch() directly, we don't need this function in the middle. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Josh Triplett <josh@joshtriplett.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Richard Weinberger <richard@nod.at> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/drivers/mconsole_kern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c
index 79ccfe6c707..49e3b49e552 100644
--- a/arch/um/drivers/mconsole_kern.c
+++ b/arch/um/drivers/mconsole_kern.c
@@ -648,7 +648,7 @@ static void stack_proc(void *arg)
648 struct task_struct *from = current, *to = arg; 648 struct task_struct *from = current, *to = arg;
649 649
650 to->thread.saved_task = from; 650 to->thread.saved_task = from;
651 rcu_switch(from, to); 651 rcu_user_hooks_switch(from, to);
652 switch_to(from, to, from); 652 switch_to(from, to, from);
653} 653}
654 654