thread_info_64.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /* thread_info.h: x86_64 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 <asm/page.h>
  10. #include <asm/types.h>
  11. #include <asm/pda.h>
  12. /*
  13. * low level task data that entry.S needs immediate access to
  14. * - this struct should fit entirely inside of one cache line
  15. * - this struct shares the supervisor stack pages
  16. */
  17. #ifndef __ASSEMBLY__
  18. struct task_struct;
  19. struct exec_domain;
  20. #include <asm/processor.h>
  21. struct thread_info {
  22. struct task_struct *task; /* main task structure */
  23. struct exec_domain *exec_domain; /* execution domain */
  24. __u32 flags; /* low level flags */
  25. __u32 status; /* thread synchronous flags */
  26. __u32 cpu; /* current CPU */
  27. int preempt_count; /* 0 => preemptable,
  28. <0 => BUG */
  29. mm_segment_t addr_limit;
  30. struct restart_block restart_block;
  31. #ifdef CONFIG_IA32_EMULATION
  32. void __user *sysenter_return;
  33. #endif
  34. };
  35. #endif
  36. /*
  37. * macros/functions for gaining access to the thread information structure
  38. * preempt_count needs to be 1 initially, until the scheduler is functional.
  39. */
  40. #ifndef __ASSEMBLY__
  41. #define INIT_THREAD_INFO(tsk) \
  42. { \
  43. .task = &tsk, \
  44. .exec_domain = &default_exec_domain, \
  45. .flags = 0, \
  46. .cpu = 0, \
  47. .preempt_count = 1, \
  48. .addr_limit = KERNEL_DS, \
  49. .restart_block = { \
  50. .fn = do_no_restart_syscall, \
  51. }, \
  52. }
  53. #define init_thread_info (init_thread_union.thread_info)
  54. #define init_stack (init_thread_union.stack)
  55. static inline struct thread_info *current_thread_info(void)
  56. {
  57. struct thread_info *ti;
  58. ti = (void *)(read_pda(kernelstack) + PDA_STACKOFFSET - THREAD_SIZE);
  59. return ti;
  60. }
  61. /* do not use in interrupt context */
  62. static inline struct thread_info *stack_thread_info(void)
  63. {
  64. struct thread_info *ti;
  65. asm("andq %%rsp,%0; " : "=r" (ti) : "0" (~(THREAD_SIZE - 1)));
  66. return ti;
  67. }
  68. /* thread information allocation */
  69. #ifdef CONFIG_DEBUG_STACK_USAGE
  70. #define THREAD_FLAGS (GFP_KERNEL | __GFP_ZERO)
  71. #else
  72. #define THREAD_FLAGS GFP_KERNEL
  73. #endif
  74. #define alloc_thread_info(tsk) \
  75. ((struct thread_info *)__get_free_pages(THREAD_FLAGS, THREAD_ORDER))
  76. #else /* !__ASSEMBLY__ */
  77. /* how to get the thread information struct from ASM */
  78. #define GET_THREAD_INFO(reg) \
  79. movq %gs:pda_kernelstack,reg ; \
  80. subq $(THREAD_SIZE-PDA_STACKOFFSET),reg
  81. #endif
  82. /*
  83. * thread information flags
  84. * - these are process state flags that various assembly files
  85. * may need to access
  86. * - pending work-to-be-done flags are in LSW
  87. * - other flags in MSW
  88. * Warning: layout of LSW is hardcoded in entry.S
  89. */
  90. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  91. #define TIF_SIGPENDING 2 /* signal pending */
  92. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  93. #define TIF_SINGLESTEP 4 /* reenable singlestep on user return*/
  94. #define TIF_IRET 5 /* force IRET */
  95. #define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
  96. #define TIF_SECCOMP 8 /* secure computing */
  97. #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal */
  98. #define TIF_MCE_NOTIFY 10 /* notify userspace of an MCE */
  99. #define TIF_HRTICK_RESCHED 11 /* reprogram hrtick timer */
  100. /* 16 free */
  101. #define TIF_IA32 17 /* 32bit process */
  102. #define TIF_FORK 18 /* ret_from_fork */
  103. #define TIF_ABI_PENDING 19
  104. #define TIF_MEMDIE 20
  105. #define TIF_DEBUG 21 /* uses debug registers */
  106. #define TIF_IO_BITMAP 22 /* uses I/O bitmap */
  107. #define TIF_FREEZE 23 /* is freezing for suspend */
  108. #define TIF_FORCED_TF 24 /* true if TF in eflags artificially */
  109. #define TIF_DEBUGCTLMSR 25 /* uses thread_struct.debugctlmsr */
  110. #define TIF_DS_AREA_MSR 26 /* uses thread_struct.ds_area_msr */
  111. #define TIF_BTS_TRACE_TS 27 /* record scheduling event timestamps */
  112. #define TIF_NOTSC 28 /* TSC is not accessible in userland */
  113. #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
  114. #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
  115. #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
  116. #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
  117. #define _TIF_IRET (1 << TIF_IRET)
  118. #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
  119. #define _TIF_SECCOMP (1 << TIF_SECCOMP)
  120. #define _TIF_RESTORE_SIGMASK (1 << TIF_RESTORE_SIGMASK)
  121. #define _TIF_MCE_NOTIFY (1 << TIF_MCE_NOTIFY)
  122. #define _TIF_HRTICK_RESCHED (1 << TIF_HRTICK_RESCHED)
  123. #define _TIF_IA32 (1 << TIF_IA32)
  124. #define _TIF_FORK (1 << TIF_FORK)
  125. #define _TIF_ABI_PENDING (1 << TIF_ABI_PENDING)
  126. #define _TIF_DEBUG (1 << TIF_DEBUG)
  127. #define _TIF_IO_BITMAP (1 << TIF_IO_BITMAP)
  128. #define _TIF_FREEZE (1 << TIF_FREEZE)
  129. #define _TIF_FORCED_TF (1 << TIF_FORCED_TF)
  130. #define _TIF_DEBUGCTLMSR (1 << TIF_DEBUGCTLMSR)
  131. #define _TIF_DS_AREA_MSR (1 << TIF_DS_AREA_MSR)
  132. #define _TIF_BTS_TRACE_TS (1 << TIF_BTS_TRACE_TS)
  133. #define _TIF_NOTSC (1 << TIF_NOTSC)
  134. /* work to do on interrupt/exception return */
  135. #define _TIF_WORK_MASK \
  136. (0x0000FFFF & \
  137. ~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP|_TIF_SECCOMP))
  138. /* work to do on any return to user space */
  139. #define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
  140. #define _TIF_DO_NOTIFY_MASK \
  141. (_TIF_SIGPENDING|_TIF_SINGLESTEP|_TIF_MCE_NOTIFY|_TIF_HRTICK_RESCHED)
  142. /* flags to check in __switch_to() */
  143. #define _TIF_WORK_CTXSW \
  144. (_TIF_IO_BITMAP|_TIF_DEBUGCTLMSR|_TIF_DS_AREA_MSR|_TIF_BTS_TRACE_TS|_TIF_NOTSC)
  145. #define _TIF_WORK_CTXSW_PREV _TIF_WORK_CTXSW
  146. #define _TIF_WORK_CTXSW_NEXT (_TIF_WORK_CTXSW|_TIF_DEBUG)
  147. #define PREEMPT_ACTIVE 0x10000000
  148. /*
  149. * Thread-synchronous status.
  150. *
  151. * This is different from the flags in that nobody else
  152. * ever touches our thread-synchronous status, so we don't
  153. * have to worry about atomic accesses.
  154. */
  155. #define TS_USEDFPU 0x0001 /* FPU was used by this task
  156. this quantum (SMP) */
  157. #define TS_COMPAT 0x0002 /* 32bit syscall active */
  158. #define TS_POLLING 0x0004 /* true if in idle loop
  159. and not sleeping */
  160. #define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING)
  161. #endif /* __KERNEL__ */
  162. #endif /* _ASM_THREAD_INFO_H */