diff options
author | Peter Zijlstra <peterz@infradead.org> | 2014-05-09 13:04:00 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-05-22 04:22:58 -0400 |
commit | 842514849a616e9b61acad65771c7afe01e651f9 (patch) | |
tree | 37b56ffe60bfcb05d462a9de079d00947472fa72 | |
parent | 31e6cdefd377ae90bea5c6a4e1dc519793577a24 (diff) |
arm64: Remove TIF_POLLING_NRFLAG
The only idle method for arm64 is WFI and it therefore
unconditionally requires the reschedule interrupt when idle.
Suggested-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Link: http://lkml.kernel.org/r/20140509170649.GG13658@twins.programming.kicks-ass.net
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/arm64/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/thread_info.h b/arch/arm64/include/asm/thread_info.h index 720e70b66ffd..7b8e3a2a00fb 100644 --- a/arch/arm64/include/asm/thread_info.h +++ b/arch/arm64/include/asm/thread_info.h | |||
@@ -95,13 +95,11 @@ static inline struct thread_info *current_thread_info(void) | |||
95 | * TIF_NEED_RESCHED - rescheduling necessary | 95 | * TIF_NEED_RESCHED - rescheduling necessary |
96 | * TIF_NOTIFY_RESUME - callback before returning to user | 96 | * TIF_NOTIFY_RESUME - callback before returning to user |
97 | * TIF_USEDFPU - FPU was used by this task this quantum (SMP) | 97 | * TIF_USEDFPU - FPU was used by this task this quantum (SMP) |
98 | * TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED | ||
99 | */ | 98 | */ |
100 | #define TIF_SIGPENDING 0 | 99 | #define TIF_SIGPENDING 0 |
101 | #define TIF_NEED_RESCHED 1 | 100 | #define TIF_NEED_RESCHED 1 |
102 | #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */ | 101 | #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */ |
103 | #define TIF_SYSCALL_TRACE 8 | 102 | #define TIF_SYSCALL_TRACE 8 |
104 | #define TIF_POLLING_NRFLAG 16 | ||
105 | #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ | 103 | #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ |
106 | #define TIF_FREEZE 19 | 104 | #define TIF_FREEZE 19 |
107 | #define TIF_RESTORE_SIGMASK 20 | 105 | #define TIF_RESTORE_SIGMASK 20 |