]> git.karo-electronics.de Git - linux-beck.git/commitdiff
rcu: Remove rcu_switch()
authorFrederic Weisbecker <fweisbec@gmail.com>
Wed, 10 Oct 2012 23:47:16 +0000 (01:47 +0200)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 23 Oct 2012 21:54:06 +0000 (14:54 -0700)
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>
arch/um/drivers/mconsole_kern.c
include/linux/rcupdate.h
include/linux/sched.h
kernel/sched/core.c

index 79ccfe6c70787054c61d1116cb42449d562dfca8..49e3b49e552f7f81dea63e708bbb0abf1e32a3f4 100644 (file)
@@ -648,7 +648,7 @@ static void stack_proc(void *arg)
        struct task_struct *from = current, *to = arg;
 
        to->thread.saved_task = from;
-       rcu_switch(from, to);
+       rcu_user_hooks_switch(from, to);
        switch_to(from, to, from);
 }
 
index 7c968e4f929ea49806c5e17e53bdfdfb997e4c79..5d009def7c0cbb66fd8b9f998b90ab4b7a99a3ee 100644 (file)
@@ -204,6 +204,8 @@ static inline void rcu_user_enter(void) { }
 static inline void rcu_user_exit(void) { }
 static inline void rcu_user_enter_after_irq(void) { }
 static inline void rcu_user_exit_after_irq(void) { }
+static inline void rcu_user_hooks_switch(struct task_struct *prev,
+                                        struct task_struct *next) { }
 #endif /* CONFIG_RCU_USER_QS */
 
 extern void exit_rcu(void);
index 0dd42a02df2e851e0847df640dd559f3689c36ed..432cc5e1bbeedee3ca4f4308adb76ffa1d13e8f8 100644 (file)
@@ -1844,14 +1844,6 @@ static inline void rcu_copy_process(struct task_struct *p)
 
 #endif
 
-static inline void rcu_switch(struct task_struct *prev,
-                             struct task_struct *next)
-{
-#ifdef CONFIG_RCU_USER_QS
-       rcu_user_hooks_switch(prev, next);
-#endif
-}
-
 static inline void tsk_restore_flags(struct task_struct *task,
                                unsigned long orig_flags, unsigned long flags)
 {
index 2d8927fda712f5ee1e19f1fe364fbad557d8a736..68414fa4cd2a63972d9074366d00f72e830caa34 100644 (file)
@@ -1887,7 +1887,7 @@ context_switch(struct rq *rq, struct task_struct *prev,
 #endif
 
        /* Here we just switch the register state and the stack. */
-       rcu_switch(prev, next);
+       rcu_user_hooks_switch(prev, next);
        switch_to(prev, next, prev);
 
        barrier();