Commit 7be60ccb authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Ingo Molnar

sched/rt, sh: Use CONFIG_PREEMPTION

CONFIG_PREEMPTION is selected by CONFIG_PREEMPT and by CONFIG_PREEMPT_RT.
Both PREEMPT and PREEMPT_RT require the same functionality which today
depends on CONFIG_PREEMPT.

Switch the entry code over to use CONFIG_PREEMPTION.

[bigeasy: +Kconfig]
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rich Felker <dalias@libc.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: linux-sh@vger.kernel.org
Link: https://lore.kernel.org/r/20191015191821.11479-19-bigeasy@linutronix.deSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent fa686453
...@@ -108,7 +108,7 @@ config GENERIC_CALIBRATE_DELAY ...@@ -108,7 +108,7 @@ config GENERIC_CALIBRATE_DELAY
config GENERIC_LOCKBREAK config GENERIC_LOCKBREAK
def_bool y def_bool y
depends on SMP && PREEMPT depends on SMP && PREEMPTION
config ARCH_SUSPEND_POSSIBLE config ARCH_SUSPEND_POSSIBLE
def_bool n def_bool n
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
andi r6, ~0xf0, r6; \ andi r6, ~0xf0, r6; \
putcon r6, SR; putcon r6, SR;
#ifdef CONFIG_PREEMPT #ifdef CONFIG_PREEMPTION
# define preempt_stop() CLI() # define preempt_stop() CLI()
#else #else
# define preempt_stop() # define preempt_stop()
...@@ -884,7 +884,7 @@ ret_from_exception: ...@@ -884,7 +884,7 @@ ret_from_exception:
/* Check softirqs */ /* Check softirqs */
#ifdef CONFIG_PREEMPT #ifdef CONFIG_PREEMPTION
pta ret_from_syscall, tr0 pta ret_from_syscall, tr0
blink tr0, ZERO blink tr0, ZERO
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
*/ */
#include <asm/dwarf.h> #include <asm/dwarf.h>
#if defined(CONFIG_PREEMPT) #if defined(CONFIG_PREEMPTION)
# define preempt_stop() cli ; TRACE_IRQS_OFF # define preempt_stop() cli ; TRACE_IRQS_OFF
#else #else
# define preempt_stop() # define preempt_stop()
...@@ -84,7 +84,7 @@ ENTRY(ret_from_irq) ...@@ -84,7 +84,7 @@ ENTRY(ret_from_irq)
get_current_thread_info r8, r0 get_current_thread_info r8, r0
bt resume_kernel ! Yes, it's from kernel, go back soon bt resume_kernel ! Yes, it's from kernel, go back soon
#ifdef CONFIG_PREEMPT #ifdef CONFIG_PREEMPTION
bra resume_userspace bra resume_userspace
nop nop
ENTRY(resume_kernel) ENTRY(resume_kernel)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment