hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/arch/arm/include/asm/thread_info.h
....@@ -46,7 +46,6 @@
4646 struct thread_info {
4747 unsigned long flags; /* low level flags */
4848 int preempt_count; /* 0 => preemptable, <0 => bug */
49
- int preempt_lazy_count; /* 0 => preemptable, <0 => bug */
5049 mm_segment_t addr_limit; /* address limit */
5150 struct task_struct *task; /* main task structure */
5251 __u32 cpu; /* cpu */
....@@ -139,7 +138,6 @@
139138 #define TIF_SYSCALL_TRACEPOINT 6 /* syscall tracepoint instrumentation */
140139 #define TIF_SECCOMP 7 /* seccomp syscall filtering active */
141140 #define TIF_NOTIFY_SIGNAL 8 /* signal notifications exist */
142
-#define TIF_NEED_RESCHED_LAZY 9
143141
144142 #define TIF_USING_IWMMXT 17
145143 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
....@@ -154,7 +152,6 @@
154152 #define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
155153 #define _TIF_SECCOMP (1 << TIF_SECCOMP)
156154 #define _TIF_NOTIFY_SIGNAL (1 << TIF_NOTIFY_SIGNAL)
157
-#define _TIF_NEED_RESCHED_LAZY (1 << TIF_NEED_RESCHED_LAZY)
158155 #define _TIF_USING_IWMMXT (1 << TIF_USING_IWMMXT)
159156
160157 /* Checks for any syscall work in entry-common.S */
....@@ -166,7 +163,6 @@
166163 */
167164 #define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
168165 _TIF_NOTIFY_RESUME | _TIF_UPROBE | \
169
- _TIF_NEED_RESCHED_LAZY | \
170166 _TIF_NOTIFY_SIGNAL)
171167
172168 #endif /* __KERNEL__ */