thread_info.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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/mmsegment.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, <0 => BUG */
  28. mm_segment_t addr_limit;
  29. struct restart_block restart_block;
  30. };
  31. #endif
  32. /*
  33. * macros/functions for gaining access to the thread information structure
  34. * preempt_count needs to be 1 initially, until the scheduler is functional.
  35. */
  36. #ifndef __ASSEMBLY__
  37. #define INIT_THREAD_INFO(tsk) \
  38. { \
  39. .task = &tsk, \
  40. .exec_domain = &default_exec_domain, \
  41. .flags = 0, \
  42. .cpu = 0, \
  43. .preempt_count = 1, \
  44. .addr_limit = KERNEL_DS, \
  45. .restart_block = { \
  46. .fn = do_no_restart_syscall, \
  47. }, \
  48. }
  49. #define init_thread_info (init_thread_union.thread_info)
  50. #define init_stack (init_thread_union.stack)
  51. static inline struct thread_info *current_thread_info(void)
  52. {
  53. struct thread_info *ti;
  54. ti = (void *)(read_pda(kernelstack) + PDA_STACKOFFSET - THREAD_SIZE);
  55. return ti;
  56. }
  57. /* do not use in interrupt context */
  58. static inline struct thread_info *stack_thread_info(void)
  59. {
  60. struct thread_info *ti;
  61. __asm__("andq %%rsp,%0; ":"=r" (ti) : "0" (~(THREAD_SIZE - 1)));
  62. return ti;
  63. }
  64. /* thread information allocation */
  65. #define alloc_thread_info(tsk) \
  66. ((struct thread_info *) __get_free_pages(GFP_KERNEL,THREAD_ORDER))
  67. #define free_thread_info(ti) free_pages((unsigned long) (ti), THREAD_ORDER)
  68. #define get_thread_info(ti) get_task_struct((ti)->task)
  69. #define put_thread_info(ti) put_task_struct((ti)->task)
  70. #else /* !__ASSEMBLY__ */
  71. /* how to get the thread information struct from ASM */
  72. #define GET_THREAD_INFO(reg) \
  73. movq %gs:pda_kernelstack,reg ; \
  74. subq $(THREAD_SIZE-PDA_STACKOFFSET),reg
  75. #endif
  76. /*
  77. * thread information flags
  78. * - these are process state flags that various assembly files may need to access
  79. * - pending work-to-be-done flags are in LSW
  80. * - other flags in MSW
  81. * Warning: layout of LSW is hardcoded in entry.S
  82. */
  83. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  84. #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
  85. #define TIF_SIGPENDING 2 /* signal pending */
  86. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  87. #define TIF_SINGLESTEP 4 /* reenable singlestep on user return*/
  88. #define TIF_IRET 5 /* force IRET */
  89. #define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
  90. #define TIF_SECCOMP 8 /* secure computing */
  91. #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */
  92. #define TIF_IA32 17 /* 32bit process */
  93. #define TIF_FORK 18 /* ret_from_fork */
  94. #define TIF_ABI_PENDING 19
  95. #define TIF_MEMDIE 20
  96. #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
  97. #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
  98. #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
  99. #define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP)
  100. #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
  101. #define _TIF_IRET (1<<TIF_IRET)
  102. #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
  103. #define _TIF_SECCOMP (1<<TIF_SECCOMP)
  104. #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
  105. #define _TIF_IA32 (1<<TIF_IA32)
  106. #define _TIF_FORK (1<<TIF_FORK)
  107. #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING)
  108. /* work to do on interrupt/exception return */
  109. #define _TIF_WORK_MASK \
  110. (0x0000FFFF & ~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP|_TIF_SECCOMP))
  111. /* work to do on any return to user space */
  112. #define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
  113. #define PREEMPT_ACTIVE 0x10000000
  114. /*
  115. * Thread-synchronous status.
  116. *
  117. * This is different from the flags in that nobody else
  118. * ever touches our thread-synchronous status, so we don't
  119. * have to worry about atomic accesses.
  120. */
  121. #define TS_USEDFPU 0x0001 /* FPU was used by this task this quantum (SMP) */
  122. #endif /* __KERNEL__ */
  123. #endif /* _ASM_THREAD_INFO_H */