thread_info_32.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /* thread_info.h: i386 low-level thread information
  2. *
  3. * Copyright (C) 2002 David Howells (dhowells@redhat.com)
  4. * - Incorporating suggestions made by Linus Torvalds and Dave Miller
  5. */
  6. #ifndef _ASM_THREAD_INFO_H
  7. #define _ASM_THREAD_INFO_H
  8. #ifdef __KERNEL__
  9. #include <linux/compiler.h>
  10. #include <asm/page.h>
  11. #ifndef __ASSEMBLY__
  12. #include <asm/processor.h>
  13. #endif
  14. /*
  15. * low level task data that entry.S needs immediate access to
  16. * - this struct should fit entirely inside of one cache line
  17. * - this struct shares the supervisor stack pages
  18. * - if the contents of this structure are changed,
  19. * the assembly constants must also be changed
  20. */
  21. #ifndef __ASSEMBLY__
  22. struct thread_info {
  23. struct task_struct *task; /* main task structure */
  24. struct exec_domain *exec_domain; /* execution domain */
  25. unsigned long flags; /* low level flags */
  26. unsigned long status; /* thread-synchronous flags */
  27. __u32 cpu; /* current CPU */
  28. int preempt_count; /* 0 => preemptable,
  29. <0 => BUG */
  30. mm_segment_t addr_limit; /* thread address space:
  31. 0-0xBFFFFFFF user-thread
  32. 0-0xFFFFFFFF kernel-thread
  33. */
  34. void *sysenter_return;
  35. struct restart_block restart_block;
  36. unsigned long previous_esp; /* ESP of the previous stack in
  37. case of nested (IRQ) stacks
  38. */
  39. __u8 supervisor_stack[0];
  40. };
  41. #else /* !__ASSEMBLY__ */
  42. #include <asm/asm-offsets.h>
  43. #endif
  44. #define PREEMPT_ACTIVE 0x10000000
  45. #ifdef CONFIG_4KSTACKS
  46. #define THREAD_SIZE (4096)
  47. #else
  48. #define THREAD_SIZE (8192)
  49. #endif
  50. #define STACK_WARN (THREAD_SIZE/8)
  51. /*
  52. * macros/functions for gaining access to the thread information structure
  53. *
  54. * preempt_count needs to be 1 initially, until the scheduler is functional.
  55. */
  56. #ifndef __ASSEMBLY__
  57. #define INIT_THREAD_INFO(tsk) \
  58. { \
  59. .task = &tsk, \
  60. .exec_domain = &default_exec_domain, \
  61. .flags = 0, \
  62. .cpu = 0, \
  63. .preempt_count = 1, \
  64. .addr_limit = KERNEL_DS, \
  65. .restart_block = { \
  66. .fn = do_no_restart_syscall, \
  67. }, \
  68. }
  69. #define init_thread_info (init_thread_union.thread_info)
  70. #define init_stack (init_thread_union.stack)
  71. /* how to get the current stack pointer from C */
  72. register unsigned long current_stack_pointer asm("esp") __used;
  73. /* how to get the thread information struct from C */
  74. static inline struct thread_info *current_thread_info(void)
  75. {
  76. return (struct thread_info *)
  77. (current_stack_pointer & ~(THREAD_SIZE - 1));
  78. }
  79. /* thread information allocation */
  80. #ifdef CONFIG_DEBUG_STACK_USAGE
  81. #define alloc_thread_info(tsk) ((struct thread_info *) \
  82. __get_free_pages(GFP_KERNEL | __GFP_ZERO, get_order(THREAD_SIZE)))
  83. #else
  84. #define alloc_thread_info(tsk) ((struct thread_info *) \
  85. __get_free_pages(GFP_KERNEL, get_order(THREAD_SIZE)))
  86. #endif
  87. #else /* !__ASSEMBLY__ */
  88. /* how to get the thread information struct from ASM */
  89. #define GET_THREAD_INFO(reg) \
  90. movl $-THREAD_SIZE, reg; \
  91. andl %esp, reg
  92. /* use this one if reg already contains %esp */
  93. #define GET_THREAD_INFO_WITH_ESP(reg) \
  94. andl $-THREAD_SIZE, reg
  95. #endif
  96. /*
  97. * thread information flags
  98. * - these are process state flags that various
  99. * assembly files may need to access
  100. * - pending work-to-be-done flags are in LSW
  101. * - other flags in MSW
  102. */
  103. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  104. #define TIF_SIGPENDING 1 /* signal pending */
  105. #define TIF_NEED_RESCHED 2 /* rescheduling necessary */
  106. #define TIF_SINGLESTEP 3 /* restore singlestep on return to
  107. user mode */
  108. #define TIF_IRET 4 /* return with iret */
  109. #define TIF_SYSCALL_EMU 5 /* syscall emulation active */
  110. #define TIF_SYSCALL_AUDIT 6 /* syscall auditing active */
  111. #define TIF_SECCOMP 7 /* secure computing */
  112. #define TIF_RESTORE_SIGMASK 8 /* restore signal mask in do_signal() */
  113. #define TIF_HRTICK_RESCHED 9 /* reprogram hrtick timer */
  114. #define TIF_MEMDIE 16
  115. #define TIF_DEBUG 17 /* uses debug registers */
  116. #define TIF_IO_BITMAP 18 /* uses I/O bitmap */
  117. #define TIF_FREEZE 19 /* is freezing for suspend */
  118. #define TIF_NOTSC 20 /* TSC is not accessible in userland */
  119. #define TIF_FORCED_TF 21 /* true if TF in eflags artificially */
  120. #define TIF_DEBUGCTLMSR 22 /* uses thread_struct.debugctlmsr */
  121. #define TIF_DS_AREA_MSR 23 /* uses thread_struct.ds_area_msr */
  122. #define TIF_BTS_TRACE_TS 24 /* record scheduling event timestamps */
  123. #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
  124. #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
  125. #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
  126. #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
  127. #define _TIF_IRET (1 << TIF_IRET)
  128. #define _TIF_SYSCALL_EMU (1 << TIF_SYSCALL_EMU)
  129. #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
  130. #define _TIF_SECCOMP (1 << TIF_SECCOMP)
  131. #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK)
  132. #define _TIF_HRTICK_RESCHED (1 << TIF_HRTICK_RESCHED)
  133. #define _TIF_DEBUG (1 << TIF_DEBUG)
  134. #define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP)
  135. #define _TIF_FREEZE (1 << TIF_FREEZE)
  136. #define _TIF_NOTSC (1 << TIF_NOTSC)
  137. #define _TIF_FORCED_TF (1 << TIF_FORCED_TF)
  138. #define _TIF_DEBUGCTLMSR (1 << TIF_DEBUGCTLMSR)
  139. #define _TIF_DS_AREA_MSR (1 << TIF_DS_AREA_MSR)
  140. #define _TIF_BTS_TRACE_TS (1 << TIF_BTS_TRACE_TS)
  141. /* work to do on interrupt/exception return */
  142. #define _TIF_WORK_MASK \
  143. (0x0000FFFF & ~(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
  144. _TIF_SECCOMP | _TIF_SYSCALL_EMU))
  145. /* work to do on any return to u-space */
  146. #define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
  147. /* flags to check in __switch_to() */
  148. #define _TIF_WORK_CTXSW \
  149. (_TIF_IO_BITMAP | _TIF_NOTSC | _TIF_DEBUGCTLMSR | \
  150. _TIF_DS_AREA_MSR | _TIF_BTS_TRACE_TS)
  151. #define _TIF_WORK_CTXSW_PREV _TIF_WORK_CTXSW
  152. #define _TIF_WORK_CTXSW_NEXT (_TIF_WORK_CTXSW | _TIF_DEBUG)
  153. /*
  154. * Thread-synchronous status.
  155. *
  156. * This is different from the flags in that nobody else
  157. * ever touches our thread-synchronous status, so we don't
  158. * have to worry about atomic accesses.
  159. */
  160. #define TS_USEDFPU 0x0001 /* FPU was used by this task
  161. this quantum (SMP) */
  162. #define TS_POLLING 0x0002 /* True if in idle loop
  163. and not sleeping */
  164. #define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING)
  165. #endif /* __KERNEL__ */
  166. #endif /* _ASM_THREAD_INFO_H */