thread_info.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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, the assembly constants must also be changed
  19. */
  20. #ifndef __ASSEMBLY__
  21. struct thread_info {
  22. struct task_struct *task; /* main task structure */
  23. struct exec_domain *exec_domain; /* execution domain */
  24. unsigned long flags; /* low level flags */
  25. unsigned long status; /* thread-synchronous flags */
  26. __u32 cpu; /* current CPU */
  27. int preempt_count; /* 0 => preemptable, <0 => BUG */
  28. mm_segment_t addr_limit; /* thread address space:
  29. 0-0xBFFFFFFF for user-thead
  30. 0-0xFFFFFFFF for kernel-thread
  31. */
  32. void *sysenter_return;
  33. struct restart_block restart_block;
  34. unsigned long previous_esp; /* ESP of the previous stack in case
  35. of nested (IRQ) stacks
  36. */
  37. __u8 supervisor_stack[0];
  38. };
  39. #else /* !__ASSEMBLY__ */
  40. #include <asm/asm-offsets.h>
  41. #endif
  42. #define PREEMPT_ACTIVE 0x10000000
  43. #ifdef CONFIG_4KSTACKS
  44. #define THREAD_SIZE (4096)
  45. #else
  46. #define THREAD_SIZE (8192)
  47. #endif
  48. #define STACK_WARN (THREAD_SIZE/8)
  49. /*
  50. * macros/functions for gaining access to the thread information structure
  51. *
  52. * preempt_count needs to be 1 initially, until the scheduler is functional.
  53. */
  54. #ifndef __ASSEMBLY__
  55. #define INIT_THREAD_INFO(tsk) \
  56. { \
  57. .task = &tsk, \
  58. .exec_domain = &default_exec_domain, \
  59. .flags = 0, \
  60. .cpu = 0, \
  61. .preempt_count = 1, \
  62. .addr_limit = KERNEL_DS, \
  63. .restart_block = { \
  64. .fn = do_no_restart_syscall, \
  65. }, \
  66. }
  67. #define init_thread_info (init_thread_union.thread_info)
  68. #define init_stack (init_thread_union.stack)
  69. /* how to get the current stack pointer from C */
  70. register unsigned long current_stack_pointer asm("esp") __attribute_used__;
  71. /* how to get the thread information struct from C */
  72. static inline struct thread_info *current_thread_info(void)
  73. {
  74. return (struct thread_info *)(current_stack_pointer & ~(THREAD_SIZE - 1));
  75. }
  76. /* thread information allocation */
  77. #ifdef CONFIG_DEBUG_STACK_USAGE
  78. #define alloc_thread_info(tsk) \
  79. ({ \
  80. struct thread_info *ret; \
  81. \
  82. ret = kmalloc(THREAD_SIZE, GFP_KERNEL); \
  83. if (ret) \
  84. memset(ret, 0, THREAD_SIZE); \
  85. ret; \
  86. })
  87. #else
  88. #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL)
  89. #endif
  90. #define free_thread_info(info) kfree(info)
  91. #else /* !__ASSEMBLY__ */
  92. /* how to get the thread information struct from ASM */
  93. #define GET_THREAD_INFO(reg) \
  94. movl $-THREAD_SIZE, reg; \
  95. andl %esp, reg
  96. /* use this one if reg already contains %esp */
  97. #define GET_THREAD_INFO_WITH_ESP(reg) \
  98. andl $-THREAD_SIZE, reg
  99. #endif
  100. /*
  101. * thread information flags
  102. * - these are process state flags that various assembly files may need to access
  103. * - pending work-to-be-done flags are in LSW
  104. * - other flags in MSW
  105. */
  106. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  107. #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
  108. #define TIF_SIGPENDING 2 /* signal pending */
  109. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  110. #define TIF_SINGLESTEP 4 /* restore singlestep on return to user mode */
  111. #define TIF_IRET 5 /* return with iret */
  112. #define TIF_SYSCALL_EMU 6 /* syscall emulation active */
  113. #define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
  114. #define TIF_SECCOMP 8 /* secure computing */
  115. #define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */
  116. #define TIF_MEMDIE 16
  117. #define TIF_DEBUG 17 /* uses debug registers */
  118. #define TIF_IO_BITMAP 18 /* uses I/O bitmap */
  119. #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
  120. #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
  121. #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
  122. #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
  123. #define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP)
  124. #define _TIF_IRET (1<<TIF_IRET)
  125. #define _TIF_SYSCALL_EMU (1<<TIF_SYSCALL_EMU)
  126. #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
  127. #define _TIF_SECCOMP (1<<TIF_SECCOMP)
  128. #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
  129. #define _TIF_DEBUG (1<<TIF_DEBUG)
  130. #define _TIF_IO_BITMAP (1<<TIF_IO_BITMAP)
  131. /* work to do on interrupt/exception return */
  132. #define _TIF_WORK_MASK \
  133. (0x0000FFFF & ~(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
  134. _TIF_SECCOMP | _TIF_SYSCALL_EMU))
  135. /* work to do on any return to u-space */
  136. #define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
  137. /* flags to check in __switch_to() */
  138. #define _TIF_WORK_CTXSW (_TIF_DEBUG|_TIF_IO_BITMAP)
  139. /*
  140. * Thread-synchronous status.
  141. *
  142. * This is different from the flags in that nobody else
  143. * ever touches our thread-synchronous status, so we don't
  144. * have to worry about atomic accesses.
  145. */
  146. #define TS_USEDFPU 0x0001 /* FPU was used by this task this quantum (SMP) */
  147. #define TS_POLLING 0x0002 /* True if in idle loop and not sleeping */
  148. #define tsk_is_polling(t) ((t)->thread_info->status & TS_POLLING)
  149. #endif /* __KERNEL__ */
  150. #endif /* _ASM_THREAD_INFO_H */