Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

freezer: remove now unused TIF_FREEZE

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: linux-arch@vger.kernel.org

Tejun Heo d88e4cb6 a3201227

-45
-2
arch/alpha/include/asm/thread_info.h
··· 79 79 #define TIF_UAC_SIGBUS 12 /* ! userspace part of 'osf_sysinfo' */ 80 80 #define TIF_MEMDIE 13 /* is terminating due to OOM killer */ 81 81 #define TIF_RESTORE_SIGMASK 14 /* restore signal mask in do_signal */ 82 - #define TIF_FREEZE 16 /* is freezing for suspend */ 83 82 84 83 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 85 84 #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) ··· 86 87 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 87 88 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 88 89 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) 89 - #define _TIF_FREEZE (1<<TIF_FREEZE) 90 90 91 91 /* Work to do on interrupt/exception return. */ 92 92 #define _TIF_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED | \
-2
arch/arm/include/asm/thread_info.h
··· 142 142 #define TIF_POLLING_NRFLAG 16 143 143 #define TIF_USING_IWMMXT 17 144 144 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ 145 - #define TIF_FREEZE 19 146 145 #define TIF_RESTORE_SIGMASK 20 147 146 #define TIF_SECCOMP 21 148 147 ··· 151 152 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 152 153 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 153 154 #define _TIF_USING_IWMMXT (1 << TIF_USING_IWMMXT) 154 - #define _TIF_FREEZE (1 << TIF_FREEZE) 155 155 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 156 156 #define _TIF_SECCOMP (1 << TIF_SECCOMP) 157 157
-2
arch/avr32/include/asm/thread_info.h
··· 85 85 #define TIF_RESTORE_SIGMASK 7 /* restore signal mask in do_signal */ 86 86 #define TIF_CPU_GOING_TO_SLEEP 8 /* CPU is entering sleep 0 mode */ 87 87 #define TIF_NOTIFY_RESUME 9 /* callback before returning to user */ 88 - #define TIF_FREEZE 29 89 88 #define TIF_DEBUG 30 /* debugging enabled */ 90 89 #define TIF_USERSPACE 31 /* true if FS sets userspace */ 91 90 ··· 97 98 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 98 99 #define _TIF_CPU_GOING_TO_SLEEP (1 << TIF_CPU_GOING_TO_SLEEP) 99 100 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) 100 - #define _TIF_FREEZE (1 << TIF_FREEZE) 101 101 102 102 /* Note: The masks below must never span more than 16 bits! */ 103 103
-2
arch/blackfin/include/asm/thread_info.h
··· 100 100 TIF_NEED_RESCHED */ 101 101 #define TIF_MEMDIE 4 /* is terminating due to OOM killer */ 102 102 #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */ 103 - #define TIF_FREEZE 6 /* is freezing for suspend */ 104 103 #define TIF_IRQ_SYNC 7 /* sync pipeline stage */ 105 104 #define TIF_NOTIFY_RESUME 8 /* callback before returning to user */ 106 105 #define TIF_SINGLESTEP 9 ··· 110 111 #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) 111 112 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 112 113 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 113 - #define _TIF_FREEZE (1<<TIF_FREEZE) 114 114 #define _TIF_IRQ_SYNC (1<<TIF_IRQ_SYNC) 115 115 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) 116 116 #define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP)
-2
arch/cris/include/asm/thread_info.h
··· 86 86 #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */ 87 87 #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 88 88 #define TIF_MEMDIE 17 /* is terminating due to OOM killer */ 89 - #define TIF_FREEZE 18 /* is freezing for suspend */ 90 89 91 90 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 92 91 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) ··· 93 94 #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) 94 95 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 95 96 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 96 - #define _TIF_FREEZE (1<<TIF_FREEZE) 97 97 98 98 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 99 99 #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
-2
arch/frv/include/asm/thread_info.h
··· 111 111 #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */ 112 112 #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 113 113 #define TIF_MEMDIE 17 /* is terminating due to OOM killer */ 114 - #define TIF_FREEZE 18 /* freezing for suspend */ 115 114 116 115 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 117 116 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) ··· 119 120 #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) 120 121 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 121 122 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 122 - #define _TIF_FREEZE (1 << TIF_FREEZE) 123 123 124 124 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 125 125 #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
-2
arch/h8300/include/asm/thread_info.h
··· 90 90 #define TIF_MEMDIE 4 /* is terminating due to OOM killer */ 91 91 #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */ 92 92 #define TIF_NOTIFY_RESUME 6 /* callback before returning to user */ 93 - #define TIF_FREEZE 16 /* is freezing for suspend */ 94 93 95 94 /* as above, but as bit values */ 96 95 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) ··· 98 99 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 99 100 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 100 101 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) 101 - #define _TIF_FREEZE (1<<TIF_FREEZE) 102 102 103 103 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 104 104
-2
arch/ia64/include/asm/thread_info.h
··· 113 113 #define TIF_MEMDIE 17 /* is terminating due to OOM killer */ 114 114 #define TIF_MCA_INIT 18 /* this task is processing MCA or INIT */ 115 115 #define TIF_DB_DISABLED 19 /* debug trap disabled for fsyscall */ 116 - #define TIF_FREEZE 20 /* is freezing for suspend */ 117 116 #define TIF_RESTORE_RSE 21 /* user RBS is newer than kernel RBS */ 118 117 119 118 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) ··· 125 126 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 126 127 #define _TIF_MCA_INIT (1 << TIF_MCA_INIT) 127 128 #define _TIF_DB_DISABLED (1 << TIF_DB_DISABLED) 128 - #define _TIF_FREEZE (1 << TIF_FREEZE) 129 129 #define _TIF_RESTORE_RSE (1 << TIF_RESTORE_RSE) 130 130 131 131 /* "work to do on user-return" bits */
-2
arch/m32r/include/asm/thread_info.h
··· 138 138 #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ 139 139 #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 140 140 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ 141 - #define TIF_FREEZE 19 /* is freezing for suspend */ 142 141 143 142 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 144 143 #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) ··· 148 149 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 149 150 #define _TIF_USEDFPU (1<<TIF_USEDFPU) 150 151 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 151 - #define _TIF_FREEZE (1<<TIF_FREEZE) 152 152 153 153 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 154 154 #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
-1
arch/m68k/include/asm/thread_info.h
··· 103 103 #define TIF_DELAYED_TRACE 14 /* single step a syscall */ 104 104 #define TIF_SYSCALL_TRACE 15 /* syscall trace active */ 105 105 #define TIF_MEMDIE 16 /* is terminating due to OOM killer */ 106 - #define TIF_FREEZE 17 /* thread is freezing for suspend */ 107 106 #define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal */ 108 107 109 108 #endif /* _ASM_M68K_THREAD_INFO_H */
-2
arch/microblaze/include/asm/thread_info.h
··· 125 125 #define TIF_MEMDIE 6 /* is terminating due to OOM killer */ 126 126 #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */ 127 127 #define TIF_SECCOMP 10 /* secure computing */ 128 - #define TIF_FREEZE 14 /* Freezing for suspend */ 129 128 130 129 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 131 130 #define TIF_POLLING_NRFLAG 16 ··· 136 137 #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) 137 138 #define _TIF_IRET (1 << TIF_IRET) 138 139 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 139 - #define _TIF_FREEZE (1 << TIF_FREEZE) 140 140 #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) 141 141 #define _TIF_SECCOMP (1 << TIF_SECCOMP) 142 142
-2
arch/mips/include/asm/thread_info.h
··· 117 117 #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ 118 118 #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 119 119 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ 120 - #define TIF_FREEZE 19 121 120 #define TIF_FIXADE 20 /* Fix address errors in software */ 122 121 #define TIF_LOGADE 21 /* Log address errors to syslog */ 123 122 #define TIF_32BIT_REGS 22 /* also implies 16/32 fprs */ ··· 140 141 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 141 142 #define _TIF_USEDFPU (1<<TIF_USEDFPU) 142 143 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 143 - #define _TIF_FREEZE (1<<TIF_FREEZE) 144 144 #define _TIF_FIXADE (1<<TIF_FIXADE) 145 145 #define _TIF_LOGADE (1<<TIF_LOGADE) 146 146 #define _TIF_32BIT_REGS (1<<TIF_32BIT_REGS)
-2
arch/mn10300/include/asm/thread_info.h
··· 165 165 #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */ 166 166 #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 167 167 #define TIF_MEMDIE 17 /* is terminating due to OOM killer */ 168 - #define TIF_FREEZE 18 /* freezing for suspend */ 169 168 170 169 #define _TIF_SYSCALL_TRACE +(1 << TIF_SYSCALL_TRACE) 171 170 #define _TIF_NOTIFY_RESUME +(1 << TIF_NOTIFY_RESUME) ··· 173 174 #define _TIF_SINGLESTEP +(1 << TIF_SINGLESTEP) 174 175 #define _TIF_RESTORE_SIGMASK +(1 << TIF_RESTORE_SIGMASK) 175 176 #define _TIF_POLLING_NRFLAG +(1 << TIF_POLLING_NRFLAG) 176 - #define _TIF_FREEZE +(1 << TIF_FREEZE) 177 177 178 178 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 179 179 #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
-2
arch/parisc/include/asm/thread_info.h
··· 58 58 #define TIF_32BIT 4 /* 32 bit binary */ 59 59 #define TIF_MEMDIE 5 /* is terminating due to OOM killer */ 60 60 #define TIF_RESTORE_SIGMASK 6 /* restore saved signal mask */ 61 - #define TIF_FREEZE 7 /* is freezing for suspend */ 62 61 #define TIF_NOTIFY_RESUME 8 /* callback before returning to user */ 63 62 #define TIF_SINGLESTEP 9 /* single stepping? */ 64 63 #define TIF_BLOCKSTEP 10 /* branch stepping? */ ··· 68 69 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 69 70 #define _TIF_32BIT (1 << TIF_32BIT) 70 71 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 71 - #define _TIF_FREEZE (1 << TIF_FREEZE) 72 72 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) 73 73 #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP) 74 74 #define _TIF_BLOCKSTEP (1 << TIF_BLOCKSTEP)
-2
arch/powerpc/include/asm/thread_info.h
··· 109 109 #define TIF_RESTOREALL 11 /* Restore all regs (implies NOERROR) */ 110 110 #define TIF_NOERROR 12 /* Force successful syscall return */ 111 111 #define TIF_NOTIFY_RESUME 13 /* callback before returning to user */ 112 - #define TIF_FREEZE 14 /* Freezing for suspend */ 113 112 #define TIF_SYSCALL_TRACEPOINT 15 /* syscall tracepoint instrumentation */ 114 113 #define TIF_RUNLATCH 16 /* Is the runlatch enabled? */ 115 114 ··· 126 127 #define _TIF_RESTOREALL (1<<TIF_RESTOREALL) 127 128 #define _TIF_NOERROR (1<<TIF_NOERROR) 128 129 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) 129 - #define _TIF_FREEZE (1<<TIF_FREEZE) 130 130 #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) 131 131 #define _TIF_RUNLATCH (1<<TIF_RUNLATCH) 132 132 #define _TIF_SYSCALL_T_OR_A (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
-2
arch/s390/include/asm/thread_info.h
··· 102 102 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ 103 103 #define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */ 104 104 #define TIF_SINGLE_STEP 20 /* This task is single stepped */ 105 - #define TIF_FREEZE 21 /* thread is freezing for suspend */ 106 105 107 106 #define _TIF_SYSCALL (1<<TIF_SYSCALL) 108 107 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) ··· 118 119 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 119 120 #define _TIF_31BIT (1<<TIF_31BIT) 120 121 #define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP) 121 - #define _TIF_FREEZE (1<<TIF_FREEZE) 122 122 123 123 #ifdef CONFIG_64BIT 124 124 #define is_32bit_task() (test_thread_flag(TIF_31BIT))
-2
arch/sh/include/asm/thread_info.h
··· 122 122 #define TIF_SYSCALL_TRACEPOINT 8 /* for ftrace syscall instrumentation */ 123 123 #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 124 124 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ 125 - #define TIF_FREEZE 19 /* Freezing for suspend */ 126 125 127 126 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 128 127 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) ··· 132 133 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) 133 134 #define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT) 134 135 #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG) 135 - #define _TIF_FREEZE (1 << TIF_FREEZE) 136 136 137 137 /* 138 138 * _TIF_ALLWORK_MASK and _TIF_WORK_MASK need to fit within 2 bytes, or we
-2
arch/sparc/include/asm/thread_info_32.h
··· 133 133 #define TIF_POLLING_NRFLAG 9 /* true if poll_idle() is polling 134 134 * TIF_NEED_RESCHED */ 135 135 #define TIF_MEMDIE 10 /* is terminating due to OOM killer */ 136 - #define TIF_FREEZE 11 /* is freezing for suspend */ 137 136 138 137 /* as above, but as bit values */ 139 138 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) ··· 146 147 #define _TIF_DO_NOTIFY_RESUME_MASK (_TIF_NOTIFY_RESUME | \ 147 148 _TIF_SIGPENDING | \ 148 149 _TIF_RESTORE_SIGMASK) 149 - #define _TIF_FREEZE (1<<TIF_FREEZE) 150 150 151 151 #endif /* __KERNEL__ */ 152 152
-2
arch/sparc/include/asm/thread_info_64.h
··· 225 225 /* flag bit 12 is available */ 226 226 #define TIF_MEMDIE 13 /* is terminating due to OOM killer */ 227 227 #define TIF_POLLING_NRFLAG 14 228 - #define TIF_FREEZE 15 /* is freezing for suspend */ 229 228 230 229 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 231 230 #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) ··· 236 237 #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) 237 238 #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) 238 239 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 239 - #define _TIF_FREEZE (1<<TIF_FREEZE) 240 240 241 241 #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ 242 242 _TIF_DO_NOTIFY_RESUME_MASK | \
-2
arch/um/include/asm/thread_info.h
··· 71 71 #define TIF_MEMDIE 5 /* is terminating due to OOM killer */ 72 72 #define TIF_SYSCALL_AUDIT 6 73 73 #define TIF_RESTORE_SIGMASK 7 74 - #define TIF_FREEZE 16 /* is freezing for suspend */ 75 74 76 75 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 77 76 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) ··· 79 80 #define _TIF_MEMDIE (1 << TIF_MEMDIE) 80 81 #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) 81 82 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 82 - #define _TIF_FREEZE (1 << TIF_FREEZE) 83 83 84 84 #endif
-2
arch/unicore32/include/asm/thread_info.h
··· 135 135 #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */ 136 136 #define TIF_SYSCALL_TRACE 8 137 137 #define TIF_MEMDIE 18 138 - #define TIF_FREEZE 19 139 138 #define TIF_RESTORE_SIGMASK 20 140 139 141 140 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING) 142 141 #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED) 143 142 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME) 144 143 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE) 145 - #define _TIF_FREEZE (1 << TIF_FREEZE) 146 144 #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK) 147 145 148 146 /*
-2
arch/x86/include/asm/thread_info.h
··· 90 90 #define TIF_MEMDIE 20 /* is terminating due to OOM killer */ 91 91 #define TIF_DEBUG 21 /* uses debug registers */ 92 92 #define TIF_IO_BITMAP 22 /* uses I/O bitmap */ 93 - #define TIF_FREEZE 23 /* is freezing for suspend */ 94 93 #define TIF_FORCED_TF 24 /* true if TF in eflags artificially */ 95 94 #define TIF_BLOCKSTEP 25 /* set when we want DEBUGCTLMSR_BTF */ 96 95 #define TIF_LAZY_MMU_UPDATES 27 /* task is updating the mmu lazily */ ··· 111 112 #define _TIF_FORK (1 << TIF_FORK) 112 113 #define _TIF_DEBUG (1 << TIF_DEBUG) 113 114 #define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP) 114 - #define _TIF_FREEZE (1 << TIF_FREEZE) 115 115 #define _TIF_FORCED_TF (1 << TIF_FORCED_TF) 116 116 #define _TIF_BLOCKSTEP (1 << TIF_BLOCKSTEP) 117 117 #define _TIF_LAZY_MMU_UPDATES (1 << TIF_LAZY_MMU_UPDATES)
-2
arch/xtensa/include/asm/thread_info.h
··· 132 132 #define TIF_MEMDIE 5 /* is terminating due to OOM killer */ 133 133 #define TIF_RESTORE_SIGMASK 6 /* restore signal mask in do_signal() */ 134 134 #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */ 135 - #define TIF_FREEZE 17 /* is freezing for suspend */ 136 135 137 136 #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) 138 137 #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) ··· 140 141 #define _TIF_IRET (1<<TIF_IRET) 141 142 #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) 142 143 #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) 143 - #define _TIF_FREEZE (1<<TIF_FREEZE) 144 144 145 145 #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */ 146 146 #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */