diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-01 14:22:01 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:13 -0400 |
commit | 16a8016372c42c7628eb4a39d75386a461e8c5d0 (patch) | |
tree | 94ed1fab5b073d66be50a876ad81104eeb73c732 /arch/mips | |
parent | 8af4efac26e1805c76144ad44118157239308d35 (diff) |
sanitize tsk_is_polling()
Make default just return 0. The current default (checking
TIF_POLLING_NRFLAG) is taken to architectures that need it;
ones that don't do polling in their idle threads don't need
to defined TIF_POLLING_NRFLAG at all.
ia64 defined both TS_POLLING (used by its tsk_is_polling())
and TIF_POLLING_NRFLAG (not used at all). Killed the latter...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h index a75a11abf7b0..8debe9e91754 100644 --- a/arch/mips/include/asm/thread_info.h +++ b/arch/mips/include/asm/thread_info.h | |||
@@ -103,7 +103,6 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
103 | #define TIF_NOTIFY_RESUME 5 /* callback before returning to user */ | 103 | #define TIF_NOTIFY_RESUME 5 /* callback before returning to user */ |
104 | #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */ | 104 | #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */ |
105 | #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ | 105 | #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ |
106 | #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ | ||
107 | #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ | 106 | #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ |
108 | #define TIF_FIXADE 20 /* Fix address errors in software */ | 107 | #define TIF_FIXADE 20 /* Fix address errors in software */ |
109 | #define TIF_LOGADE 21 /* Log address errors to syslog */ | 108 | #define TIF_LOGADE 21 /* Log address errors to syslog */ |
@@ -126,7 +125,6 @@ register struct thread_info *__current_thread_info __asm__("$28"); | |||
126 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | 125 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
127 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | 126 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) |
128 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) | 127 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) |
129 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | ||
130 | #define _TIF_FIXADE (1<<TIF_FIXADE) | 128 | #define _TIF_FIXADE (1<<TIF_FIXADE) |
131 | #define _TIF_LOGADE (1<<TIF_LOGADE) | 129 | #define _TIF_LOGADE (1<<TIF_LOGADE) |
132 | #define _TIF_32BIT_REGS (1<<TIF_32BIT_REGS) | 130 | #define _TIF_32BIT_REGS (1<<TIF_32BIT_REGS) |