~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/ia64/include/asm/thread_info.h

Version: ~ [ linux-6.3-rc3 ] ~ [ linux-6.2.7 ] ~ [ linux-6.1.20 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.103 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.175 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.237 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.278 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.310 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.8.17 ] ~ [ linux-4.7.10 ] ~ [ linux-4.6.7 ] ~ [ linux-4.5.7 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Copyright (C) 2002-2003 Hewlett-Packard Co
  4  *      David Mosberger-Tang <davidm@hpl.hp.com>
  5  */
  6 #ifndef _ASM_IA64_THREAD_INFO_H
  7 #define _ASM_IA64_THREAD_INFO_H
  8 
  9 #ifndef ASM_OFFSETS_C
 10 #include <asm/asm-offsets.h>
 11 #endif
 12 #include <asm/processor.h>
 13 #include <asm/ptrace.h>
 14 
 15 #define THREAD_SIZE                     KERNEL_STACK_SIZE
 16 
 17 #ifndef __ASSEMBLY__
 18 
 19 /*
 20  * On IA-64, we want to keep the task structure and kernel stack together, so they can be
 21  * mapped by a single TLB entry and so they can be addressed by the "current" pointer
 22  * without having to do pointer masking.
 23  */
 24 struct thread_info {
 25         struct task_struct *task;       /* XXX not really needed, except for dup_task_struct() */
 26         __u32 flags;                    /* thread_info flags (see TIF_*) */
 27         __u32 cpu;                      /* current CPU */
 28         __u32 last_cpu;                 /* Last CPU thread ran on */
 29         __u32 status;                   /* Thread synchronous flags */
 30         int preempt_count;              /* 0=premptable, <0=BUG; will also serve as bh-counter */
 31 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
 32         __u64 utime;
 33         __u64 stime;
 34         __u64 gtime;
 35         __u64 hardirq_time;
 36         __u64 softirq_time;
 37         __u64 idle_time;
 38         __u64 ac_stamp;
 39         __u64 ac_leave;
 40         __u64 ac_stime;
 41         __u64 ac_utime;
 42 #endif
 43 };
 44 
 45 #define INIT_THREAD_INFO(tsk)                   \
 46 {                                               \
 47         .task           = &tsk,                 \
 48         .flags          = 0,                    \
 49         .cpu            = 0,                    \
 50         .preempt_count  = INIT_PREEMPT_COUNT,   \
 51 }
 52 
 53 #ifndef ASM_OFFSETS_C
 54 /* how to get the thread information struct from C */
 55 #define current_thread_info()   ((struct thread_info *) ((char *) current + IA64_TASK_SIZE))
 56 #define arch_alloc_thread_stack_node(tsk, node) \
 57                 ((unsigned long *) ((char *) (tsk) + IA64_TASK_SIZE))
 58 #define task_thread_info(tsk)   ((struct thread_info *) ((char *) (tsk) + IA64_TASK_SIZE))
 59 #else
 60 #define current_thread_info()   ((struct thread_info *) 0)
 61 #define arch_alloc_thread_stack_node(tsk, node) ((unsigned long *) 0)
 62 #define task_thread_info(tsk)   ((struct thread_info *) 0)
 63 #endif
 64 #define arch_free_thread_stack(tsk)     /* nothing */
 65 #define task_stack_page(tsk)    ((void *)(tsk))
 66 
 67 #define __HAVE_THREAD_FUNCTIONS
 68 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
 69 #define setup_thread_stack(p, org)                      \
 70         *task_thread_info(p) = *task_thread_info(org);  \
 71         task_thread_info(p)->ac_stime = 0;              \
 72         task_thread_info(p)->ac_utime = 0;              \
 73         task_thread_info(p)->task = (p);
 74 #else
 75 #define setup_thread_stack(p, org) \
 76         *task_thread_info(p) = *task_thread_info(org); \
 77         task_thread_info(p)->task = (p);
 78 #endif
 79 #define end_of_stack(p) (unsigned long *)((void *)(p) + IA64_RBS_OFFSET)
 80 
 81 #define alloc_task_struct_node(node)                                            \
 82 ({                                                                              \
 83         struct page *page = alloc_pages_node(node, GFP_KERNEL | __GFP_COMP,     \
 84                                              KERNEL_STACK_SIZE_ORDER);          \
 85         struct task_struct *ret = page ? page_address(page) : NULL;             \
 86                                                                                 \
 87         ret;                                                                    \
 88 })
 89 #define free_task_struct(tsk)   free_pages((unsigned long) (tsk), KERNEL_STACK_SIZE_ORDER)
 90 
 91 #endif /* !__ASSEMBLY */
 92 
 93 /*
 94  * thread information flags
 95  * - these are process state flags that various assembly files may need to access
 96  * - pending work-to-be-done flags are in least-significant 16 bits, other flags
 97  *   in top 16 bits
 98  */
 99 #define TIF_SIGPENDING          0       /* signal pending */
100 #define TIF_NEED_RESCHED        1       /* rescheduling necessary */
101 #define TIF_SYSCALL_TRACE       2       /* syscall trace active */
102 #define TIF_SYSCALL_AUDIT       3       /* syscall auditing active */
103 #define TIF_SINGLESTEP          4       /* restore singlestep on return to user mode */
104 #define TIF_NOTIFY_SIGNAL       5       /* signal notification exist */
105 #define TIF_NOTIFY_RESUME       6       /* resumption notification requested */
106 #define TIF_MEMDIE              17      /* is terminating due to OOM killer */
107 #define TIF_MCA_INIT            18      /* this task is processing MCA or INIT */
108 #define TIF_DB_DISABLED         19      /* debug trap disabled for fsyscall */
109 #define TIF_RESTORE_RSE         21      /* user RBS is newer than kernel RBS */
110 #define TIF_POLLING_NRFLAG      22      /* idle is polling for TIF_NEED_RESCHED */
111 
112 #define _TIF_SYSCALL_TRACE      (1 << TIF_SYSCALL_TRACE)
113 #define _TIF_SYSCALL_AUDIT      (1 << TIF_SYSCALL_AUDIT)
114 #define _TIF_SINGLESTEP         (1 << TIF_SINGLESTEP)
115 #define _TIF_SYSCALL_TRACEAUDIT (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP)
116 #define _TIF_NOTIFY_RESUME      (1 << TIF_NOTIFY_RESUME)
117 #define _TIF_NOTIFY_SIGNAL      (1 << TIF_NOTIFY_SIGNAL)
118 #define _TIF_SIGPENDING         (1 << TIF_SIGPENDING)
119 #define _TIF_NEED_RESCHED       (1 << TIF_NEED_RESCHED)
120 #define _TIF_MCA_INIT           (1 << TIF_MCA_INIT)
121 #define _TIF_DB_DISABLED        (1 << TIF_DB_DISABLED)
122 #define _TIF_RESTORE_RSE        (1 << TIF_RESTORE_RSE)
123 #define _TIF_POLLING_NRFLAG     (1 << TIF_POLLING_NRFLAG)
124 
125 /* "work to do on user-return" bits */
126 #define TIF_ALLWORK_MASK        (_TIF_SIGPENDING|_TIF_NOTIFY_RESUME|_TIF_SYSCALL_AUDIT|\
127                                  _TIF_NEED_RESCHED|_TIF_SYSCALL_TRACE|_TIF_NOTIFY_SIGNAL)
128 /* like TIF_ALLWORK_BITS but sans TIF_SYSCALL_TRACE or TIF_SYSCALL_AUDIT */
129 #define TIF_WORK_MASK           (TIF_ALLWORK_MASK&~(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT))
130 
131 #endif /* _ASM_IA64_THREAD_INFO_H */
132 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp