thread_info.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * include/asm-s390/thread_info.h
  3. *
  4. * S390 version
  5. * Copyright (C) IBM Corp. 2002,2006
  6. * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
  7. */
  8. #ifndef _ASM_THREAD_INFO_H
  9. #define _ASM_THREAD_INFO_H
  10. #ifdef __KERNEL__
  11. /*
  12. * Size of kernel stack for each process
  13. */
  14. #ifndef __s390x__
  15. #ifndef __SMALL_STACK
  16. #define THREAD_ORDER 1
  17. #define ASYNC_ORDER 1
  18. #else
  19. #define THREAD_ORDER 0
  20. #define ASYNC_ORDER 0
  21. #endif
  22. #else /* __s390x__ */
  23. #ifndef __SMALL_STACK
  24. #define THREAD_ORDER 2
  25. #define ASYNC_ORDER 2
  26. #else
  27. #define THREAD_ORDER 1
  28. #define ASYNC_ORDER 1
  29. #endif
  30. #endif /* __s390x__ */
  31. #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
  32. #define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER)
  33. #ifndef __ASSEMBLY__
  34. #include <asm/processor.h>
  35. #include <asm/lowcore.h>
  36. /*
  37. * low level task data that entry.S needs immediate access to
  38. * - this struct should fit entirely inside of one cache line
  39. * - this struct shares the supervisor stack pages
  40. * - if the contents of this structure are changed, the assembly constants must also be changed
  41. */
  42. struct thread_info {
  43. struct task_struct *task; /* main task structure */
  44. struct exec_domain *exec_domain; /* execution domain */
  45. unsigned long flags; /* low level flags */
  46. unsigned int cpu; /* current CPU */
  47. int preempt_count; /* 0 => preemptable, <0 => BUG */
  48. struct restart_block restart_block;
  49. };
  50. /*
  51. * macros/functions for gaining access to the thread information structure
  52. */
  53. #define INIT_THREAD_INFO(tsk) \
  54. { \
  55. .task = &tsk, \
  56. .exec_domain = &default_exec_domain, \
  57. .flags = 0, \
  58. .cpu = 0, \
  59. .preempt_count = 1, \
  60. .restart_block = { \
  61. .fn = do_no_restart_syscall, \
  62. }, \
  63. }
  64. #define init_thread_info (init_thread_union.thread_info)
  65. #define init_stack (init_thread_union.stack)
  66. /* how to get the thread information struct from C */
  67. static inline struct thread_info *current_thread_info(void)
  68. {
  69. return (struct thread_info *)((*(unsigned long *) __LC_KERNEL_STACK)-THREAD_SIZE);
  70. }
  71. #define THREAD_SIZE_ORDER THREAD_ORDER
  72. #endif
  73. /*
  74. * thread information flags bit numbers
  75. */
  76. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  77. #define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
  78. #define TIF_SIGPENDING 2 /* signal pending */
  79. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  80. #define TIF_RESTART_SVC 4 /* restart svc with new svc number */
  81. #define TIF_SYSCALL_AUDIT 5 /* syscall auditing active */
  82. #define TIF_SINGLE_STEP 6 /* deliver sigtrap on return to user */
  83. #define TIF_MCCK_PENDING 7 /* machine check handling is pending */
  84. #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */
  85. #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling
  86. TIF_NEED_RESCHED */
  87. #define TIF_31BIT 18 /* 32bit process */
  88. #define TIF_MEMDIE 19
  89. #define TIF_RESTORE_SIGMASK 20 /* restore signal mask in do_signal() */
  90. #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
  91. #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
  92. #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
  93. #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
  94. #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
  95. #define _TIF_RESTART_SVC (1<<TIF_RESTART_SVC)
  96. #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
  97. #define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
  98. #define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING)
  99. #define _TIF_USEDFPU (1<<TIF_USEDFPU)
  100. #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
  101. #define _TIF_31BIT (1<<TIF_31BIT)
  102. #endif /* __KERNEL__ */
  103. #define PREEMPT_ACTIVE 0x4000000
  104. #endif /* _ASM_THREAD_INFO_H */