thread_info.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * S390 version
  4. * Copyright IBM Corp. 2002, 2006
  5. * Author(s): Martin Schwidefsky ([email protected])
  6. */
  7. #ifndef _ASM_THREAD_INFO_H
  8. #define _ASM_THREAD_INFO_H
  9. #include <linux/bits.h>
  10. /*
  11. * General size of kernel stacks
  12. */
  13. #ifdef CONFIG_KASAN
  14. #define THREAD_SIZE_ORDER 4
  15. #else
  16. #define THREAD_SIZE_ORDER 2
  17. #endif
  18. #define BOOT_STACK_SIZE (PAGE_SIZE << 2)
  19. #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
  20. #ifndef __ASSEMBLY__
  21. #include <asm/lowcore.h>
  22. #include <asm/page.h>
  23. #define STACK_INIT_OFFSET \
  24. (THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs))
  25. /*
  26. * low level task data that entry.S needs immediate access to
  27. * - this struct should fit entirely inside of one cache line
  28. * - this struct shares the supervisor stack pages
  29. * - if the contents of this structure are changed, the assembly constants must also be changed
  30. */
  31. struct thread_info {
  32. unsigned long flags; /* low level flags */
  33. unsigned long syscall_work; /* SYSCALL_WORK_ flags */
  34. unsigned int cpu; /* current CPU */
  35. };
  36. /*
  37. * macros/functions for gaining access to the thread information structure
  38. */
  39. #define INIT_THREAD_INFO(tsk) \
  40. { \
  41. .flags = 0, \
  42. }
  43. struct task_struct;
  44. void arch_release_task_struct(struct task_struct *tsk);
  45. int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
  46. void arch_setup_new_exec(void);
  47. #define arch_setup_new_exec arch_setup_new_exec
  48. #endif
  49. /*
  50. * thread information flags bit numbers
  51. */
  52. /* _TIF_WORK bits */
  53. #define TIF_NOTIFY_RESUME 0 /* callback before returning to user */
  54. #define TIF_SIGPENDING 1 /* signal pending */
  55. #define TIF_NEED_RESCHED 2 /* rescheduling necessary */
  56. #define TIF_UPROBE 3 /* breakpointed or single-stepping */
  57. #define TIF_GUARDED_STORAGE 4 /* load guarded storage control block */
  58. #define TIF_PATCH_PENDING 5 /* pending live patching update */
  59. #define TIF_PGSTE 6 /* New mm's will use 4K page tables */
  60. #define TIF_NOTIFY_SIGNAL 7 /* signal notifications exist */
  61. #define TIF_ISOLATE_BP 8 /* Run process with isolated BP */
  62. #define TIF_ISOLATE_BP_GUEST 9 /* Run KVM guests with isolated BP */
  63. #define TIF_PER_TRAP 10 /* Need to handle PER trap on exit to usermode */
  64. #define TIF_31BIT 16 /* 32bit process */
  65. #define TIF_MEMDIE 17 /* is terminating due to OOM killer */
  66. #define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal() */
  67. #define TIF_SINGLE_STEP 19 /* This task is single stepped */
  68. #define TIF_BLOCK_STEP 20 /* This task is block stepped */
  69. #define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
  70. /* _TIF_TRACE bits */
  71. #define TIF_SYSCALL_TRACE 24 /* syscall trace active */
  72. #define TIF_SYSCALL_AUDIT 25 /* syscall auditing active */
  73. #define TIF_SECCOMP 26 /* secure computing */
  74. #define TIF_SYSCALL_TRACEPOINT 27 /* syscall tracepoint instrumentation */
  75. #define _TIF_NOTIFY_RESUME BIT(TIF_NOTIFY_RESUME)
  76. #define _TIF_NOTIFY_SIGNAL BIT(TIF_NOTIFY_SIGNAL)
  77. #define _TIF_SIGPENDING BIT(TIF_SIGPENDING)
  78. #define _TIF_NEED_RESCHED BIT(TIF_NEED_RESCHED)
  79. #define _TIF_UPROBE BIT(TIF_UPROBE)
  80. #define _TIF_GUARDED_STORAGE BIT(TIF_GUARDED_STORAGE)
  81. #define _TIF_PATCH_PENDING BIT(TIF_PATCH_PENDING)
  82. #define _TIF_ISOLATE_BP BIT(TIF_ISOLATE_BP)
  83. #define _TIF_ISOLATE_BP_GUEST BIT(TIF_ISOLATE_BP_GUEST)
  84. #define _TIF_PER_TRAP BIT(TIF_PER_TRAP)
  85. #define _TIF_31BIT BIT(TIF_31BIT)
  86. #define _TIF_SINGLE_STEP BIT(TIF_SINGLE_STEP)
  87. #define _TIF_SYSCALL_TRACE BIT(TIF_SYSCALL_TRACE)
  88. #define _TIF_SYSCALL_AUDIT BIT(TIF_SYSCALL_AUDIT)
  89. #define _TIF_SECCOMP BIT(TIF_SECCOMP)
  90. #define _TIF_SYSCALL_TRACEPOINT BIT(TIF_SYSCALL_TRACEPOINT)
  91. #endif /* _ASM_THREAD_INFO_H */