thread_info.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. #define THREAD_ORDER 1
  16. #define ASYNC_ORDER 1
  17. #else /* __s390x__ */
  18. #ifndef __SMALL_STACK
  19. #define THREAD_ORDER 2
  20. #define ASYNC_ORDER 2
  21. #else
  22. #define THREAD_ORDER 1
  23. #define ASYNC_ORDER 1
  24. #endif
  25. #endif /* __s390x__ */
  26. #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
  27. #define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER)
  28. #ifndef __ASSEMBLY__
  29. #include <asm/lowcore.h>
  30. #include <asm/page.h>
  31. #include <asm/processor.h>
  32. /*
  33. * low level task data that entry.S needs immediate access to
  34. * - this struct should fit entirely inside of one cache line
  35. * - this struct shares the supervisor stack pages
  36. * - if the contents of this structure are changed, the assembly constants must also be changed
  37. */
  38. struct thread_info {
  39. struct task_struct *task; /* main task structure */
  40. struct exec_domain *exec_domain; /* execution domain */
  41. unsigned long flags; /* low level flags */
  42. unsigned int cpu; /* current CPU */
  43. int preempt_count; /* 0 => preemptable, <0 => BUG */
  44. struct restart_block restart_block;
  45. unsigned int system_call;
  46. __u64 user_timer;
  47. __u64 system_timer;
  48. unsigned long last_break; /* last breaking-event-address. */
  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 = INIT_PREEMPT_COUNT, \
  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 *) S390_lowcore.thread_info;
  70. }
  71. #define THREAD_SIZE_ORDER THREAD_ORDER
  72. #endif
  73. /*
  74. * thread information flags bit numbers
  75. */
  76. #define TIF_SYSCALL 0 /* inside a system call */
  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_PER_TRAP 6 /* deliver sigtrap on return to user */
  81. #define TIF_MCCK_PENDING 7 /* machine check handling is pending */
  82. #define TIF_SYSCALL_TRACE 8 /* syscall trace active */
  83. #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */
  84. #define TIF_SECCOMP 10 /* secure computing */
  85. #define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */
  86. #define TIF_SIE 12 /* guest execution active */
  87. #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling
  88. TIF_NEED_RESCHED */
  89. #define TIF_31BIT 17 /* 32bit process */
  90. #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
  91. #define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */
  92. #define TIF_SINGLE_STEP 20 /* This task is single stepped */
  93. #define _TIF_SYSCALL (1<<TIF_SYSCALL)
  94. #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
  95. #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
  96. #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
  97. #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
  98. #define _TIF_PER_TRAP (1<<TIF_PER_TRAP)
  99. #define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING)
  100. #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
  101. #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
  102. #define _TIF_SECCOMP (1<<TIF_SECCOMP)
  103. #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
  104. #define _TIF_SIE (1<<TIF_SIE)
  105. #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
  106. #define _TIF_31BIT (1<<TIF_31BIT)
  107. #define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
  108. #ifdef CONFIG_64BIT
  109. #define is_32bit_task() (test_thread_flag(TIF_31BIT))
  110. #else
  111. #define is_32bit_task() (1)
  112. #endif
  113. #endif /* __KERNEL__ */
  114. #define PREEMPT_ACTIVE 0x4000000
  115. #endif /* _ASM_THREAD_INFO_H */