sched, isolcpu: make cpu_isolated_map visible outside scheduler
[deliverable/linux.git] / include / linux / sched.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_SCHED_H
2#define _LINUX_SCHED_H
3
607ca46e 4#include <uapi/linux/sched.h>
b7b3c76a 5
5c228079
DY
6#include <linux/sched/prio.h>
7
b7b3c76a
DW
8
9struct sched_param {
10 int sched_priority;
11};
12
1da177e4
LT
13#include <asm/param.h> /* for HZ */
14
1da177e4
LT
15#include <linux/capability.h>
16#include <linux/threads.h>
17#include <linux/kernel.h>
18#include <linux/types.h>
19#include <linux/timex.h>
20#include <linux/jiffies.h>
fb00aca4 21#include <linux/plist.h>
1da177e4
LT
22#include <linux/rbtree.h>
23#include <linux/thread_info.h>
24#include <linux/cpumask.h>
25#include <linux/errno.h>
26#include <linux/nodemask.h>
c92ff1bd 27#include <linux/mm_types.h>
00d1a39e 28#include <linux/preempt_mask.h>
1da177e4 29
1da177e4
LT
30#include <asm/page.h>
31#include <asm/ptrace.h>
bfc3f028 32#include <linux/cputime.h>
1da177e4
LT
33
34#include <linux/smp.h>
35#include <linux/sem.h>
ab602f79 36#include <linux/shm.h>
1da177e4 37#include <linux/signal.h>
1da177e4
LT
38#include <linux/compiler.h>
39#include <linux/completion.h>
40#include <linux/pid.h>
41#include <linux/percpu.h>
42#include <linux/topology.h>
3e26c149 43#include <linux/proportions.h>
1da177e4 44#include <linux/seccomp.h>
e56d0903 45#include <linux/rcupdate.h>
05725f7e 46#include <linux/rculist.h>
23f78d4a 47#include <linux/rtmutex.h>
1da177e4 48
a3b6714e
DW
49#include <linux/time.h>
50#include <linux/param.h>
51#include <linux/resource.h>
52#include <linux/timer.h>
53#include <linux/hrtimer.h>
7c3ab738 54#include <linux/task_io_accounting.h>
9745512c 55#include <linux/latencytop.h>
9e2b2dc4 56#include <linux/cred.h>
fa14ff4a 57#include <linux/llist.h>
7b44ab97 58#include <linux/uidgid.h>
21caf2fc 59#include <linux/gfp.h>
d4311ff1 60#include <linux/magic.h>
a3b6714e
DW
61
62#include <asm/processor.h>
36d57ac4 63
d50dde5a
DF
64#define SCHED_ATTR_SIZE_VER0 48 /* sizeof first published struct */
65
66/*
67 * Extended scheduling parameters data structure.
68 *
69 * This is needed because the original struct sched_param can not be
70 * altered without introducing ABI issues with legacy applications
71 * (e.g., in sched_getparam()).
72 *
73 * However, the possibility of specifying more than just a priority for
74 * the tasks may be useful for a wide variety of application fields, e.g.,
75 * multimedia, streaming, automation and control, and many others.
76 *
77 * This variant (sched_attr) is meant at describing a so-called
78 * sporadic time-constrained task. In such model a task is specified by:
79 * - the activation period or minimum instance inter-arrival time;
80 * - the maximum (or average, depending on the actual scheduling
81 * discipline) computation time of all instances, a.k.a. runtime;
82 * - the deadline (relative to the actual activation time) of each
83 * instance.
84 * Very briefly, a periodic (sporadic) task asks for the execution of
85 * some specific computation --which is typically called an instance--
86 * (at most) every period. Moreover, each instance typically lasts no more
87 * than the runtime and must be completed by time instant t equal to
88 * the instance activation time + the deadline.
89 *
90 * This is reflected by the actual fields of the sched_attr structure:
91 *
92 * @size size of the structure, for fwd/bwd compat.
93 *
94 * @sched_policy task's scheduling policy
95 * @sched_flags for customizing the scheduler behaviour
96 * @sched_nice task's nice value (SCHED_NORMAL/BATCH)
97 * @sched_priority task's static priority (SCHED_FIFO/RR)
98 * @sched_deadline representative of the task's deadline
99 * @sched_runtime representative of the task's runtime
100 * @sched_period representative of the task's period
101 *
102 * Given this task model, there are a multiplicity of scheduling algorithms
103 * and policies, that can be used to ensure all the tasks will make their
104 * timing constraints.
aab03e05
DF
105 *
106 * As of now, the SCHED_DEADLINE policy (sched_dl scheduling class) is the
107 * only user of this new interface. More information about the algorithm
108 * available in the scheduling class file or in Documentation/.
d50dde5a
DF
109 */
110struct sched_attr {
111 u32 size;
112
113 u32 sched_policy;
114 u64 sched_flags;
115
116 /* SCHED_NORMAL, SCHED_BATCH */
117 s32 sched_nice;
118
119 /* SCHED_FIFO, SCHED_RR */
120 u32 sched_priority;
121
122 /* SCHED_DEADLINE */
123 u64 sched_runtime;
124 u64 sched_deadline;
125 u64 sched_period;
126};
127
1da177e4 128struct exec_domain;
c87e2837 129struct futex_pi_state;
286100a6 130struct robust_list_head;
bddd87c7 131struct bio_list;
5ad4e53b 132struct fs_struct;
cdd6c482 133struct perf_event_context;
73c10101 134struct blk_plug;
c4ad8f98 135struct filename;
1da177e4 136
615d6e87
DB
137#define VMACACHE_BITS 2
138#define VMACACHE_SIZE (1U << VMACACHE_BITS)
139#define VMACACHE_MASK (VMACACHE_SIZE - 1)
140
1da177e4
LT
141/*
142 * These are the constant used to fake the fixed-point load-average
143 * counting. Some notes:
144 * - 11 bit fractions expand to 22 bits by the multiplies: this gives
145 * a load-average precision of 10 bits integer + 11 bits fractional
146 * - if you want to count load-averages more often, you need more
147 * precision, or rounding will get you. With 2-second counting freq,
148 * the EXP_n values would be 1981, 2034 and 2043 if still using only
149 * 11 bit fractions.
150 */
151extern unsigned long avenrun[]; /* Load averages */
2d02494f 152extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
1da177e4
LT
153
154#define FSHIFT 11 /* nr of bits of precision */
155#define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
0c2043ab 156#define LOAD_FREQ (5*HZ+1) /* 5 sec intervals */
1da177e4
LT
157#define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */
158#define EXP_5 2014 /* 1/exp(5sec/5min) */
159#define EXP_15 2037 /* 1/exp(5sec/15min) */
160
161#define CALC_LOAD(load,exp,n) \
162 load *= exp; \
163 load += n*(FIXED_1-exp); \
164 load >>= FSHIFT;
165
166extern unsigned long total_forks;
167extern int nr_threads;
1da177e4
LT
168DECLARE_PER_CPU(unsigned long, process_counts);
169extern int nr_processes(void);
170extern unsigned long nr_running(void);
2ee507c4 171extern bool single_task_running(void);
1da177e4 172extern unsigned long nr_iowait(void);
8c215bd3 173extern unsigned long nr_iowait_cpu(int cpu);
372ba8cb 174extern void get_iowait_load(unsigned long *nr_waiters, unsigned long *load);
69d25870 175
0f004f5a 176extern void calc_global_load(unsigned long ticks);
5aaa0b7a 177extern void update_cpu_load_nohz(void);
1da177e4 178
7e49fcce
SR
179extern unsigned long get_parent_ip(unsigned long addr);
180
b637a328
PM
181extern void dump_cpu_task(int cpu);
182
43ae34cb
IM
183struct seq_file;
184struct cfs_rq;
4cf86d77 185struct task_group;
43ae34cb
IM
186#ifdef CONFIG_SCHED_DEBUG
187extern void proc_sched_show_task(struct task_struct *p, struct seq_file *m);
188extern void proc_sched_set_task(struct task_struct *p);
189extern void
5cef9eca 190print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq);
43ae34cb 191#endif
1da177e4 192
4a8342d2
LT
193/*
194 * Task state bitmask. NOTE! These bits are also
195 * encoded in fs/proc/array.c: get_task_state().
196 *
197 * We have two separate sets of flags: task->state
198 * is about runnability, while task->exit_state are
199 * about the task exiting. Confusing, but this way
200 * modifying one set can't modify the other one by
201 * mistake.
202 */
1da177e4
LT
203#define TASK_RUNNING 0
204#define TASK_INTERRUPTIBLE 1
205#define TASK_UNINTERRUPTIBLE 2
f021a3c2
MW
206#define __TASK_STOPPED 4
207#define __TASK_TRACED 8
4a8342d2 208/* in tsk->exit_state */
ad86622b
ON
209#define EXIT_DEAD 16
210#define EXIT_ZOMBIE 32
abd50b39 211#define EXIT_TRACE (EXIT_ZOMBIE | EXIT_DEAD)
4a8342d2 212/* in tsk->state again */
af927232 213#define TASK_DEAD 64
f021a3c2 214#define TASK_WAKEKILL 128
e9c84311 215#define TASK_WAKING 256
f2530dc7
TG
216#define TASK_PARKED 512
217#define TASK_STATE_MAX 1024
f021a3c2 218
ad0f614e 219#define TASK_STATE_TO_CHAR_STR "RSDTtXZxKWP"
73342151 220
e1781538
PZ
221extern char ___assert_task_state[1 - 2*!!(
222 sizeof(TASK_STATE_TO_CHAR_STR)-1 != ilog2(TASK_STATE_MAX)+1)];
f021a3c2
MW
223
224/* Convenience macros for the sake of set_task_state */
225#define TASK_KILLABLE (TASK_WAKEKILL | TASK_UNINTERRUPTIBLE)
226#define TASK_STOPPED (TASK_WAKEKILL | __TASK_STOPPED)
227#define TASK_TRACED (TASK_WAKEKILL | __TASK_TRACED)
1da177e4 228
92a1f4bc
MW
229/* Convenience macros for the sake of wake_up */
230#define TASK_NORMAL (TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE)
f021a3c2 231#define TASK_ALL (TASK_NORMAL | __TASK_STOPPED | __TASK_TRACED)
92a1f4bc
MW
232
233/* get_task_state() */
234#define TASK_REPORT (TASK_RUNNING | TASK_INTERRUPTIBLE | \
f021a3c2 235 TASK_UNINTERRUPTIBLE | __TASK_STOPPED | \
74e37200 236 __TASK_TRACED | EXIT_ZOMBIE | EXIT_DEAD)
92a1f4bc 237
f021a3c2
MW
238#define task_is_traced(task) ((task->state & __TASK_TRACED) != 0)
239#define task_is_stopped(task) ((task->state & __TASK_STOPPED) != 0)
92a1f4bc 240#define task_is_stopped_or_traced(task) \
f021a3c2 241 ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0)
92a1f4bc 242#define task_contributes_to_load(task) \
e3c8ca83 243 ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \
376fede8 244 (task->flags & PF_FROZEN) == 0)
1da177e4 245
8eb23b9f
PZ
246#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
247
248#define __set_task_state(tsk, state_value) \
249 do { \
250 (tsk)->task_state_change = _THIS_IP_; \
251 (tsk)->state = (state_value); \
252 } while (0)
253#define set_task_state(tsk, state_value) \
254 do { \
255 (tsk)->task_state_change = _THIS_IP_; \
256 set_mb((tsk)->state, (state_value)); \
257 } while (0)
258
259/*
260 * set_current_state() includes a barrier so that the write of current->state
261 * is correctly serialised wrt the caller's subsequent test of whether to
262 * actually sleep:
263 *
264 * set_current_state(TASK_UNINTERRUPTIBLE);
265 * if (do_i_need_to_sleep())
266 * schedule();
267 *
268 * If the caller does not need such serialisation then use __set_current_state()
269 */
270#define __set_current_state(state_value) \
271 do { \
272 current->task_state_change = _THIS_IP_; \
273 current->state = (state_value); \
274 } while (0)
275#define set_current_state(state_value) \
276 do { \
277 current->task_state_change = _THIS_IP_; \
278 set_mb(current->state, (state_value)); \
279 } while (0)
280
281#else
282
1da177e4
LT
283#define __set_task_state(tsk, state_value) \
284 do { (tsk)->state = (state_value); } while (0)
285#define set_task_state(tsk, state_value) \
286 set_mb((tsk)->state, (state_value))
287
498d0c57
AM
288/*
289 * set_current_state() includes a barrier so that the write of current->state
290 * is correctly serialised wrt the caller's subsequent test of whether to
291 * actually sleep:
292 *
293 * set_current_state(TASK_UNINTERRUPTIBLE);
294 * if (do_i_need_to_sleep())
295 * schedule();
296 *
297 * If the caller does not need such serialisation then use __set_current_state()
298 */
8eb23b9f 299#define __set_current_state(state_value) \
1da177e4 300 do { current->state = (state_value); } while (0)
8eb23b9f 301#define set_current_state(state_value) \
1da177e4
LT
302 set_mb(current->state, (state_value))
303
8eb23b9f
PZ
304#endif
305
1da177e4
LT
306/* Task command name length */
307#define TASK_COMM_LEN 16
308
1da177e4
LT
309#include <linux/spinlock.h>
310
311/*
312 * This serializes "schedule()" and also protects
313 * the run-queue from deletions/modifications (but
314 * _adding_ to the beginning of the run-queue has
315 * a separate lock).
316 */
317extern rwlock_t tasklist_lock;
318extern spinlock_t mmlist_lock;
319
36c8b586 320struct task_struct;
1da177e4 321
db1466b3
PM
322#ifdef CONFIG_PROVE_RCU
323extern int lockdep_tasklist_lock_is_held(void);
324#endif /* #ifdef CONFIG_PROVE_RCU */
325
1da177e4
LT
326extern void sched_init(void);
327extern void sched_init_smp(void);
2d07b255 328extern asmlinkage void schedule_tail(struct task_struct *prev);
36c8b586 329extern void init_idle(struct task_struct *idle, int cpu);
1df21055 330extern void init_idle_bootup_task(struct task_struct *idle);
1da177e4 331
3fa0818b
RR
332extern cpumask_var_t cpu_isolated_map;
333
89f19f04 334extern int runqueue_is_locked(int cpu);
017730c1 335
3451d024 336#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
c1cc017c 337extern void nohz_balance_enter_idle(int cpu);
69e1e811 338extern void set_cpu_sd_state_idle(void);
6201b4d6 339extern int get_nohz_timer_target(int pinned);
46cb4b7c 340#else
c1cc017c 341static inline void nohz_balance_enter_idle(int cpu) { }
fdaabd80 342static inline void set_cpu_sd_state_idle(void) { }
6201b4d6
VK
343static inline int get_nohz_timer_target(int pinned)
344{
345 return smp_processor_id();
346}
46cb4b7c 347#endif
1da177e4 348
e59e2ae2 349/*
39bc89fd 350 * Only dump TASK_* tasks. (0 for all tasks)
e59e2ae2
IM
351 */
352extern void show_state_filter(unsigned long state_filter);
353
354static inline void show_state(void)
355{
39bc89fd 356 show_state_filter(0);
e59e2ae2
IM
357}
358
1da177e4
LT
359extern void show_regs(struct pt_regs *);
360
361/*
362 * TASK is a pointer to the task whose backtrace we want to see (or NULL for current
363 * task), SP is the stack pointer of the first frame that should be shown in the back
364 * trace (or NULL if the entire call-chain of the task should be shown).
365 */
366extern void show_stack(struct task_struct *task, unsigned long *sp);
367
1da177e4
LT
368extern void cpu_init (void);
369extern void trap_init(void);
370extern void update_process_times(int user);
371extern void scheduler_tick(void);
372
82a1fcb9
IM
373extern void sched_show_task(struct task_struct *p);
374
19cc36c0 375#ifdef CONFIG_LOCKUP_DETECTOR
8446f1d3 376extern void touch_softlockup_watchdog(void);
d6ad3e28 377extern void touch_softlockup_watchdog_sync(void);
04c9167f 378extern void touch_all_softlockup_watchdogs(void);
332fbdbc
DZ
379extern int proc_dowatchdog_thresh(struct ctl_table *table, int write,
380 void __user *buffer,
381 size_t *lenp, loff_t *ppos);
9c44bc03 382extern unsigned int softlockup_panic;
004417a6 383void lockup_detector_init(void);
8446f1d3 384#else
8446f1d3
IM
385static inline void touch_softlockup_watchdog(void)
386{
387}
d6ad3e28
JW
388static inline void touch_softlockup_watchdog_sync(void)
389{
390}
04c9167f
JF
391static inline void touch_all_softlockup_watchdogs(void)
392{
393}
004417a6
PZ
394static inline void lockup_detector_init(void)
395{
396}
8446f1d3
IM
397#endif
398
8b414521
MT
399#ifdef CONFIG_DETECT_HUNG_TASK
400void reset_hung_task_detector(void);
401#else
402static inline void reset_hung_task_detector(void)
403{
404}
405#endif
406
1da177e4
LT
407/* Attach to any functions which should be ignored in wchan output. */
408#define __sched __attribute__((__section__(".sched.text")))
deaf2227
IM
409
410/* Linker adds these: start and end of __sched functions */
411extern char __sched_text_start[], __sched_text_end[];
412
1da177e4
LT
413/* Is this address in the __sched functions? */
414extern int in_sched_functions(unsigned long addr);
415
416#define MAX_SCHEDULE_TIMEOUT LONG_MAX
b3c97528 417extern signed long schedule_timeout(signed long timeout);
64ed93a2 418extern signed long schedule_timeout_interruptible(signed long timeout);
294d5cc2 419extern signed long schedule_timeout_killable(signed long timeout);
64ed93a2 420extern signed long schedule_timeout_uninterruptible(signed long timeout);
1da177e4 421asmlinkage void schedule(void);
c5491ea7 422extern void schedule_preempt_disabled(void);
1da177e4 423
9cff8ade
N
424extern long io_schedule_timeout(long timeout);
425
426static inline void io_schedule(void)
427{
428 io_schedule_timeout(MAX_SCHEDULE_TIMEOUT);
429}
430
ab516013 431struct nsproxy;
acce292c 432struct user_namespace;
1da177e4 433
efc1a3b1
DH
434#ifdef CONFIG_MMU
435extern void arch_pick_mmap_layout(struct mm_struct *mm);
1da177e4
LT
436extern unsigned long
437arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
438 unsigned long, unsigned long);
439extern unsigned long
440arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
441 unsigned long len, unsigned long pgoff,
442 unsigned long flags);
efc1a3b1
DH
443#else
444static inline void arch_pick_mmap_layout(struct mm_struct *mm) {}
445#endif
1da177e4 446
d049f74f
KC
447#define SUID_DUMP_DISABLE 0 /* No setuid dumping */
448#define SUID_DUMP_USER 1 /* Dump as user of process */
449#define SUID_DUMP_ROOT 2 /* Dump as root */
450
6c5d5238 451/* mm flags */
f8af4da3 452
7288e118 453/* for SUID_DUMP_* above */
3cb4a0bb 454#define MMF_DUMPABLE_BITS 2
f8af4da3 455#define MMF_DUMPABLE_MASK ((1 << MMF_DUMPABLE_BITS) - 1)
3cb4a0bb 456
942be387
ON
457extern void set_dumpable(struct mm_struct *mm, int value);
458/*
459 * This returns the actual value of the suid_dumpable flag. For things
460 * that are using this for checking for privilege transitions, it must
461 * test against SUID_DUMP_USER rather than treating it as a boolean
462 * value.
463 */
464static inline int __get_dumpable(unsigned long mm_flags)
465{
466 return mm_flags & MMF_DUMPABLE_MASK;
467}
468
469static inline int get_dumpable(struct mm_struct *mm)
470{
471 return __get_dumpable(mm->flags);
472}
473
3cb4a0bb
KH
474/* coredump filter bits */
475#define MMF_DUMP_ANON_PRIVATE 2
476#define MMF_DUMP_ANON_SHARED 3
477#define MMF_DUMP_MAPPED_PRIVATE 4
478#define MMF_DUMP_MAPPED_SHARED 5
82df3973 479#define MMF_DUMP_ELF_HEADERS 6
e575f111
KM
480#define MMF_DUMP_HUGETLB_PRIVATE 7
481#define MMF_DUMP_HUGETLB_SHARED 8
f8af4da3 482
3cb4a0bb 483#define MMF_DUMP_FILTER_SHIFT MMF_DUMPABLE_BITS
e575f111 484#define MMF_DUMP_FILTER_BITS 7
3cb4a0bb
KH
485#define MMF_DUMP_FILTER_MASK \
486 (((1 << MMF_DUMP_FILTER_BITS) - 1) << MMF_DUMP_FILTER_SHIFT)
487#define MMF_DUMP_FILTER_DEFAULT \
e575f111 488 ((1 << MMF_DUMP_ANON_PRIVATE) | (1 << MMF_DUMP_ANON_SHARED) |\
656eb2cd
RM
489 (1 << MMF_DUMP_HUGETLB_PRIVATE) | MMF_DUMP_MASK_DEFAULT_ELF)
490
491#ifdef CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
492# define MMF_DUMP_MASK_DEFAULT_ELF (1 << MMF_DUMP_ELF_HEADERS)
493#else
494# define MMF_DUMP_MASK_DEFAULT_ELF 0
495#endif
f8af4da3
HD
496 /* leave room for more dump flags */
497#define MMF_VM_MERGEABLE 16 /* KSM may merge identical pages */
ba76149f 498#define MMF_VM_HUGEPAGE 17 /* set when VM_HUGEPAGE is set on vma */
bafb282d 499#define MMF_EXE_FILE_CHANGED 18 /* see prctl_set_mm_exe_file() */
f8af4da3 500
9f68f672
ON
501#define MMF_HAS_UPROBES 19 /* has uprobes */
502#define MMF_RECALC_UPROBES 20 /* MMF_HAS_UPROBES can be wrong */
f8ac4ec9 503
f8af4da3 504#define MMF_INIT_MASK (MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK)
6c5d5238 505
1da177e4
LT
506struct sighand_struct {
507 atomic_t count;
508 struct k_sigaction action[_NSIG];
509 spinlock_t siglock;
b8fceee1 510 wait_queue_head_t signalfd_wqh;
1da177e4
LT
511};
512
0e464814 513struct pacct_struct {
f6ec29a4
KK
514 int ac_flag;
515 long ac_exitcode;
0e464814 516 unsigned long ac_mem;
77787bfb
KK
517 cputime_t ac_utime, ac_stime;
518 unsigned long ac_minflt, ac_majflt;
0e464814
KK
519};
520
42c4ab41
SG
521struct cpu_itimer {
522 cputime_t expires;
523 cputime_t incr;
8356b5f9
SG
524 u32 error;
525 u32 incr_error;
42c4ab41
SG
526};
527
d37f761d
FW
528/**
529 * struct cputime - snaphsot of system and user cputime
530 * @utime: time spent in user mode
531 * @stime: time spent in system mode
532 *
533 * Gathers a generic snapshot of user and system time.
534 */
535struct cputime {
536 cputime_t utime;
537 cputime_t stime;
538};
539
f06febc9
FM
540/**
541 * struct task_cputime - collected CPU time counts
542 * @utime: time spent in user mode, in &cputime_t units
543 * @stime: time spent in kernel mode, in &cputime_t units
544 * @sum_exec_runtime: total time spent on the CPU, in nanoseconds
5ce73a4a 545 *
d37f761d
FW
546 * This is an extension of struct cputime that includes the total runtime
547 * spent by the task from the scheduler point of view.
548 *
549 * As a result, this structure groups together three kinds of CPU time
550 * that are tracked for threads and thread groups. Most things considering
f06febc9
FM
551 * CPU time want to group these counts together and treat all three
552 * of them in parallel.
553 */
554struct task_cputime {
555 cputime_t utime;
556 cputime_t stime;
557 unsigned long long sum_exec_runtime;
558};
559/* Alternate field names when used to cache expirations. */
560#define prof_exp stime
561#define virt_exp utime
562#define sched_exp sum_exec_runtime
563
4cd4c1b4
PZ
564#define INIT_CPUTIME \
565 (struct task_cputime) { \
64861634
MS
566 .utime = 0, \
567 .stime = 0, \
4cd4c1b4
PZ
568 .sum_exec_runtime = 0, \
569 }
570
a233f112
PZ
571#ifdef CONFIG_PREEMPT_COUNT
572#define PREEMPT_DISABLED (1 + PREEMPT_ENABLED)
573#else
574#define PREEMPT_DISABLED PREEMPT_ENABLED
575#endif
576
c99e6efe
PZ
577/*
578 * Disable preemption until the scheduler is running.
579 * Reset by start_kernel()->sched_init()->init_idle().
d86ee480
PZ
580 *
581 * We include PREEMPT_ACTIVE to avoid cond_resched() from working
582 * before the scheduler is active -- see should_resched().
c99e6efe 583 */
a233f112 584#define INIT_PREEMPT_COUNT (PREEMPT_DISABLED + PREEMPT_ACTIVE)
c99e6efe 585
f06febc9 586/**
4cd4c1b4
PZ
587 * struct thread_group_cputimer - thread group interval timer counts
588 * @cputime: thread group interval timers.
589 * @running: non-zero when there are timers running and
590 * @cputime receives updates.
591 * @lock: lock for fields in this struct.
f06febc9
FM
592 *
593 * This structure contains the version of task_cputime, above, that is
4cd4c1b4 594 * used for thread group CPU timer calculations.
f06febc9 595 */
4cd4c1b4
PZ
596struct thread_group_cputimer {
597 struct task_cputime cputime;
598 int running;
ee30a7b2 599 raw_spinlock_t lock;
f06febc9 600};
f06febc9 601
4714d1d3 602#include <linux/rwsem.h>
5091faa4
MG
603struct autogroup;
604
1da177e4 605/*
e815f0a8 606 * NOTE! "signal_struct" does not have its own
1da177e4
LT
607 * locking, because a shared signal_struct always
608 * implies a shared sighand_struct, so locking
609 * sighand_struct is always a proper superset of
610 * the locking of signal_struct.
611 */
612struct signal_struct {
ea6d290c 613 atomic_t sigcnt;
1da177e4 614 atomic_t live;
b3ac022c 615 int nr_threads;
0c740d0a 616 struct list_head thread_head;
1da177e4
LT
617
618 wait_queue_head_t wait_chldexit; /* for wait4() */
619
620 /* current thread group signal load-balancing target: */
36c8b586 621 struct task_struct *curr_target;
1da177e4
LT
622
623 /* shared signal handling: */
624 struct sigpending shared_pending;
625
626 /* thread group exit support */
627 int group_exit_code;
628 /* overloaded:
629 * - notify group_exit_task when ->count is equal to notify_count
630 * - everyone except group_exit_task is stopped during signal delivery
631 * of fatal signals, group_exit_task processes the signal.
632 */
1da177e4 633 int notify_count;
07dd20e0 634 struct task_struct *group_exit_task;
1da177e4
LT
635
636 /* thread group stop support, overloads group_exit_code too */
637 int group_stop_count;
638 unsigned int flags; /* see SIGNAL_* flags below */
639
ebec18a6
LP
640 /*
641 * PR_SET_CHILD_SUBREAPER marks a process, like a service
642 * manager, to re-parent orphan (double-forking) child processes
643 * to this process instead of 'init'. The service manager is
644 * able to receive SIGCHLD signals and is able to investigate
645 * the process until it calls wait(). All children of this
646 * process will inherit a flag if they should look for a
647 * child_subreaper process at exit.
648 */
649 unsigned int is_child_subreaper:1;
650 unsigned int has_child_subreaper:1;
651
1da177e4 652 /* POSIX.1b Interval Timers */
5ed67f05
PE
653 int posix_timer_id;
654 struct list_head posix_timers;
1da177e4
LT
655
656 /* ITIMER_REAL timer for the process */
2ff678b8 657 struct hrtimer real_timer;
fea9d175 658 struct pid *leader_pid;
2ff678b8 659 ktime_t it_real_incr;
1da177e4 660
42c4ab41
SG
661 /*
662 * ITIMER_PROF and ITIMER_VIRTUAL timers for the process, we use
663 * CPUCLOCK_PROF and CPUCLOCK_VIRT for indexing array as these
664 * values are defined to 0 and 1 respectively
665 */
666 struct cpu_itimer it[2];
1da177e4 667
f06febc9 668 /*
4cd4c1b4
PZ
669 * Thread group totals for process CPU timers.
670 * See thread_group_cputimer(), et al, for details.
f06febc9 671 */
4cd4c1b4 672 struct thread_group_cputimer cputimer;
f06febc9
FM
673
674 /* Earliest-expiration cache. */
675 struct task_cputime cputime_expires;
676
677 struct list_head cpu_timers[3];
678
ab521dc0 679 struct pid *tty_old_pgrp;
1ec320af 680
1da177e4
LT
681 /* boolean value for session group leader */
682 int leader;
683
684 struct tty_struct *tty; /* NULL if no tty */
685
5091faa4
MG
686#ifdef CONFIG_SCHED_AUTOGROUP
687 struct autogroup *autogroup;
688#endif
1da177e4
LT
689 /*
690 * Cumulative resource counters for dead threads in the group,
691 * and for reaped dead child processes forked by this group.
692 * Live threads maintain their own counters and add to these
693 * in __exit_signal, except for the group leader.
694 */
e78c3496 695 seqlock_t stats_lock;
32bd671d 696 cputime_t utime, stime, cutime, cstime;
9ac52315
LV
697 cputime_t gtime;
698 cputime_t cgtime;
9fbc42ea 699#ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
d37f761d 700 struct cputime prev_cputime;
0cf55e1e 701#endif
1da177e4
LT
702 unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw;
703 unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
6eaeeaba 704 unsigned long inblock, oublock, cinblock, coublock;
1f10206c 705 unsigned long maxrss, cmaxrss;
940389b8 706 struct task_io_accounting ioac;
1da177e4 707
32bd671d
PZ
708 /*
709 * Cumulative ns of schedule CPU time fo dead threads in the
710 * group, not including a zombie group leader, (This only differs
711 * from jiffies_to_ns(utime + stime) if sched_clock uses something
712 * other than jiffies.)
713 */
714 unsigned long long sum_sched_runtime;
715
1da177e4
LT
716 /*
717 * We don't bother to synchronize most readers of this at all,
718 * because there is no reader checking a limit that actually needs
719 * to get both rlim_cur and rlim_max atomically, and either one
720 * alone is a single word that can safely be read normally.
721 * getrlimit/setrlimit use task_lock(current->group_leader) to
722 * protect this instead of the siglock, because they really
723 * have no need to disable irqs.
724 */
725 struct rlimit rlim[RLIM_NLIMITS];
726
0e464814
KK
727#ifdef CONFIG_BSD_PROCESS_ACCT
728 struct pacct_struct pacct; /* per-process accounting information */
729#endif
ad4ecbcb 730#ifdef CONFIG_TASKSTATS
ad4ecbcb
SN
731 struct taskstats *stats;
732#endif
522ed776
MT
733#ifdef CONFIG_AUDIT
734 unsigned audit_tty;
46e959ea 735 unsigned audit_tty_log_passwd;
522ed776
MT
736 struct tty_audit_buf *tty_audit_buf;
737#endif
4714d1d3
BB
738#ifdef CONFIG_CGROUPS
739 /*
77e4ef99
TH
740 * group_rwsem prevents new tasks from entering the threadgroup and
741 * member tasks from exiting,a more specifically, setting of
742 * PF_EXITING. fork and exit paths are protected with this rwsem
743 * using threadgroup_change_begin/end(). Users which require
744 * threadgroup to remain stable should use threadgroup_[un]lock()
745 * which also takes care of exec path. Currently, cgroup is the
746 * only user.
4714d1d3 747 */
257058ae 748 struct rw_semaphore group_rwsem;
4714d1d3 749#endif
28b83c51 750
e1e12d2f 751 oom_flags_t oom_flags;
a9c58b90
DR
752 short oom_score_adj; /* OOM kill score adjustment */
753 short oom_score_adj_min; /* OOM kill score adjustment min value.
754 * Only settable by CAP_SYS_RESOURCE. */
9b1bf12d
KM
755
756 struct mutex cred_guard_mutex; /* guard against foreign influences on
757 * credential calculations
758 * (notably. ptrace) */
1da177e4
LT
759};
760
761/*
762 * Bits in flags field of signal_struct.
763 */
764#define SIGNAL_STOP_STOPPED 0x00000001 /* job control stop in effect */
ee77f075
ON
765#define SIGNAL_STOP_CONTINUED 0x00000002 /* SIGCONT since WCONTINUED reap */
766#define SIGNAL_GROUP_EXIT 0x00000004 /* group exit in progress */
403bad72 767#define SIGNAL_GROUP_COREDUMP 0x00000008 /* coredump in progress */
e4420551
ON
768/*
769 * Pending notifications to parent.
770 */
771#define SIGNAL_CLD_STOPPED 0x00000010
772#define SIGNAL_CLD_CONTINUED 0x00000020
773#define SIGNAL_CLD_MASK (SIGNAL_CLD_STOPPED|SIGNAL_CLD_CONTINUED)
1da177e4 774
fae5fa44
ON
775#define SIGNAL_UNKILLABLE 0x00000040 /* for init: ignore fatal signals */
776
ed5d2cac
ON
777/* If true, all threads except ->group_exit_task have pending SIGKILL */
778static inline int signal_group_exit(const struct signal_struct *sig)
779{
780 return (sig->flags & SIGNAL_GROUP_EXIT) ||
781 (sig->group_exit_task != NULL);
782}
783
1da177e4
LT
784/*
785 * Some day this will be a full-fledged user tracking system..
786 */
787struct user_struct {
788 atomic_t __count; /* reference count */
789 atomic_t processes; /* How many processes does this user have? */
1da177e4 790 atomic_t sigpending; /* How many pending signals does this user have? */
2d9048e2 791#ifdef CONFIG_INOTIFY_USER
0eeca283
RL
792 atomic_t inotify_watches; /* How many inotify watches does this user have? */
793 atomic_t inotify_devs; /* How many inotify devs does this user have opened? */
794#endif
4afeff85
EP
795#ifdef CONFIG_FANOTIFY
796 atomic_t fanotify_listeners;
797#endif
7ef9964e 798#ifdef CONFIG_EPOLL
52bd19f7 799 atomic_long_t epoll_watches; /* The number of file descriptors currently watched */
7ef9964e 800#endif
970a8645 801#ifdef CONFIG_POSIX_MQUEUE
1da177e4
LT
802 /* protected by mq_lock */
803 unsigned long mq_bytes; /* How many bytes can be allocated to mqueue? */
970a8645 804#endif
1da177e4
LT
805 unsigned long locked_shm; /* How many pages of mlocked shm ? */
806
807#ifdef CONFIG_KEYS
808 struct key *uid_keyring; /* UID specific keyring */
809 struct key *session_keyring; /* UID's default session keyring */
810#endif
811
812 /* Hash table maintenance information */
735de223 813 struct hlist_node uidhash_node;
7b44ab97 814 kuid_t uid;
24e377a8 815
cdd6c482 816#ifdef CONFIG_PERF_EVENTS
789f90fc
PZ
817 atomic_long_t locked_vm;
818#endif
1da177e4
LT
819};
820
eb41d946 821extern int uids_sysfs_init(void);
5cb350ba 822
7b44ab97 823extern struct user_struct *find_user(kuid_t);
1da177e4
LT
824
825extern struct user_struct root_user;
826#define INIT_USER (&root_user)
827
b6dff3ec 828
1da177e4
LT
829struct backing_dev_info;
830struct reclaim_state;
831
52f17b6c 832#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1da177e4
LT
833struct sched_info {
834 /* cumulative counters */
2d72376b 835 unsigned long pcount; /* # of times run on this cpu */
9c2c4802 836 unsigned long long run_delay; /* time spent waiting on a runqueue */
1da177e4
LT
837
838 /* timestamps */
172ba844
BS
839 unsigned long long last_arrival,/* when we last ran on a cpu */
840 last_queued; /* when we were last queued to run */
1da177e4 841};
52f17b6c 842#endif /* defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) */
1da177e4 843
ca74e92b
SN
844#ifdef CONFIG_TASK_DELAY_ACCT
845struct task_delay_info {
846 spinlock_t lock;
847 unsigned int flags; /* Private per-task flags */
848
849 /* For each stat XXX, add following, aligned appropriately
850 *
851 * struct timespec XXX_start, XXX_end;
852 * u64 XXX_delay;
853 * u32 XXX_count;
854 *
855 * Atomicity of updates to XXX_delay, XXX_count protected by
856 * single lock above (split into XXX_lock if contention is an issue).
857 */
0ff92245
SN
858
859 /*
860 * XXX_count is incremented on every XXX operation, the delay
861 * associated with the operation is added to XXX_delay.
862 * XXX_delay contains the accumulated delay time in nanoseconds.
863 */
9667a23d 864 u64 blkio_start; /* Shared by blkio, swapin */
0ff92245
SN
865 u64 blkio_delay; /* wait for sync block io completion */
866 u64 swapin_delay; /* wait for swapin block io completion */
867 u32 blkio_count; /* total count of the number of sync block */
868 /* io operations performed */
869 u32 swapin_count; /* total count of the number of swapin block */
870 /* io operations performed */
873b4771 871
9667a23d 872 u64 freepages_start;
873b4771
KK
873 u64 freepages_delay; /* wait for memory reclaim */
874 u32 freepages_count; /* total count of memory reclaim */
ca74e92b 875};
52f17b6c
CS
876#endif /* CONFIG_TASK_DELAY_ACCT */
877
878static inline int sched_info_on(void)
879{
880#ifdef CONFIG_SCHEDSTATS
881 return 1;
882#elif defined(CONFIG_TASK_DELAY_ACCT)
883 extern int delayacct_on;
884 return delayacct_on;
885#else
886 return 0;
ca74e92b 887#endif
52f17b6c 888}
ca74e92b 889
d15bcfdb
IM
890enum cpu_idle_type {
891 CPU_IDLE,
892 CPU_NOT_IDLE,
893 CPU_NEWLY_IDLE,
894 CPU_MAX_IDLE_TYPES
1da177e4
LT
895};
896
1399fa78 897/*
ca8ce3d0 898 * Increase resolution of cpu_capacity calculations
1399fa78 899 */
ca8ce3d0
NP
900#define SCHED_CAPACITY_SHIFT 10
901#define SCHED_CAPACITY_SCALE (1L << SCHED_CAPACITY_SHIFT)
1da177e4 902
1399fa78
NR
903/*
904 * sched-domains (multiprocessor balancing) declarations:
905 */
2dd73a4f 906#ifdef CONFIG_SMP
b5d978e0
PZ
907#define SD_LOAD_BALANCE 0x0001 /* Do load balancing on this domain. */
908#define SD_BALANCE_NEWIDLE 0x0002 /* Balance when about to become idle */
909#define SD_BALANCE_EXEC 0x0004 /* Balance on exec */
910#define SD_BALANCE_FORK 0x0008 /* Balance on fork, clone */
c88d5910 911#define SD_BALANCE_WAKE 0x0010 /* Balance on wakeup */
b5d978e0 912#define SD_WAKE_AFFINE 0x0020 /* Wake task to waking CPU */
5d4dfddd 913#define SD_SHARE_CPUCAPACITY 0x0080 /* Domain members share cpu power */
d77b3ed5 914#define SD_SHARE_POWERDOMAIN 0x0100 /* Domain members share power domain */
b5d978e0
PZ
915#define SD_SHARE_PKG_RESOURCES 0x0200 /* Domain members share cpu pkg resources */
916#define SD_SERIALIZE 0x0400 /* Only a single load balancing instance */
532cb4c4 917#define SD_ASYM_PACKING 0x0800 /* Place busy groups earlier in the domain */
b5d978e0 918#define SD_PREFER_SIBLING 0x1000 /* Prefer to place tasks in a sibling domain */
e3589f6c 919#define SD_OVERLAP 0x2000 /* sched_domains of this level overlap */
3a7053b3 920#define SD_NUMA 0x4000 /* cross-node balancing */
5c45bf27 921
143e1e28 922#ifdef CONFIG_SCHED_SMT
b6220ad6 923static inline int cpu_smt_flags(void)
143e1e28 924{
5d4dfddd 925 return SD_SHARE_CPUCAPACITY | SD_SHARE_PKG_RESOURCES;
143e1e28
VG
926}
927#endif
928
929#ifdef CONFIG_SCHED_MC
b6220ad6 930static inline int cpu_core_flags(void)
143e1e28
VG
931{
932 return SD_SHARE_PKG_RESOURCES;
933}
934#endif
935
936#ifdef CONFIG_NUMA
b6220ad6 937static inline int cpu_numa_flags(void)
143e1e28
VG
938{
939 return SD_NUMA;
940}
941#endif
532cb4c4 942
1d3504fc
HS
943struct sched_domain_attr {
944 int relax_domain_level;
945};
946
947#define SD_ATTR_INIT (struct sched_domain_attr) { \
948 .relax_domain_level = -1, \
949}
950
60495e77
PZ
951extern int sched_domain_level_max;
952
5e6521ea
LZ
953struct sched_group;
954
1da177e4
LT
955struct sched_domain {
956 /* These fields must be setup */
957 struct sched_domain *parent; /* top domain must be null terminated */
1a848870 958 struct sched_domain *child; /* bottom domain must be null terminated */
1da177e4 959 struct sched_group *groups; /* the balancing groups of the domain */
1da177e4
LT
960 unsigned long min_interval; /* Minimum balance interval ms */
961 unsigned long max_interval; /* Maximum balance interval ms */
962 unsigned int busy_factor; /* less balancing by factor if busy */
963 unsigned int imbalance_pct; /* No balance until over watermark */
1da177e4 964 unsigned int cache_nice_tries; /* Leave cache hot tasks for # tries */
7897986b
NP
965 unsigned int busy_idx;
966 unsigned int idle_idx;
967 unsigned int newidle_idx;
968 unsigned int wake_idx;
147cbb4b 969 unsigned int forkexec_idx;
a52bfd73 970 unsigned int smt_gain;
25f55d9d
VG
971
972 int nohz_idle; /* NOHZ IDLE status */
1da177e4 973 int flags; /* See SD_* */
60495e77 974 int level;
1da177e4
LT
975
976 /* Runtime fields. */
977 unsigned long last_balance; /* init to jiffies. units in jiffies */
978 unsigned int balance_interval; /* initialise to 1. units in ms. */
979 unsigned int nr_balance_failed; /* initialise to 0 */
980
f48627e6 981 /* idle_balance() stats */
9bd721c5 982 u64 max_newidle_lb_cost;
f48627e6 983 unsigned long next_decay_max_lb_cost;
2398f2c6 984
1da177e4
LT
985#ifdef CONFIG_SCHEDSTATS
986 /* load_balance() stats */
480b9434
KC
987 unsigned int lb_count[CPU_MAX_IDLE_TYPES];
988 unsigned int lb_failed[CPU_MAX_IDLE_TYPES];
989 unsigned int lb_balanced[CPU_MAX_IDLE_TYPES];
990 unsigned int lb_imbalance[CPU_MAX_IDLE_TYPES];
991 unsigned int lb_gained[CPU_MAX_IDLE_TYPES];
992 unsigned int lb_hot_gained[CPU_MAX_IDLE_TYPES];
993 unsigned int lb_nobusyg[CPU_MAX_IDLE_TYPES];
994 unsigned int lb_nobusyq[CPU_MAX_IDLE_TYPES];
1da177e4
LT
995
996 /* Active load balancing */
480b9434
KC
997 unsigned int alb_count;
998 unsigned int alb_failed;
999 unsigned int alb_pushed;
1da177e4 1000
68767a0a 1001 /* SD_BALANCE_EXEC stats */
480b9434
KC
1002 unsigned int sbe_count;
1003 unsigned int sbe_balanced;
1004 unsigned int sbe_pushed;
1da177e4 1005
68767a0a 1006 /* SD_BALANCE_FORK stats */
480b9434
KC
1007 unsigned int sbf_count;
1008 unsigned int sbf_balanced;
1009 unsigned int sbf_pushed;
68767a0a 1010
1da177e4 1011 /* try_to_wake_up() stats */
480b9434
KC
1012 unsigned int ttwu_wake_remote;
1013 unsigned int ttwu_move_affine;
1014 unsigned int ttwu_move_balance;
1da177e4 1015#endif
a5d8c348
IM
1016#ifdef CONFIG_SCHED_DEBUG
1017 char *name;
1018#endif
dce840a0
PZ
1019 union {
1020 void *private; /* used during construction */
1021 struct rcu_head rcu; /* used during destruction */
1022 };
6c99e9ad 1023
669c55e9 1024 unsigned int span_weight;
4200efd9
IM
1025 /*
1026 * Span of all CPUs in this domain.
1027 *
1028 * NOTE: this field is variable length. (Allocated dynamically
1029 * by attaching extra space to the end of the structure,
1030 * depending on how many CPUs the kernel has booted up with)
4200efd9
IM
1031 */
1032 unsigned long span[0];
1da177e4
LT
1033};
1034
758b2cdc
RR
1035static inline struct cpumask *sched_domain_span(struct sched_domain *sd)
1036{
6c99e9ad 1037 return to_cpumask(sd->span);
758b2cdc
RR
1038}
1039
acc3f5d7 1040extern void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
1d3504fc 1041 struct sched_domain_attr *dattr_new);
029190c5 1042
acc3f5d7
RR
1043/* Allocate an array of sched domains, for partition_sched_domains(). */
1044cpumask_var_t *alloc_sched_domains(unsigned int ndoms);
1045void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms);
1046
39be3501
PZ
1047bool cpus_share_cache(int this_cpu, int that_cpu);
1048
143e1e28 1049typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
b6220ad6 1050typedef int (*sched_domain_flags_f)(void);
143e1e28
VG
1051
1052#define SDTL_OVERLAP 0x01
1053
1054struct sd_data {
1055 struct sched_domain **__percpu sd;
1056 struct sched_group **__percpu sg;
63b2ca30 1057 struct sched_group_capacity **__percpu sgc;
143e1e28
VG
1058};
1059
1060struct sched_domain_topology_level {
1061 sched_domain_mask_f mask;
1062 sched_domain_flags_f sd_flags;
1063 int flags;
1064 int numa_level;
1065 struct sd_data data;
1066#ifdef CONFIG_SCHED_DEBUG
1067 char *name;
1068#endif
1069};
1070
1071extern struct sched_domain_topology_level *sched_domain_topology;
1072
1073extern void set_sched_topology(struct sched_domain_topology_level *tl);
f6be8af1 1074extern void wake_up_if_idle(int cpu);
143e1e28
VG
1075
1076#ifdef CONFIG_SCHED_DEBUG
1077# define SD_INIT_NAME(type) .name = #type
1078#else
1079# define SD_INIT_NAME(type)
1080#endif
1081
1b427c15 1082#else /* CONFIG_SMP */
1da177e4 1083
1b427c15 1084struct sched_domain_attr;
d02c7a8c 1085
1b427c15 1086static inline void
acc3f5d7 1087partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
1b427c15
IM
1088 struct sched_domain_attr *dattr_new)
1089{
d02c7a8c 1090}
39be3501
PZ
1091
1092static inline bool cpus_share_cache(int this_cpu, int that_cpu)
1093{
1094 return true;
1095}
1096
1b427c15 1097#endif /* !CONFIG_SMP */
1da177e4 1098
47fe38fc 1099
1da177e4 1100struct io_context; /* See blkdev.h */
1da177e4 1101
1da177e4 1102
383f2835 1103#ifdef ARCH_HAS_PREFETCH_SWITCH_STACK
36c8b586 1104extern void prefetch_stack(struct task_struct *t);
383f2835
CK
1105#else
1106static inline void prefetch_stack(struct task_struct *t) { }
1107#endif
1da177e4
LT
1108
1109struct audit_context; /* See audit.c */
1110struct mempolicy;
b92ce558 1111struct pipe_inode_info;
4865ecf1 1112struct uts_namespace;
1da177e4 1113
20b8a59f 1114struct load_weight {
9dbdb155
PZ
1115 unsigned long weight;
1116 u32 inv_weight;
20b8a59f
IM
1117};
1118
9d85f21c
PT
1119struct sched_avg {
1120 /*
1121 * These sums represent an infinite geometric series and so are bound
239003ea 1122 * above by 1024/(1-y). Thus we only need a u32 to store them for all
9d85f21c
PT
1123 * choices of y < 1-2^(-32)*1024.
1124 */
1125 u32 runnable_avg_sum, runnable_avg_period;
1126 u64 last_runnable_update;
9ee474f5 1127 s64 decay_count;
2dac754e 1128 unsigned long load_avg_contrib;
9d85f21c
PT
1129};
1130
94c18227 1131#ifdef CONFIG_SCHEDSTATS
41acab88 1132struct sched_statistics {
20b8a59f 1133 u64 wait_start;
94c18227 1134 u64 wait_max;
6d082592
AV
1135 u64 wait_count;
1136 u64 wait_sum;
8f0dfc34
AV
1137 u64 iowait_count;
1138 u64 iowait_sum;
94c18227 1139
20b8a59f 1140 u64 sleep_start;
20b8a59f 1141 u64 sleep_max;
94c18227
IM
1142 s64 sum_sleep_runtime;
1143
1144 u64 block_start;
20b8a59f
IM
1145 u64 block_max;
1146 u64 exec_max;
eba1ed4b 1147 u64 slice_max;
cc367732 1148
cc367732
IM
1149 u64 nr_migrations_cold;
1150 u64 nr_failed_migrations_affine;
1151 u64 nr_failed_migrations_running;
1152 u64 nr_failed_migrations_hot;
1153 u64 nr_forced_migrations;
cc367732
IM
1154
1155 u64 nr_wakeups;
1156 u64 nr_wakeups_sync;
1157 u64 nr_wakeups_migrate;
1158 u64 nr_wakeups_local;
1159 u64 nr_wakeups_remote;
1160 u64 nr_wakeups_affine;
1161 u64 nr_wakeups_affine_attempts;
1162 u64 nr_wakeups_passive;
1163 u64 nr_wakeups_idle;
41acab88
LDM
1164};
1165#endif
1166
1167struct sched_entity {
1168 struct load_weight load; /* for load-balancing */
1169 struct rb_node run_node;
1170 struct list_head group_node;
1171 unsigned int on_rq;
1172
1173 u64 exec_start;
1174 u64 sum_exec_runtime;
1175 u64 vruntime;
1176 u64 prev_sum_exec_runtime;
1177
41acab88
LDM
1178 u64 nr_migrations;
1179
41acab88
LDM
1180#ifdef CONFIG_SCHEDSTATS
1181 struct sched_statistics statistics;
94c18227
IM
1182#endif
1183
20b8a59f 1184#ifdef CONFIG_FAIR_GROUP_SCHED
fed14d45 1185 int depth;
20b8a59f
IM
1186 struct sched_entity *parent;
1187 /* rq on which this entity is (to be) queued: */
1188 struct cfs_rq *cfs_rq;
1189 /* rq "owned" by this entity/group: */
1190 struct cfs_rq *my_q;
1191#endif
8bd75c77 1192
141965c7 1193#ifdef CONFIG_SMP
f4e26b12 1194 /* Per-entity load-tracking */
9d85f21c
PT
1195 struct sched_avg avg;
1196#endif
20b8a59f 1197};
70b97a7f 1198
fa717060
PZ
1199struct sched_rt_entity {
1200 struct list_head run_list;
78f2c7db 1201 unsigned long timeout;
57d2aa00 1202 unsigned long watchdog_stamp;
bee367ed 1203 unsigned int time_slice;
6f505b16 1204
58d6c2d7 1205 struct sched_rt_entity *back;
052f1dc7 1206#ifdef CONFIG_RT_GROUP_SCHED
6f505b16
PZ
1207 struct sched_rt_entity *parent;
1208 /* rq on which this entity is (to be) queued: */
1209 struct rt_rq *rt_rq;
1210 /* rq "owned" by this entity/group: */
1211 struct rt_rq *my_q;
1212#endif
fa717060
PZ
1213};
1214
aab03e05
DF
1215struct sched_dl_entity {
1216 struct rb_node rb_node;
1217
1218 /*
1219 * Original scheduling parameters. Copied here from sched_attr
4027d080 1220 * during sched_setattr(), they will remain the same until
1221 * the next sched_setattr().
aab03e05
DF
1222 */
1223 u64 dl_runtime; /* maximum runtime for each instance */
1224 u64 dl_deadline; /* relative deadline of each instance */
755378a4 1225 u64 dl_period; /* separation of two instances (period) */
332ac17e 1226 u64 dl_bw; /* dl_runtime / dl_deadline */
aab03e05
DF
1227
1228 /*
1229 * Actual scheduling parameters. Initialized with the values above,
1230 * they are continously updated during task execution. Note that
1231 * the remaining runtime could be < 0 in case we are in overrun.
1232 */
1233 s64 runtime; /* remaining runtime for this instance */
1234 u64 deadline; /* absolute deadline for this instance */
1235 unsigned int flags; /* specifying the scheduler behaviour */
1236
1237 /*
1238 * Some bool flags:
1239 *
1240 * @dl_throttled tells if we exhausted the runtime. If so, the
1241 * task has to wait for a replenishment to be performed at the
1242 * next firing of dl_timer.
1243 *
1244 * @dl_new tells if a new instance arrived. If so we must
1245 * start executing it with full runtime and reset its absolute
1246 * deadline;
2d3d891d
DF
1247 *
1248 * @dl_boosted tells if we are boosted due to DI. If so we are
1249 * outside bandwidth enforcement mechanism (but only until we
5bfd126e
JL
1250 * exit the critical section);
1251 *
1252 * @dl_yielded tells if task gave up the cpu before consuming
1253 * all its available runtime during the last job.
aab03e05 1254 */
5bfd126e 1255 int dl_throttled, dl_new, dl_boosted, dl_yielded;
aab03e05
DF
1256
1257 /*
1258 * Bandwidth enforcement timer. Each -deadline task has its
1259 * own bandwidth to be enforced, thus we need one timer per task.
1260 */
1261 struct hrtimer dl_timer;
1262};
8bd75c77 1263
1d082fd0
PM
1264union rcu_special {
1265 struct {
1266 bool blocked;
1267 bool need_qs;
1268 } b;
1269 short s;
1270};
86848966
PM
1271struct rcu_node;
1272
8dc85d54
PZ
1273enum perf_event_task_context {
1274 perf_invalid_context = -1,
1275 perf_hw_context = 0,
89a1e187 1276 perf_sw_context,
8dc85d54
PZ
1277 perf_nr_task_contexts,
1278};
1279
1da177e4
LT
1280struct task_struct {
1281 volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
f7e4217b 1282 void *stack;
1da177e4 1283 atomic_t usage;
97dc32cd
WC
1284 unsigned int flags; /* per process flags, defined below */
1285 unsigned int ptrace;
1da177e4 1286
2dd73a4f 1287#ifdef CONFIG_SMP
fa14ff4a 1288 struct llist_node wake_entry;
3ca7a440 1289 int on_cpu;
62470419
MW
1290 struct task_struct *last_wakee;
1291 unsigned long wakee_flips;
1292 unsigned long wakee_flip_decay_ts;
ac66f547
PZ
1293
1294 int wake_cpu;
2dd73a4f 1295#endif
fd2f4419 1296 int on_rq;
50e645a8 1297
b29739f9 1298 int prio, static_prio, normal_prio;
c7aceaba 1299 unsigned int rt_priority;
5522d5d5 1300 const struct sched_class *sched_class;
20b8a59f 1301 struct sched_entity se;
fa717060 1302 struct sched_rt_entity rt;
8323f26c
PZ
1303#ifdef CONFIG_CGROUP_SCHED
1304 struct task_group *sched_task_group;
1305#endif
aab03e05 1306 struct sched_dl_entity dl;
1da177e4 1307
e107be36
AK
1308#ifdef CONFIG_PREEMPT_NOTIFIERS
1309 /* list of struct preempt_notifier: */
1310 struct hlist_head preempt_notifiers;
1311#endif
1312
6c5c9341 1313#ifdef CONFIG_BLK_DEV_IO_TRACE
2056a782 1314 unsigned int btrace_seq;
6c5c9341 1315#endif
1da177e4 1316
97dc32cd 1317 unsigned int policy;
29baa747 1318 int nr_cpus_allowed;
1da177e4 1319 cpumask_t cpus_allowed;
1da177e4 1320
a57eb940 1321#ifdef CONFIG_PREEMPT_RCU
e260be67 1322 int rcu_read_lock_nesting;
1d082fd0 1323 union rcu_special rcu_read_unlock_special;
f41d911f 1324 struct list_head rcu_node_entry;
a57eb940 1325#endif /* #ifdef CONFIG_PREEMPT_RCU */
28f6569a 1326#ifdef CONFIG_PREEMPT_RCU
a57eb940 1327 struct rcu_node *rcu_blocked_node;
28f6569a 1328#endif /* #ifdef CONFIG_PREEMPT_RCU */
8315f422
PM
1329#ifdef CONFIG_TASKS_RCU
1330 unsigned long rcu_tasks_nvcsw;
1331 bool rcu_tasks_holdout;
1332 struct list_head rcu_tasks_holdout_list;
176f8f7a 1333 int rcu_tasks_idle_cpu;
8315f422 1334#endif /* #ifdef CONFIG_TASKS_RCU */
e260be67 1335
52f17b6c 1336#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1da177e4
LT
1337 struct sched_info sched_info;
1338#endif
1339
1340 struct list_head tasks;
806c09a7 1341#ifdef CONFIG_SMP
917b627d 1342 struct plist_node pushable_tasks;
1baca4ce 1343 struct rb_node pushable_dl_tasks;
806c09a7 1344#endif
1da177e4
LT
1345
1346 struct mm_struct *mm, *active_mm;
4471a675
JK
1347#ifdef CONFIG_COMPAT_BRK
1348 unsigned brk_randomized:1;
1349#endif
615d6e87
DB
1350 /* per-thread vma caching */
1351 u32 vmacache_seqnum;
1352 struct vm_area_struct *vmacache[VMACACHE_SIZE];
34e55232
KH
1353#if defined(SPLIT_RSS_COUNTING)
1354 struct task_rss_stat rss_stat;
1355#endif
1da177e4 1356/* task state */
97dc32cd 1357 int exit_state;
1da177e4
LT
1358 int exit_code, exit_signal;
1359 int pdeath_signal; /* The signal sent when the parent dies */
a8f072c1 1360 unsigned int jobctl; /* JOBCTL_*, siglock protected */
9b89f6ba
AE
1361
1362 /* Used for emulating ABI behavior of previous Linux versions */
97dc32cd 1363 unsigned int personality;
9b89f6ba 1364
f9ce1f1c
KT
1365 unsigned in_execve:1; /* Tell the LSMs that the process is doing an
1366 * execve */
8f0dfc34
AV
1367 unsigned in_iowait:1;
1368
ca94c442
LP
1369 /* Revert to default priority/policy when forking */
1370 unsigned sched_reset_on_fork:1;
a8e4f2ea 1371 unsigned sched_contributes_to_load:1;
ca94c442 1372
6f185c29
VD
1373#ifdef CONFIG_MEMCG_KMEM
1374 unsigned memcg_kmem_skip_account:1;
1375#endif
1376
1d4457f9
KC
1377 unsigned long atomic_flags; /* Flags needing atomic access. */
1378
f56141e3
AL
1379 struct restart_block restart_block;
1380
1da177e4
LT
1381 pid_t pid;
1382 pid_t tgid;
0a425405 1383
1314562a 1384#ifdef CONFIG_CC_STACKPROTECTOR
0a425405
AV
1385 /* Canary value for the -fstack-protector gcc feature */
1386 unsigned long stack_canary;
1314562a 1387#endif
4d1d61a6 1388 /*
1da177e4 1389 * pointers to (original) parent process, youngest child, younger sibling,
4d1d61a6 1390 * older sibling, respectively. (p->father can be replaced with
f470021a 1391 * p->real_parent->pid)
1da177e4 1392 */
abd63bc3
KC
1393 struct task_struct __rcu *real_parent; /* real parent process */
1394 struct task_struct __rcu *parent; /* recipient of SIGCHLD, wait4() reports */
1da177e4 1395 /*
f470021a 1396 * children/sibling forms the list of my natural children
1da177e4
LT
1397 */
1398 struct list_head children; /* list of my children */
1399 struct list_head sibling; /* linkage in my parent's children list */
1400 struct task_struct *group_leader; /* threadgroup leader */
1401
f470021a
RM
1402 /*
1403 * ptraced is the list of tasks this task is using ptrace on.
1404 * This includes both natural children and PTRACE_ATTACH targets.
1405 * p->ptrace_entry is p's link on the p->parent->ptraced list.
1406 */
1407 struct list_head ptraced;
1408 struct list_head ptrace_entry;
1409
1da177e4 1410 /* PID/PID hash table linkage. */
92476d7f 1411 struct pid_link pids[PIDTYPE_MAX];
47e65328 1412 struct list_head thread_group;
0c740d0a 1413 struct list_head thread_node;
1da177e4
LT
1414
1415 struct completion *vfork_done; /* for vfork() */
1416 int __user *set_child_tid; /* CLONE_CHILD_SETTID */
1417 int __user *clear_child_tid; /* CLONE_CHILD_CLEARTID */
1418
c66f08be 1419 cputime_t utime, stime, utimescaled, stimescaled;
9ac52315 1420 cputime_t gtime;
9fbc42ea 1421#ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
d37f761d 1422 struct cputime prev_cputime;
6a61671b
FW
1423#endif
1424#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
1425 seqlock_t vtime_seqlock;
1426 unsigned long long vtime_snap;
1427 enum {
1428 VTIME_SLEEPING = 0,
1429 VTIME_USER,
1430 VTIME_SYS,
1431 } vtime_snap_whence;
d99ca3b9 1432#endif
1da177e4 1433 unsigned long nvcsw, nivcsw; /* context switch counts */
ccbf62d8 1434 u64 start_time; /* monotonic time in nsec */
57e0be04 1435 u64 real_start_time; /* boot based time in nsec */
1da177e4
LT
1436/* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
1437 unsigned long min_flt, maj_flt;
1438
f06febc9 1439 struct task_cputime cputime_expires;
1da177e4
LT
1440 struct list_head cpu_timers[3];
1441
1442/* process credentials */
1b0ba1c9 1443 const struct cred __rcu *real_cred; /* objective and real subjective task
3b11a1de 1444 * credentials (COW) */
1b0ba1c9 1445 const struct cred __rcu *cred; /* effective (overridable) subjective task
3b11a1de 1446 * credentials (COW) */
36772092
PBG
1447 char comm[TASK_COMM_LEN]; /* executable name excluding path
1448 - access with [gs]et_task_comm (which lock
1449 it with task_lock())
221af7f8 1450 - initialized normally by setup_new_exec */
1da177e4
LT
1451/* file system info */
1452 int link_count, total_link_count;
3d5b6fcc 1453#ifdef CONFIG_SYSVIPC
1da177e4
LT
1454/* ipc stuff */
1455 struct sysv_sem sysvsem;
ab602f79 1456 struct sysv_shm sysvshm;
3d5b6fcc 1457#endif
e162b39a 1458#ifdef CONFIG_DETECT_HUNG_TASK
82a1fcb9 1459/* hung task detection */
82a1fcb9
IM
1460 unsigned long last_switch_count;
1461#endif
1da177e4
LT
1462/* CPU-specific state of this task */
1463 struct thread_struct thread;
1464/* filesystem information */
1465 struct fs_struct *fs;
1466/* open file information */
1467 struct files_struct *files;
1651e14e 1468/* namespaces */
ab516013 1469 struct nsproxy *nsproxy;
1da177e4
LT
1470/* signal handlers */
1471 struct signal_struct *signal;
1472 struct sighand_struct *sighand;
1473
1474 sigset_t blocked, real_blocked;
f3de272b 1475 sigset_t saved_sigmask; /* restored if set_restore_sigmask() was used */
1da177e4
LT
1476 struct sigpending pending;
1477
1478 unsigned long sas_ss_sp;
1479 size_t sas_ss_size;
1480 int (*notifier)(void *priv);
1481 void *notifier_data;
1482 sigset_t *notifier_mask;
67d12145 1483 struct callback_head *task_works;
e73f8959 1484
1da177e4 1485 struct audit_context *audit_context;
bfef93a5 1486#ifdef CONFIG_AUDITSYSCALL
e1760bd5 1487 kuid_t loginuid;
4746ec5b 1488 unsigned int sessionid;
bfef93a5 1489#endif
932ecebb 1490 struct seccomp seccomp;
1da177e4
LT
1491
1492/* Thread group tracking */
1493 u32 parent_exec_id;
1494 u32 self_exec_id;
58568d2a
MX
1495/* Protection of (de-)allocation: mm, files, fs, tty, keyrings, mems_allowed,
1496 * mempolicy */
1da177e4 1497 spinlock_t alloc_lock;
1da177e4 1498
b29739f9 1499 /* Protection of the PI data structures: */
1d615482 1500 raw_spinlock_t pi_lock;
b29739f9 1501
23f78d4a
IM
1502#ifdef CONFIG_RT_MUTEXES
1503 /* PI waiters blocked on a rt_mutex held by this task */
fb00aca4
PZ
1504 struct rb_root pi_waiters;
1505 struct rb_node *pi_waiters_leftmost;
23f78d4a
IM
1506 /* Deadlock detection and priority inheritance handling */
1507 struct rt_mutex_waiter *pi_blocked_on;
23f78d4a
IM
1508#endif
1509
408894ee
IM
1510#ifdef CONFIG_DEBUG_MUTEXES
1511 /* mutex deadlock detection */
1512 struct mutex_waiter *blocked_on;
1513#endif
de30a2b3
IM
1514#ifdef CONFIG_TRACE_IRQFLAGS
1515 unsigned int irq_events;
de30a2b3 1516 unsigned long hardirq_enable_ip;
de30a2b3 1517 unsigned long hardirq_disable_ip;
fa1452e8 1518 unsigned int hardirq_enable_event;
de30a2b3 1519 unsigned int hardirq_disable_event;
fa1452e8
HS
1520 int hardirqs_enabled;
1521 int hardirq_context;
de30a2b3 1522 unsigned long softirq_disable_ip;
de30a2b3 1523 unsigned long softirq_enable_ip;
fa1452e8 1524 unsigned int softirq_disable_event;
de30a2b3 1525 unsigned int softirq_enable_event;
fa1452e8 1526 int softirqs_enabled;
de30a2b3
IM
1527 int softirq_context;
1528#endif
fbb9ce95 1529#ifdef CONFIG_LOCKDEP
bdb9441e 1530# define MAX_LOCK_DEPTH 48UL
fbb9ce95
IM
1531 u64 curr_chain_key;
1532 int lockdep_depth;
fbb9ce95 1533 unsigned int lockdep_recursion;
c7aceaba 1534 struct held_lock held_locks[MAX_LOCK_DEPTH];
cf40bd16 1535 gfp_t lockdep_reclaim_gfp;
fbb9ce95 1536#endif
408894ee 1537
1da177e4
LT
1538/* journalling filesystem info */
1539 void *journal_info;
1540
d89d8796 1541/* stacked block device info */
bddd87c7 1542 struct bio_list *bio_list;
d89d8796 1543
73c10101
JA
1544#ifdef CONFIG_BLOCK
1545/* stack plugging */
1546 struct blk_plug *plug;
1547#endif
1548
1da177e4
LT
1549/* VM state */
1550 struct reclaim_state *reclaim_state;
1551
1da177e4
LT
1552 struct backing_dev_info *backing_dev_info;
1553
1554 struct io_context *io_context;
1555
1556 unsigned long ptrace_message;
1557 siginfo_t *last_siginfo; /* For ptrace use. */
7c3ab738 1558 struct task_io_accounting ioac;
8f0ab514 1559#if defined(CONFIG_TASK_XACCT)
1da177e4
LT
1560 u64 acct_rss_mem1; /* accumulated rss usage */
1561 u64 acct_vm_mem1; /* accumulated virtual memory usage */
49b5cf34 1562 cputime_t acct_timexpd; /* stime + utime since last update */
1da177e4
LT
1563#endif
1564#ifdef CONFIG_CPUSETS
58568d2a 1565 nodemask_t mems_allowed; /* Protected by alloc_lock */
cc9a6c87 1566 seqcount_t mems_allowed_seq; /* Seqence no to catch updates */
825a46af 1567 int cpuset_mem_spread_rotor;
6adef3eb 1568 int cpuset_slab_spread_rotor;
1da177e4 1569#endif
ddbcc7e8 1570#ifdef CONFIG_CGROUPS
817929ec 1571 /* Control Group info protected by css_set_lock */
2c392b8c 1572 struct css_set __rcu *cgroups;
817929ec
PM
1573 /* cg_list protected by css_set_lock and tsk->alloc_lock */
1574 struct list_head cg_list;
ddbcc7e8 1575#endif
42b2dd0a 1576#ifdef CONFIG_FUTEX
0771dfef 1577 struct robust_list_head __user *robust_list;
34f192c6
IM
1578#ifdef CONFIG_COMPAT
1579 struct compat_robust_list_head __user *compat_robust_list;
1580#endif
c87e2837
IM
1581 struct list_head pi_state_list;
1582 struct futex_pi_state *pi_state_cache;
c7aceaba 1583#endif
cdd6c482 1584#ifdef CONFIG_PERF_EVENTS
8dc85d54 1585 struct perf_event_context *perf_event_ctxp[perf_nr_task_contexts];
cdd6c482
IM
1586 struct mutex perf_event_mutex;
1587 struct list_head perf_event_list;
a63eaf34 1588#endif
8f47b187
TG
1589#ifdef CONFIG_DEBUG_PREEMPT
1590 unsigned long preempt_disable_ip;
1591#endif
c7aceaba 1592#ifdef CONFIG_NUMA
58568d2a 1593 struct mempolicy *mempolicy; /* Protected by alloc_lock */
c7aceaba 1594 short il_next;
207205a2 1595 short pref_node_fork;
42b2dd0a 1596#endif
cbee9f88
PZ
1597#ifdef CONFIG_NUMA_BALANCING
1598 int numa_scan_seq;
cbee9f88 1599 unsigned int numa_scan_period;
598f0ec0 1600 unsigned int numa_scan_period_max;
de1c9ce6 1601 int numa_preferred_nid;
6b9a7460 1602 unsigned long numa_migrate_retry;
cbee9f88 1603 u64 node_stamp; /* migration stamp */
7e2703e6
RR
1604 u64 last_task_numa_placement;
1605 u64 last_sum_exec_runtime;
cbee9f88 1606 struct callback_head numa_work;
f809ca9a 1607
8c8a743c
PZ
1608 struct list_head numa_entry;
1609 struct numa_group *numa_group;
1610
745d6147 1611 /*
44dba3d5
IM
1612 * numa_faults is an array split into four regions:
1613 * faults_memory, faults_cpu, faults_memory_buffer, faults_cpu_buffer
1614 * in this precise order.
1615 *
1616 * faults_memory: Exponential decaying average of faults on a per-node
1617 * basis. Scheduling placement decisions are made based on these
1618 * counts. The values remain static for the duration of a PTE scan.
1619 * faults_cpu: Track the nodes the process was running on when a NUMA
1620 * hinting fault was incurred.
1621 * faults_memory_buffer and faults_cpu_buffer: Record faults per node
1622 * during the current scan window. When the scan completes, the counts
1623 * in faults_memory and faults_cpu decay and these values are copied.
745d6147 1624 */
44dba3d5 1625 unsigned long *numa_faults;
83e1d2cd 1626 unsigned long total_numa_faults;
745d6147 1627
04bb2f94
RR
1628 /*
1629 * numa_faults_locality tracks if faults recorded during the last
1630 * scan window were remote/local. The task scan period is adapted
1631 * based on the locality of the faults with different weights
1632 * depending on whether they were shared or private faults
1633 */
1634 unsigned long numa_faults_locality[2];
1635
b32e86b4 1636 unsigned long numa_pages_migrated;
cbee9f88
PZ
1637#endif /* CONFIG_NUMA_BALANCING */
1638
e56d0903 1639 struct rcu_head rcu;
b92ce558
JA
1640
1641 /*
1642 * cache last used pipe for splice
1643 */
1644 struct pipe_inode_info *splice_pipe;
5640f768
ED
1645
1646 struct page_frag task_frag;
1647
ca74e92b
SN
1648#ifdef CONFIG_TASK_DELAY_ACCT
1649 struct task_delay_info *delays;
f4f154fd
AM
1650#endif
1651#ifdef CONFIG_FAULT_INJECTION
1652 int make_it_fail;
ca74e92b 1653#endif
9d823e8f
WF
1654 /*
1655 * when (nr_dirtied >= nr_dirtied_pause), it's time to call
1656 * balance_dirty_pages() for some dirty throttling pause
1657 */
1658 int nr_dirtied;
1659 int nr_dirtied_pause;
83712358 1660 unsigned long dirty_paused_when; /* start of a write-and-pause period */
9d823e8f 1661
9745512c
AV
1662#ifdef CONFIG_LATENCYTOP
1663 int latency_record_count;
1664 struct latency_record latency_record[LT_SAVECOUNT];
1665#endif
6976675d
AV
1666 /*
1667 * time slack values; these are used to round up poll() and
1668 * select() etc timeout values. These are in nanoseconds.
1669 */
1670 unsigned long timer_slack_ns;
1671 unsigned long default_timer_slack_ns;
f8d570a4 1672
0b24becc
AR
1673#ifdef CONFIG_KASAN
1674 unsigned int kasan_depth;
1675#endif
fb52607a 1676#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3ad2f3fb 1677 /* Index of current stored address in ret_stack */
f201ae23
FW
1678 int curr_ret_stack;
1679 /* Stack of return addresses for return function tracing */
1680 struct ftrace_ret_stack *ret_stack;
8aef2d28
SR
1681 /* time stamp for last schedule */
1682 unsigned long long ftrace_timestamp;
f201ae23
FW
1683 /*
1684 * Number of functions that haven't been traced
1685 * because of depth overrun.
1686 */
1687 atomic_t trace_overrun;
380c4b14
FW
1688 /* Pause for the tracing */
1689 atomic_t tracing_graph_pause;
f201ae23 1690#endif
ea4e2bc4
SR
1691#ifdef CONFIG_TRACING
1692 /* state flags for use by tracers */
1693 unsigned long trace;
b1cff0ad 1694 /* bitmask and counter of trace recursion */
261842b7
SR
1695 unsigned long trace_recursion;
1696#endif /* CONFIG_TRACING */
6f185c29 1697#ifdef CONFIG_MEMCG
519e5247 1698 struct memcg_oom_info {
49426420
JW
1699 struct mem_cgroup *memcg;
1700 gfp_t gfp_mask;
1701 int order;
519e5247
JW
1702 unsigned int may_oom:1;
1703 } memcg_oom;
569b846d 1704#endif
0326f5a9
SD
1705#ifdef CONFIG_UPROBES
1706 struct uprobe_task *utask;
0326f5a9 1707#endif
cafe5635
KO
1708#if defined(CONFIG_BCACHE) || defined(CONFIG_BCACHE_MODULE)
1709 unsigned int sequential_io;
1710 unsigned int sequential_io_avg;
1711#endif
8eb23b9f
PZ
1712#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
1713 unsigned long task_state_change;
1714#endif
1da177e4
LT
1715};
1716
76e6eee0 1717/* Future-safe accessor for struct task_struct's cpus_allowed. */
a4636818 1718#define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
76e6eee0 1719
6688cc05
PZ
1720#define TNF_MIGRATED 0x01
1721#define TNF_NO_GROUP 0x02
dabe1d99 1722#define TNF_SHARED 0x04
04bb2f94 1723#define TNF_FAULT_LOCAL 0x08
6688cc05 1724
cbee9f88 1725#ifdef CONFIG_NUMA_BALANCING
6688cc05 1726extern void task_numa_fault(int last_node, int node, int pages, int flags);
e29cf08b 1727extern pid_t task_numa_group_id(struct task_struct *p);
1a687c2e 1728extern void set_numabalancing_state(bool enabled);
82727018 1729extern void task_numa_free(struct task_struct *p);
10f39042
RR
1730extern bool should_numa_migrate_memory(struct task_struct *p, struct page *page,
1731 int src_nid, int dst_cpu);
cbee9f88 1732#else
ac8e895b 1733static inline void task_numa_fault(int last_node, int node, int pages,
6688cc05 1734 int flags)
cbee9f88
PZ
1735{
1736}
e29cf08b
MG
1737static inline pid_t task_numa_group_id(struct task_struct *p)
1738{
1739 return 0;
1740}
1a687c2e
MG
1741static inline void set_numabalancing_state(bool enabled)
1742{
1743}
82727018
RR
1744static inline void task_numa_free(struct task_struct *p)
1745{
1746}
10f39042
RR
1747static inline bool should_numa_migrate_memory(struct task_struct *p,
1748 struct page *page, int src_nid, int dst_cpu)
1749{
1750 return true;
1751}
cbee9f88
PZ
1752#endif
1753
e868171a 1754static inline struct pid *task_pid(struct task_struct *task)
22c935f4
EB
1755{
1756 return task->pids[PIDTYPE_PID].pid;
1757}
1758
e868171a 1759static inline struct pid *task_tgid(struct task_struct *task)
22c935f4
EB
1760{
1761 return task->group_leader->pids[PIDTYPE_PID].pid;
1762}
1763
6dda81f4
ON
1764/*
1765 * Without tasklist or rcu lock it is not safe to dereference
1766 * the result of task_pgrp/task_session even if task == current,
1767 * we can race with another thread doing sys_setsid/sys_setpgid.
1768 */
e868171a 1769static inline struct pid *task_pgrp(struct task_struct *task)
22c935f4
EB
1770{
1771 return task->group_leader->pids[PIDTYPE_PGID].pid;
1772}
1773
e868171a 1774static inline struct pid *task_session(struct task_struct *task)
22c935f4
EB
1775{
1776 return task->group_leader->pids[PIDTYPE_SID].pid;
1777}
1778
7af57294
PE
1779struct pid_namespace;
1780
1781/*
1782 * the helpers to get the task's different pids as they are seen
1783 * from various namespaces
1784 *
1785 * task_xid_nr() : global id, i.e. the id seen from the init namespace;
44c4e1b2
EB
1786 * task_xid_vnr() : virtual id, i.e. the id seen from the pid namespace of
1787 * current.
7af57294
PE
1788 * task_xid_nr_ns() : id seen from the ns specified;
1789 *
1790 * set_task_vxid() : assigns a virtual id to a task;
1791 *
7af57294
PE
1792 * see also pid_nr() etc in include/linux/pid.h
1793 */
52ee2dfd
ON
1794pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
1795 struct pid_namespace *ns);
7af57294 1796
e868171a 1797static inline pid_t task_pid_nr(struct task_struct *tsk)
7af57294
PE
1798{
1799 return tsk->pid;
1800}
1801
52ee2dfd
ON
1802static inline pid_t task_pid_nr_ns(struct task_struct *tsk,
1803 struct pid_namespace *ns)
1804{
1805 return __task_pid_nr_ns(tsk, PIDTYPE_PID, ns);
1806}
7af57294
PE
1807
1808static inline pid_t task_pid_vnr(struct task_struct *tsk)
1809{
52ee2dfd 1810 return __task_pid_nr_ns(tsk, PIDTYPE_PID, NULL);
7af57294
PE
1811}
1812
1813
e868171a 1814static inline pid_t task_tgid_nr(struct task_struct *tsk)
7af57294
PE
1815{
1816 return tsk->tgid;
1817}
1818
2f2a3a46 1819pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns);
7af57294
PE
1820
1821static inline pid_t task_tgid_vnr(struct task_struct *tsk)
1822{
1823 return pid_vnr(task_tgid(tsk));
1824}
1825
1826
80e0b6e8 1827static inline int pid_alive(const struct task_struct *p);
ad36d282
RGB
1828static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns)
1829{
1830 pid_t pid = 0;
1831
1832 rcu_read_lock();
1833 if (pid_alive(tsk))
1834 pid = task_tgid_nr_ns(rcu_dereference(tsk->real_parent), ns);
1835 rcu_read_unlock();
1836
1837 return pid;
1838}
1839
1840static inline pid_t task_ppid_nr(const struct task_struct *tsk)
1841{
1842 return task_ppid_nr_ns(tsk, &init_pid_ns);
1843}
1844
52ee2dfd
ON
1845static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk,
1846 struct pid_namespace *ns)
7af57294 1847{
52ee2dfd 1848 return __task_pid_nr_ns(tsk, PIDTYPE_PGID, ns);
7af57294
PE
1849}
1850
7af57294
PE
1851static inline pid_t task_pgrp_vnr(struct task_struct *tsk)
1852{
52ee2dfd 1853 return __task_pid_nr_ns(tsk, PIDTYPE_PGID, NULL);
7af57294
PE
1854}
1855
1856
52ee2dfd
ON
1857static inline pid_t task_session_nr_ns(struct task_struct *tsk,
1858 struct pid_namespace *ns)
7af57294 1859{
52ee2dfd 1860 return __task_pid_nr_ns(tsk, PIDTYPE_SID, ns);
7af57294
PE
1861}
1862
7af57294
PE
1863static inline pid_t task_session_vnr(struct task_struct *tsk)
1864{
52ee2dfd 1865 return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL);
7af57294
PE
1866}
1867
1b0f7ffd
ON
1868/* obsolete, do not use */
1869static inline pid_t task_pgrp_nr(struct task_struct *tsk)
1870{
1871 return task_pgrp_nr_ns(tsk, &init_pid_ns);
1872}
7af57294 1873
1da177e4
LT
1874/**
1875 * pid_alive - check that a task structure is not stale
1876 * @p: Task structure to be checked.
1877 *
1878 * Test if a process is not yet dead (at most zombie state)
1879 * If pid_alive fails, then pointers within the task structure
1880 * can be stale and must not be dereferenced.
e69f6186
YB
1881 *
1882 * Return: 1 if the process is alive. 0 otherwise.
1da177e4 1883 */
ad36d282 1884static inline int pid_alive(const struct task_struct *p)
1da177e4 1885{
92476d7f 1886 return p->pids[PIDTYPE_PID].pid != NULL;
1da177e4
LT
1887}
1888
f400e198 1889/**
b460cbc5 1890 * is_global_init - check if a task structure is init
3260259f
H
1891 * @tsk: Task structure to be checked.
1892 *
1893 * Check if a task structure is the first user space task the kernel created.
e69f6186
YB
1894 *
1895 * Return: 1 if the task structure is init. 0 otherwise.
b460cbc5 1896 */
e868171a 1897static inline int is_global_init(struct task_struct *tsk)
b461cc03
PE
1898{
1899 return tsk->pid == 1;
1900}
b460cbc5 1901
9ec52099
CLG
1902extern struct pid *cad_pid;
1903
1da177e4 1904extern void free_task(struct task_struct *tsk);
1da177e4 1905#define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
e56d0903 1906
158d9ebd 1907extern void __put_task_struct(struct task_struct *t);
e56d0903
IM
1908
1909static inline void put_task_struct(struct task_struct *t)
1910{
1911 if (atomic_dec_and_test(&t->usage))
8c7904a0 1912 __put_task_struct(t);
e56d0903 1913}
1da177e4 1914
6a61671b
FW
1915#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
1916extern void task_cputime(struct task_struct *t,
1917 cputime_t *utime, cputime_t *stime);
1918extern void task_cputime_scaled(struct task_struct *t,
1919 cputime_t *utimescaled, cputime_t *stimescaled);
1920extern cputime_t task_gtime(struct task_struct *t);
1921#else
6fac4829
FW
1922static inline void task_cputime(struct task_struct *t,
1923 cputime_t *utime, cputime_t *stime)
1924{
1925 if (utime)
1926 *utime = t->utime;
1927 if (stime)
1928 *stime = t->stime;
1929}
1930
1931static inline void task_cputime_scaled(struct task_struct *t,
1932 cputime_t *utimescaled,
1933 cputime_t *stimescaled)
1934{
1935 if (utimescaled)
1936 *utimescaled = t->utimescaled;
1937 if (stimescaled)
1938 *stimescaled = t->stimescaled;
1939}
6a61671b
FW
1940
1941static inline cputime_t task_gtime(struct task_struct *t)
1942{
1943 return t->gtime;
1944}
1945#endif
e80d0a1a
FW
1946extern void task_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st);
1947extern void thread_group_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st);
49048622 1948
1da177e4
LT
1949/*
1950 * Per process flags
1951 */
1da177e4 1952#define PF_EXITING 0x00000004 /* getting shut down */
778e9a9c 1953#define PF_EXITPIDONE 0x00000008 /* pi exit done on shut down */
94886b84 1954#define PF_VCPU 0x00000010 /* I'm a virtual CPU */
21aa9af0 1955#define PF_WQ_WORKER 0x00000020 /* I'm a workqueue worker */
1da177e4 1956#define PF_FORKNOEXEC 0x00000040 /* forked but didn't exec */
4db96cf0 1957#define PF_MCE_PROCESS 0x00000080 /* process policy on mce errors */
1da177e4
LT
1958#define PF_SUPERPRIV 0x00000100 /* used super-user privileges */
1959#define PF_DUMPCORE 0x00000200 /* dumped core */
1960#define PF_SIGNALED 0x00000400 /* killed by a signal */
1961#define PF_MEMALLOC 0x00000800 /* Allocating memory */
72fa5997 1962#define PF_NPROC_EXCEEDED 0x00001000 /* set_user noticed that RLIMIT_NPROC was exceeded */
1da177e4 1963#define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */
774a1221 1964#define PF_USED_ASYNC 0x00004000 /* used async_schedule*(), used by module init */
1da177e4
LT
1965#define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */
1966#define PF_FROZEN 0x00010000 /* frozen for system suspend */
1967#define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */
1968#define PF_KSWAPD 0x00040000 /* I am kswapd */
21caf2fc 1969#define PF_MEMALLOC_NOIO 0x00080000 /* Allocating memory without IO involved */
1da177e4 1970#define PF_LESS_THROTTLE 0x00100000 /* Throttle me less: I clean memory */
246bb0b1 1971#define PF_KTHREAD 0x00200000 /* I am a kernel thread */
b31dc66a
JA
1972#define PF_RANDOMIZE 0x00400000 /* randomize virtual address space */
1973#define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */
14a40ffc 1974#define PF_NO_SETAFFINITY 0x04000000 /* Userland is not allowed to meddle with cpus_allowed */
4db96cf0 1975#define PF_MCE_EARLY 0x08000000 /* Early kill for mce process policy */
61a87122 1976#define PF_MUTEX_TESTER 0x20000000 /* Thread belongs to the rt mutex tester */
58a69cb4 1977#define PF_FREEZER_SKIP 0x40000000 /* Freezer should not count it as freezable */
2b44c4db 1978#define PF_SUSPEND_TASK 0x80000000 /* this thread called freeze_processes and should not be frozen */
1da177e4
LT
1979
1980/*
1981 * Only the _current_ task can read/write to tsk->flags, but other
1982 * tasks can access tsk->flags in readonly mode for example
1983 * with tsk_used_math (like during threaded core dumping).
1984 * There is however an exception to this rule during ptrace
1985 * or during fork: the ptracer task is allowed to write to the
1986 * child->flags of its traced child (same goes for fork, the parent
1987 * can write to the child->flags), because we're guaranteed the
1988 * child is not running and in turn not changing child->flags
1989 * at the same time the parent does it.
1990 */
1991#define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
1992#define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
1993#define clear_used_math() clear_stopped_child_used_math(current)
1994#define set_used_math() set_stopped_child_used_math(current)
1995#define conditional_stopped_child_used_math(condition, child) \
1996 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
1997#define conditional_used_math(condition) \
1998 conditional_stopped_child_used_math(condition, current)
1999#define copy_to_stopped_child_used_math(child) \
2000 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
2001/* NOTE: this will return 0 or PF_USED_MATH, it will never return 1 */
2002#define tsk_used_math(p) ((p)->flags & PF_USED_MATH)
2003#define used_math() tsk_used_math(current)
2004
934f3072
JB
2005/* __GFP_IO isn't allowed if PF_MEMALLOC_NOIO is set in current->flags
2006 * __GFP_FS is also cleared as it implies __GFP_IO.
2007 */
21caf2fc
ML
2008static inline gfp_t memalloc_noio_flags(gfp_t flags)
2009{
2010 if (unlikely(current->flags & PF_MEMALLOC_NOIO))
934f3072 2011 flags &= ~(__GFP_IO | __GFP_FS);
21caf2fc
ML
2012 return flags;
2013}
2014
2015static inline unsigned int memalloc_noio_save(void)
2016{
2017 unsigned int flags = current->flags & PF_MEMALLOC_NOIO;
2018 current->flags |= PF_MEMALLOC_NOIO;
2019 return flags;
2020}
2021
2022static inline void memalloc_noio_restore(unsigned int flags)
2023{
2024 current->flags = (current->flags & ~PF_MEMALLOC_NOIO) | flags;
2025}
2026
1d4457f9 2027/* Per-process atomic flags. */
a2b86f77 2028#define PFA_NO_NEW_PRIVS 0 /* May not gain new privileges. */
2ad654bc
ZL
2029#define PFA_SPREAD_PAGE 1 /* Spread page cache over cpuset */
2030#define PFA_SPREAD_SLAB 2 /* Spread some slab caches over cpuset */
2031
1d4457f9 2032
e0e5070b
ZL
2033#define TASK_PFA_TEST(name, func) \
2034 static inline bool task_##func(struct task_struct *p) \
2035 { return test_bit(PFA_##name, &p->atomic_flags); }
2036#define TASK_PFA_SET(name, func) \
2037 static inline void task_set_##func(struct task_struct *p) \
2038 { set_bit(PFA_##name, &p->atomic_flags); }
2039#define TASK_PFA_CLEAR(name, func) \
2040 static inline void task_clear_##func(struct task_struct *p) \
2041 { clear_bit(PFA_##name, &p->atomic_flags); }
2042
2043TASK_PFA_TEST(NO_NEW_PRIVS, no_new_privs)
2044TASK_PFA_SET(NO_NEW_PRIVS, no_new_privs)
1d4457f9 2045
2ad654bc
ZL
2046TASK_PFA_TEST(SPREAD_PAGE, spread_page)
2047TASK_PFA_SET(SPREAD_PAGE, spread_page)
2048TASK_PFA_CLEAR(SPREAD_PAGE, spread_page)
2049
2050TASK_PFA_TEST(SPREAD_SLAB, spread_slab)
2051TASK_PFA_SET(SPREAD_SLAB, spread_slab)
2052TASK_PFA_CLEAR(SPREAD_SLAB, spread_slab)
1d4457f9 2053
e5c1902e 2054/*
a8f072c1 2055 * task->jobctl flags
e5c1902e 2056 */
a8f072c1 2057#define JOBCTL_STOP_SIGMASK 0xffff /* signr of the last group stop */
e5c1902e 2058
a8f072c1
TH
2059#define JOBCTL_STOP_DEQUEUED_BIT 16 /* stop signal dequeued */
2060#define JOBCTL_STOP_PENDING_BIT 17 /* task should stop for group stop */
2061#define JOBCTL_STOP_CONSUME_BIT 18 /* consume group stop count */
73ddff2b 2062#define JOBCTL_TRAP_STOP_BIT 19 /* trap for STOP */
fb1d910c 2063#define JOBCTL_TRAP_NOTIFY_BIT 20 /* trap for NOTIFY */
a8f072c1 2064#define JOBCTL_TRAPPING_BIT 21 /* switching to TRACED */
544b2c91 2065#define JOBCTL_LISTENING_BIT 22 /* ptracer is listening for events */
a8f072c1
TH
2066
2067#define JOBCTL_STOP_DEQUEUED (1 << JOBCTL_STOP_DEQUEUED_BIT)
2068#define JOBCTL_STOP_PENDING (1 << JOBCTL_STOP_PENDING_BIT)
2069#define JOBCTL_STOP_CONSUME (1 << JOBCTL_STOP_CONSUME_BIT)
73ddff2b 2070#define JOBCTL_TRAP_STOP (1 << JOBCTL_TRAP_STOP_BIT)
fb1d910c 2071#define JOBCTL_TRAP_NOTIFY (1 << JOBCTL_TRAP_NOTIFY_BIT)
a8f072c1 2072#define JOBCTL_TRAPPING (1 << JOBCTL_TRAPPING_BIT)
544b2c91 2073#define JOBCTL_LISTENING (1 << JOBCTL_LISTENING_BIT)
a8f072c1 2074
fb1d910c 2075#define JOBCTL_TRAP_MASK (JOBCTL_TRAP_STOP | JOBCTL_TRAP_NOTIFY)
73ddff2b 2076#define JOBCTL_PENDING_MASK (JOBCTL_STOP_PENDING | JOBCTL_TRAP_MASK)
3759a0d9 2077
7dd3db54
TH
2078extern bool task_set_jobctl_pending(struct task_struct *task,
2079 unsigned int mask);
73ddff2b 2080extern void task_clear_jobctl_trapping(struct task_struct *task);
3759a0d9
TH
2081extern void task_clear_jobctl_pending(struct task_struct *task,
2082 unsigned int mask);
39efa3ef 2083
f41d911f
PM
2084static inline void rcu_copy_process(struct task_struct *p)
2085{
8315f422 2086#ifdef CONFIG_PREEMPT_RCU
f41d911f 2087 p->rcu_read_lock_nesting = 0;
1d082fd0 2088 p->rcu_read_unlock_special.s = 0;
dd5d19ba 2089 p->rcu_blocked_node = NULL;
f41d911f 2090 INIT_LIST_HEAD(&p->rcu_node_entry);
8315f422
PM
2091#endif /* #ifdef CONFIG_PREEMPT_RCU */
2092#ifdef CONFIG_TASKS_RCU
2093 p->rcu_tasks_holdout = false;
2094 INIT_LIST_HEAD(&p->rcu_tasks_holdout_list);
176f8f7a 2095 p->rcu_tasks_idle_cpu = -1;
8315f422 2096#endif /* #ifdef CONFIG_TASKS_RCU */
f41d911f
PM
2097}
2098
907aed48
MG
2099static inline void tsk_restore_flags(struct task_struct *task,
2100 unsigned long orig_flags, unsigned long flags)
2101{
2102 task->flags &= ~flags;
2103 task->flags |= orig_flags & flags;
2104}
2105
f82f8042
JL
2106extern int cpuset_cpumask_can_shrink(const struct cpumask *cur,
2107 const struct cpumask *trial);
7f51412a
JL
2108extern int task_can_attach(struct task_struct *p,
2109 const struct cpumask *cs_cpus_allowed);
1da177e4 2110#ifdef CONFIG_SMP
1e1b6c51
KM
2111extern void do_set_cpus_allowed(struct task_struct *p,
2112 const struct cpumask *new_mask);
2113
cd8ba7cd 2114extern int set_cpus_allowed_ptr(struct task_struct *p,
96f874e2 2115 const struct cpumask *new_mask);
1da177e4 2116#else
1e1b6c51
KM
2117static inline void do_set_cpus_allowed(struct task_struct *p,
2118 const struct cpumask *new_mask)
2119{
2120}
cd8ba7cd 2121static inline int set_cpus_allowed_ptr(struct task_struct *p,
96f874e2 2122 const struct cpumask *new_mask)
1da177e4 2123{
96f874e2 2124 if (!cpumask_test_cpu(0, new_mask))
1da177e4
LT
2125 return -EINVAL;
2126 return 0;
2127}
2128#endif
e0ad9556 2129
3451d024 2130#ifdef CONFIG_NO_HZ_COMMON
5167e8d5
PZ
2131void calc_load_enter_idle(void);
2132void calc_load_exit_idle(void);
2133#else
2134static inline void calc_load_enter_idle(void) { }
2135static inline void calc_load_exit_idle(void) { }
3451d024 2136#endif /* CONFIG_NO_HZ_COMMON */
5167e8d5 2137
e0ad9556 2138#ifndef CONFIG_CPUMASK_OFFSTACK
cd8ba7cd
MT
2139static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
2140{
2141 return set_cpus_allowed_ptr(p, &new_mask);
2142}
e0ad9556 2143#endif
1da177e4 2144
b342501c 2145/*
c676329a
PZ
2146 * Do not use outside of architecture code which knows its limitations.
2147 *
2148 * sched_clock() has no promise of monotonicity or bounded drift between
2149 * CPUs, use (which you should not) requires disabling IRQs.
2150 *
2151 * Please use one of the three interfaces below.
b342501c 2152 */
1bbfa6f2 2153extern unsigned long long notrace sched_clock(void);
c676329a 2154/*
489a71b0 2155 * See the comment in kernel/sched/clock.c
c676329a
PZ
2156 */
2157extern u64 cpu_clock(int cpu);
2158extern u64 local_clock(void);
545a2bf7 2159extern u64 running_clock(void);
c676329a
PZ
2160extern u64 sched_clock_cpu(int cpu);
2161
e436d800 2162
c1955a3d 2163extern void sched_clock_init(void);
3e51f33f 2164
c1955a3d 2165#ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
3e51f33f
PZ
2166static inline void sched_clock_tick(void)
2167{
2168}
2169
2170static inline void sched_clock_idle_sleep_event(void)
2171{
2172}
2173
2174static inline void sched_clock_idle_wakeup_event(u64 delta_ns)
2175{
2176}
2177#else
c676329a
PZ
2178/*
2179 * Architectures can set this to 1 if they have specified
2180 * CONFIG_HAVE_UNSTABLE_SCHED_CLOCK in their arch Kconfig,
2181 * but then during bootup it turns out that sched_clock()
2182 * is reliable after all:
2183 */
35af99e6
PZ
2184extern int sched_clock_stable(void);
2185extern void set_sched_clock_stable(void);
2186extern void clear_sched_clock_stable(void);
c676329a 2187
3e51f33f
PZ
2188extern void sched_clock_tick(void);
2189extern void sched_clock_idle_sleep_event(void);
2190extern void sched_clock_idle_wakeup_event(u64 delta_ns);
2191#endif
2192
b52bfee4
VP
2193#ifdef CONFIG_IRQ_TIME_ACCOUNTING
2194/*
2195 * An i/f to runtime opt-in for irq time accounting based off of sched_clock.
2196 * The reason for this explicit opt-in is not to have perf penalty with
2197 * slow sched_clocks.
2198 */
2199extern void enable_sched_clock_irqtime(void);
2200extern void disable_sched_clock_irqtime(void);
2201#else
2202static inline void enable_sched_clock_irqtime(void) {}
2203static inline void disable_sched_clock_irqtime(void) {}
2204#endif
2205
36c8b586 2206extern unsigned long long
41b86e9c 2207task_sched_runtime(struct task_struct *task);
1da177e4
LT
2208
2209/* sched_exec is called by processes performing an exec */
2210#ifdef CONFIG_SMP
2211extern void sched_exec(void);
2212#else
2213#define sched_exec() {}
2214#endif
2215
2aa44d05
IM
2216extern void sched_clock_idle_sleep_event(void);
2217extern void sched_clock_idle_wakeup_event(u64 delta_ns);
bb29ab26 2218
1da177e4
LT
2219#ifdef CONFIG_HOTPLUG_CPU
2220extern void idle_task_exit(void);
2221#else
2222static inline void idle_task_exit(void) {}
2223#endif
2224
3451d024 2225#if defined(CONFIG_NO_HZ_COMMON) && defined(CONFIG_SMP)
1c20091e 2226extern void wake_up_nohz_cpu(int cpu);
06d8308c 2227#else
1c20091e 2228static inline void wake_up_nohz_cpu(int cpu) { }
06d8308c
TG
2229#endif
2230
ce831b38
FW
2231#ifdef CONFIG_NO_HZ_FULL
2232extern bool sched_can_stop_tick(void);
265f22a9 2233extern u64 scheduler_tick_max_deferment(void);
ce831b38
FW
2234#else
2235static inline bool sched_can_stop_tick(void) { return false; }
06d8308c
TG
2236#endif
2237
5091faa4 2238#ifdef CONFIG_SCHED_AUTOGROUP
5091faa4
MG
2239extern void sched_autogroup_create_attach(struct task_struct *p);
2240extern void sched_autogroup_detach(struct task_struct *p);
2241extern void sched_autogroup_fork(struct signal_struct *sig);
2242extern void sched_autogroup_exit(struct signal_struct *sig);
2243#ifdef CONFIG_PROC_FS
2244extern void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m);
2e5b5b3a 2245extern int proc_sched_autogroup_set_nice(struct task_struct *p, int nice);
5091faa4
MG
2246#endif
2247#else
2248static inline void sched_autogroup_create_attach(struct task_struct *p) { }
2249static inline void sched_autogroup_detach(struct task_struct *p) { }
2250static inline void sched_autogroup_fork(struct signal_struct *sig) { }
2251static inline void sched_autogroup_exit(struct signal_struct *sig) { }
2252#endif
2253
fa93384f 2254extern int yield_to(struct task_struct *p, bool preempt);
36c8b586
IM
2255extern void set_user_nice(struct task_struct *p, long nice);
2256extern int task_prio(const struct task_struct *p);
d0ea0268
DY
2257/**
2258 * task_nice - return the nice value of a given task.
2259 * @p: the task in question.
2260 *
2261 * Return: The nice value [ -20 ... 0 ... 19 ].
2262 */
2263static inline int task_nice(const struct task_struct *p)
2264{
2265 return PRIO_TO_NICE((p)->static_prio);
2266}
36c8b586
IM
2267extern int can_nice(const struct task_struct *p, const int nice);
2268extern int task_curr(const struct task_struct *p);
1da177e4 2269extern int idle_cpu(int cpu);
fe7de49f
KM
2270extern int sched_setscheduler(struct task_struct *, int,
2271 const struct sched_param *);
961ccddd 2272extern int sched_setscheduler_nocheck(struct task_struct *, int,
fe7de49f 2273 const struct sched_param *);
d50dde5a
DF
2274extern int sched_setattr(struct task_struct *,
2275 const struct sched_attr *);
36c8b586 2276extern struct task_struct *idle_task(int cpu);
c4f30608
PM
2277/**
2278 * is_idle_task - is the specified task an idle task?
fa757281 2279 * @p: the task in question.
e69f6186
YB
2280 *
2281 * Return: 1 if @p is an idle task. 0 otherwise.
c4f30608 2282 */
7061ca3b 2283static inline bool is_idle_task(const struct task_struct *p)
c4f30608
PM
2284{
2285 return p->pid == 0;
2286}
36c8b586
IM
2287extern struct task_struct *curr_task(int cpu);
2288extern void set_curr_task(int cpu, struct task_struct *p);
1da177e4
LT
2289
2290void yield(void);
2291
2292/*
2293 * The default (Linux) execution domain.
2294 */
2295extern struct exec_domain default_exec_domain;
2296
2297union thread_union {
2298 struct thread_info thread_info;
2299 unsigned long stack[THREAD_SIZE/sizeof(long)];
2300};
2301
2302#ifndef __HAVE_ARCH_KSTACK_END
2303static inline int kstack_end(void *addr)
2304{
2305 /* Reliable end of stack detection:
2306 * Some APM bios versions misalign the stack
2307 */
2308 return !(((unsigned long)addr+sizeof(void*)-1) & (THREAD_SIZE-sizeof(void*)));
2309}
2310#endif
2311
2312extern union thread_union init_thread_union;
2313extern struct task_struct init_task;
2314
2315extern struct mm_struct init_mm;
2316
198fe21b
PE
2317extern struct pid_namespace init_pid_ns;
2318
2319/*
2320 * find a task by one of its numerical ids
2321 *
198fe21b
PE
2322 * find_task_by_pid_ns():
2323 * finds a task by its pid in the specified namespace
228ebcbe
PE
2324 * find_task_by_vpid():
2325 * finds a task by its virtual pid
198fe21b 2326 *
e49859e7 2327 * see also find_vpid() etc in include/linux/pid.h
198fe21b
PE
2328 */
2329
228ebcbe
PE
2330extern struct task_struct *find_task_by_vpid(pid_t nr);
2331extern struct task_struct *find_task_by_pid_ns(pid_t nr,
2332 struct pid_namespace *ns);
198fe21b 2333
1da177e4 2334/* per-UID process charging. */
7b44ab97 2335extern struct user_struct * alloc_uid(kuid_t);
1da177e4
LT
2336static inline struct user_struct *get_uid(struct user_struct *u)
2337{
2338 atomic_inc(&u->__count);
2339 return u;
2340}
2341extern void free_uid(struct user_struct *);
1da177e4
LT
2342
2343#include <asm/current.h>
2344
f0af911a 2345extern void xtime_update(unsigned long ticks);
1da177e4 2346
b3c97528
HH
2347extern int wake_up_state(struct task_struct *tsk, unsigned int state);
2348extern int wake_up_process(struct task_struct *tsk);
3e51e3ed 2349extern void wake_up_new_task(struct task_struct *tsk);
1da177e4
LT
2350#ifdef CONFIG_SMP
2351 extern void kick_process(struct task_struct *tsk);
2352#else
2353 static inline void kick_process(struct task_struct *tsk) { }
2354#endif
aab03e05 2355extern int sched_fork(unsigned long clone_flags, struct task_struct *p);
ad46c2c4 2356extern void sched_dead(struct task_struct *p);
1da177e4 2357
1da177e4
LT
2358extern void proc_caches_init(void);
2359extern void flush_signals(struct task_struct *);
3bcac026 2360extern void __flush_signals(struct task_struct *);
10ab825b 2361extern void ignore_signals(struct task_struct *);
1da177e4
LT
2362extern void flush_signal_handlers(struct task_struct *, int force_default);
2363extern int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info);
2364
2365static inline int dequeue_signal_lock(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
2366{
2367 unsigned long flags;
2368 int ret;
2369
2370 spin_lock_irqsave(&tsk->sighand->siglock, flags);
2371 ret = dequeue_signal(tsk, mask, info);
2372 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
2373
2374 return ret;
53c8f9f1 2375}
1da177e4
LT
2376
2377extern void block_all_signals(int (*notifier)(void *priv), void *priv,
2378 sigset_t *mask);
2379extern void unblock_all_signals(void);
2380extern void release_task(struct task_struct * p);
2381extern int send_sig_info(int, struct siginfo *, struct task_struct *);
1da177e4
LT
2382extern int force_sigsegv(int, struct task_struct *);
2383extern int force_sig_info(int, struct siginfo *, struct task_struct *);
c4b92fc1 2384extern int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp);
c4b92fc1 2385extern int kill_pid_info(int sig, struct siginfo *info, struct pid *pid);
d178bc3a
SH
2386extern int kill_pid_info_as_cred(int, struct siginfo *, struct pid *,
2387 const struct cred *, u32);
c4b92fc1
EB
2388extern int kill_pgrp(struct pid *pid, int sig, int priv);
2389extern int kill_pid(struct pid *pid, int sig, int priv);
c3de4b38 2390extern int kill_proc_info(int, struct siginfo *, pid_t);
86773473 2391extern __must_check bool do_notify_parent(struct task_struct *, int);
a7f0765e 2392extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent);
1da177e4 2393extern void force_sig(int, struct task_struct *);
1da177e4 2394extern int send_sig(int, struct task_struct *, int);
09faef11 2395extern int zap_other_threads(struct task_struct *p);
1da177e4
LT
2396extern struct sigqueue *sigqueue_alloc(void);
2397extern void sigqueue_free(struct sigqueue *);
ac5c2153 2398extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group);
9ac95f2f 2399extern int do_sigaction(int, struct k_sigaction *, struct k_sigaction *);
1da177e4 2400
51a7b448
AV
2401static inline void restore_saved_sigmask(void)
2402{
2403 if (test_and_clear_restore_sigmask())
77097ae5 2404 __set_current_blocked(&current->saved_sigmask);
51a7b448
AV
2405}
2406
b7f9a11a
AV
2407static inline sigset_t *sigmask_to_save(void)
2408{
2409 sigset_t *res = &current->blocked;
2410 if (unlikely(test_restore_sigmask()))
2411 res = &current->saved_sigmask;
2412 return res;
2413}
2414
9ec52099
CLG
2415static inline int kill_cad_pid(int sig, int priv)
2416{
2417 return kill_pid(cad_pid, sig, priv);
2418}
2419
1da177e4
LT
2420/* These can be the second arg to send_sig_info/send_group_sig_info. */
2421#define SEND_SIG_NOINFO ((struct siginfo *) 0)
2422#define SEND_SIG_PRIV ((struct siginfo *) 1)
2423#define SEND_SIG_FORCED ((struct siginfo *) 2)
2424
2a855dd0
SAS
2425/*
2426 * True if we are on the alternate signal stack.
2427 */
1da177e4
LT
2428static inline int on_sig_stack(unsigned long sp)
2429{
2a855dd0
SAS
2430#ifdef CONFIG_STACK_GROWSUP
2431 return sp >= current->sas_ss_sp &&
2432 sp - current->sas_ss_sp < current->sas_ss_size;
2433#else
2434 return sp > current->sas_ss_sp &&
2435 sp - current->sas_ss_sp <= current->sas_ss_size;
2436#endif
1da177e4
LT
2437}
2438
2439static inline int sas_ss_flags(unsigned long sp)
2440{
72f15c03
RW
2441 if (!current->sas_ss_size)
2442 return SS_DISABLE;
2443
2444 return on_sig_stack(sp) ? SS_ONSTACK : 0;
1da177e4
LT
2445}
2446
5a1b98d3
AV
2447static inline unsigned long sigsp(unsigned long sp, struct ksignal *ksig)
2448{
2449 if (unlikely((ksig->ka.sa.sa_flags & SA_ONSTACK)) && ! sas_ss_flags(sp))
2450#ifdef CONFIG_STACK_GROWSUP
2451 return current->sas_ss_sp;
2452#else
2453 return current->sas_ss_sp + current->sas_ss_size;
2454#endif
2455 return sp;
2456}
2457
1da177e4
LT
2458/*
2459 * Routines for handling mm_structs
2460 */
2461extern struct mm_struct * mm_alloc(void);
2462
2463/* mmdrop drops the mm and the page tables */
b3c97528 2464extern void __mmdrop(struct mm_struct *);
1da177e4
LT
2465static inline void mmdrop(struct mm_struct * mm)
2466{
6fb43d7b 2467 if (unlikely(atomic_dec_and_test(&mm->mm_count)))
1da177e4
LT
2468 __mmdrop(mm);
2469}
2470
2471/* mmput gets rid of the mappings and all user-space */
2472extern void mmput(struct mm_struct *);
2473/* Grab a reference to a task's mm, if it is not already going away */
2474extern struct mm_struct *get_task_mm(struct task_struct *task);
8cdb878d
CY
2475/*
2476 * Grab a reference to a task's mm, if it is not already going away
2477 * and ptrace_may_access with the mode parameter passed to it
2478 * succeeds.
2479 */
2480extern struct mm_struct *mm_access(struct task_struct *task, unsigned int mode);
1da177e4
LT
2481/* Remove the current tasks stale references to the old mm_struct */
2482extern void mm_release(struct task_struct *, struct mm_struct *);
2483
6f2c55b8 2484extern int copy_thread(unsigned long, unsigned long, unsigned long,
afa86fc4 2485 struct task_struct *);
1da177e4
LT
2486extern void flush_thread(void);
2487extern void exit_thread(void);
2488
1da177e4 2489extern void exit_files(struct task_struct *);
a7e5328a 2490extern void __cleanup_sighand(struct sighand_struct *);
cbaffba1 2491
1da177e4 2492extern void exit_itimers(struct signal_struct *);
cbaffba1 2493extern void flush_itimer_signals(void);
1da177e4 2494
9402c95f 2495extern void do_group_exit(int);
1da177e4 2496
c4ad8f98 2497extern int do_execve(struct filename *,
d7627467 2498 const char __user * const __user *,
da3d4c5f 2499 const char __user * const __user *);
51f39a1f
DD
2500extern int do_execveat(int, struct filename *,
2501 const char __user * const __user *,
2502 const char __user * const __user *,
2503 int);
e80d6661 2504extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *);
36c8b586 2505struct task_struct *fork_idle(int);
2aa3a7f8 2506extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
1da177e4 2507
82b89778
AH
2508extern void __set_task_comm(struct task_struct *tsk, const char *from, bool exec);
2509static inline void set_task_comm(struct task_struct *tsk, const char *from)
2510{
2511 __set_task_comm(tsk, from, false);
2512}
59714d65 2513extern char *get_task_comm(char *to, struct task_struct *tsk);
1da177e4
LT
2514
2515#ifdef CONFIG_SMP
317f3941 2516void scheduler_ipi(void);
85ba2d86 2517extern unsigned long wait_task_inactive(struct task_struct *, long match_state);
1da177e4 2518#else
184748cc 2519static inline void scheduler_ipi(void) { }
85ba2d86
RM
2520static inline unsigned long wait_task_inactive(struct task_struct *p,
2521 long match_state)
2522{
2523 return 1;
2524}
1da177e4
LT
2525#endif
2526
05725f7e
JP
2527#define next_task(p) \
2528 list_entry_rcu((p)->tasks.next, struct task_struct, tasks)
1da177e4
LT
2529
2530#define for_each_process(p) \
2531 for (p = &init_task ; (p = next_task(p)) != &init_task ; )
2532
5bb459bb 2533extern bool current_is_single_threaded(void);
d84f4f99 2534
1da177e4
LT
2535/*
2536 * Careful: do_each_thread/while_each_thread is a double loop so
2537 * 'break' will not work as expected - use goto instead.
2538 */
2539#define do_each_thread(g, t) \
2540 for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
2541
2542#define while_each_thread(g, t) \
2543 while ((t = next_thread(t)) != g)
2544
0c740d0a
ON
2545#define __for_each_thread(signal, t) \
2546 list_for_each_entry_rcu(t, &(signal)->thread_head, thread_node)
2547
2548#define for_each_thread(p, t) \
2549 __for_each_thread((p)->signal, t)
2550
2551/* Careful: this is a double loop, 'break' won't work as expected. */
2552#define for_each_process_thread(p, t) \
2553 for_each_process(p) for_each_thread(p, t)
2554
7e49827c
ON
2555static inline int get_nr_threads(struct task_struct *tsk)
2556{
b3ac022c 2557 return tsk->signal->nr_threads;
7e49827c
ON
2558}
2559
087806b1
ON
2560static inline bool thread_group_leader(struct task_struct *p)
2561{
2562 return p->exit_signal >= 0;
2563}
1da177e4 2564
0804ef4b
EB
2565/* Do to the insanities of de_thread it is possible for a process
2566 * to have the pid of the thread group leader without actually being
2567 * the thread group leader. For iteration through the pids in proc
2568 * all we care about is that we have a task with the appropriate
2569 * pid, we don't actually care if we have the right task.
2570 */
e1403b8e 2571static inline bool has_group_leader_pid(struct task_struct *p)
0804ef4b 2572{
e1403b8e 2573 return task_pid(p) == p->signal->leader_pid;
0804ef4b
EB
2574}
2575
bac0abd6 2576static inline
e1403b8e 2577bool same_thread_group(struct task_struct *p1, struct task_struct *p2)
bac0abd6 2578{
e1403b8e 2579 return p1->signal == p2->signal;
bac0abd6
PE
2580}
2581
36c8b586 2582static inline struct task_struct *next_thread(const struct task_struct *p)
47e65328 2583{
05725f7e
JP
2584 return list_entry_rcu(p->thread_group.next,
2585 struct task_struct, thread_group);
47e65328
ON
2586}
2587
e868171a 2588static inline int thread_group_empty(struct task_struct *p)
1da177e4 2589{
47e65328 2590 return list_empty(&p->thread_group);
1da177e4
LT
2591}
2592
2593#define delay_group_leader(p) \
2594 (thread_group_leader(p) && !thread_group_empty(p))
2595
1da177e4 2596/*
260ea101 2597 * Protects ->fs, ->files, ->mm, ->group_info, ->comm, keyring
22e2c507 2598 * subscriptions and synchronises with wait4(). Also used in procfs. Also
ddbcc7e8 2599 * pins the final release of task.io_context. Also protects ->cpuset and
d68b46fe 2600 * ->cgroup.subsys[]. And ->vfork_done.
1da177e4
LT
2601 *
2602 * Nests both inside and outside of read_lock(&tasklist_lock).
2603 * It must not be nested with write_lock_irq(&tasklist_lock),
2604 * neither inside nor outside.
2605 */
2606static inline void task_lock(struct task_struct *p)
2607{
2608 spin_lock(&p->alloc_lock);
2609}
2610
2611static inline void task_unlock(struct task_struct *p)
2612{
2613 spin_unlock(&p->alloc_lock);
2614}
2615
b8ed374e 2616extern struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
f63ee72e
ON
2617 unsigned long *flags);
2618
9388dc30
AV
2619static inline struct sighand_struct *lock_task_sighand(struct task_struct *tsk,
2620 unsigned long *flags)
2621{
2622 struct sighand_struct *ret;
2623
2624 ret = __lock_task_sighand(tsk, flags);
2625 (void)__cond_lock(&tsk->sighand->siglock, ret);
2626 return ret;
2627}
b8ed374e 2628
f63ee72e
ON
2629static inline void unlock_task_sighand(struct task_struct *tsk,
2630 unsigned long *flags)
2631{
2632 spin_unlock_irqrestore(&tsk->sighand->siglock, *flags);
2633}
2634
4714d1d3 2635#ifdef CONFIG_CGROUPS
257058ae 2636static inline void threadgroup_change_begin(struct task_struct *tsk)
4714d1d3 2637{
257058ae 2638 down_read(&tsk->signal->group_rwsem);
4714d1d3 2639}
257058ae 2640static inline void threadgroup_change_end(struct task_struct *tsk)
4714d1d3 2641{
257058ae 2642 up_read(&tsk->signal->group_rwsem);
4714d1d3 2643}
77e4ef99
TH
2644
2645/**
2646 * threadgroup_lock - lock threadgroup
2647 * @tsk: member task of the threadgroup to lock
2648 *
2649 * Lock the threadgroup @tsk belongs to. No new task is allowed to enter
2650 * and member tasks aren't allowed to exit (as indicated by PF_EXITING) or
e56fb287
ON
2651 * change ->group_leader/pid. This is useful for cases where the threadgroup
2652 * needs to stay stable across blockable operations.
77e4ef99
TH
2653 *
2654 * fork and exit paths explicitly call threadgroup_change_{begin|end}() for
2655 * synchronization. While held, no new task will be added to threadgroup
2656 * and no existing live task will have its PF_EXITING set.
2657 *
e56fb287
ON
2658 * de_thread() does threadgroup_change_{begin|end}() when a non-leader
2659 * sub-thread becomes a new leader.
77e4ef99 2660 */
257058ae 2661static inline void threadgroup_lock(struct task_struct *tsk)
4714d1d3 2662{
257058ae 2663 down_write(&tsk->signal->group_rwsem);
4714d1d3 2664}
77e4ef99
TH
2665
2666/**
2667 * threadgroup_unlock - unlock threadgroup
2668 * @tsk: member task of the threadgroup to unlock
2669 *
2670 * Reverse threadgroup_lock().
2671 */
257058ae 2672static inline void threadgroup_unlock(struct task_struct *tsk)
4714d1d3 2673{
257058ae 2674 up_write(&tsk->signal->group_rwsem);
4714d1d3
BB
2675}
2676#else
257058ae
TH
2677static inline void threadgroup_change_begin(struct task_struct *tsk) {}
2678static inline void threadgroup_change_end(struct task_struct *tsk) {}
2679static inline void threadgroup_lock(struct task_struct *tsk) {}
2680static inline void threadgroup_unlock(struct task_struct *tsk) {}
4714d1d3
BB
2681#endif
2682
f037360f
AV
2683#ifndef __HAVE_THREAD_FUNCTIONS
2684
f7e4217b
RZ
2685#define task_thread_info(task) ((struct thread_info *)(task)->stack)
2686#define task_stack_page(task) ((task)->stack)
a1261f54 2687
10ebffde
AV
2688static inline void setup_thread_stack(struct task_struct *p, struct task_struct *org)
2689{
2690 *task_thread_info(p) = *task_thread_info(org);
2691 task_thread_info(p)->task = p;
2692}
2693
6a40281a
CE
2694/*
2695 * Return the address of the last usable long on the stack.
2696 *
2697 * When the stack grows down, this is just above the thread
2698 * info struct. Going any lower will corrupt the threadinfo.
2699 *
2700 * When the stack grows up, this is the highest address.
2701 * Beyond that position, we corrupt data on the next page.
2702 */
10ebffde
AV
2703static inline unsigned long *end_of_stack(struct task_struct *p)
2704{
6a40281a
CE
2705#ifdef CONFIG_STACK_GROWSUP
2706 return (unsigned long *)((unsigned long)task_thread_info(p) + THREAD_SIZE) - 1;
2707#else
f7e4217b 2708 return (unsigned long *)(task_thread_info(p) + 1);
6a40281a 2709#endif
10ebffde
AV
2710}
2711
f037360f 2712#endif
a70857e4
AT
2713#define task_stack_end_corrupted(task) \
2714 (*(end_of_stack(task)) != STACK_END_MAGIC)
f037360f 2715
8b05c7e6
FT
2716static inline int object_is_on_stack(void *obj)
2717{
2718 void *stack = task_stack_page(current);
2719
2720 return (obj >= stack) && (obj < (stack + THREAD_SIZE));
2721}
2722
8c9843e5
BH
2723extern void thread_info_cache_init(void);
2724
7c9f8861
ES
2725#ifdef CONFIG_DEBUG_STACK_USAGE
2726static inline unsigned long stack_not_used(struct task_struct *p)
2727{
2728 unsigned long *n = end_of_stack(p);
2729
2730 do { /* Skip over canary */
2731 n++;
2732 } while (!*n);
2733
2734 return (unsigned long)n - (unsigned long)end_of_stack(p);
2735}
2736#endif
d4311ff1 2737extern void set_task_stack_end_magic(struct task_struct *tsk);
7c9f8861 2738
1da177e4
LT
2739/* set thread flags in other task's structures
2740 * - see asm/thread_info.h for TIF_xxxx flags available
2741 */
2742static inline void set_tsk_thread_flag(struct task_struct *tsk, int flag)
2743{
a1261f54 2744 set_ti_thread_flag(task_thread_info(tsk), flag);
1da177e4
LT
2745}
2746
2747static inline void clear_tsk_thread_flag(struct task_struct *tsk, int flag)
2748{
a1261f54 2749 clear_ti_thread_flag(task_thread_info(tsk), flag);
1da177e4
LT
2750}
2751
2752static inline int test_and_set_tsk_thread_flag(struct task_struct *tsk, int flag)
2753{
a1261f54 2754 return test_and_set_ti_thread_flag(task_thread_info(tsk), flag);
1da177e4
LT
2755}
2756
2757static inline int test_and_clear_tsk_thread_flag(struct task_struct *tsk, int flag)
2758{
a1261f54 2759 return test_and_clear_ti_thread_flag(task_thread_info(tsk), flag);
1da177e4
LT
2760}
2761
2762static inline int test_tsk_thread_flag(struct task_struct *tsk, int flag)
2763{
a1261f54 2764 return test_ti_thread_flag(task_thread_info(tsk), flag);
1da177e4
LT
2765}
2766
2767static inline void set_tsk_need_resched(struct task_struct *tsk)
2768{
2769 set_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
2770}
2771
2772static inline void clear_tsk_need_resched(struct task_struct *tsk)
2773{
2774 clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
2775}
2776
8ae121ac
GH
2777static inline int test_tsk_need_resched(struct task_struct *tsk)
2778{
2779 return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED));
2780}
2781
690cc3ff
EB
2782static inline int restart_syscall(void)
2783{
2784 set_tsk_thread_flag(current, TIF_SIGPENDING);
2785 return -ERESTARTNOINTR;
2786}
2787
1da177e4
LT
2788static inline int signal_pending(struct task_struct *p)
2789{
2790 return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
2791}
f776d12d 2792
d9588725
RM
2793static inline int __fatal_signal_pending(struct task_struct *p)
2794{
2795 return unlikely(sigismember(&p->pending.signal, SIGKILL));
2796}
f776d12d
MW
2797
2798static inline int fatal_signal_pending(struct task_struct *p)
2799{
2800 return signal_pending(p) && __fatal_signal_pending(p);
2801}
2802
16882c1e
ON
2803static inline int signal_pending_state(long state, struct task_struct *p)
2804{
2805 if (!(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))
2806 return 0;
2807 if (!signal_pending(p))
2808 return 0;
2809
16882c1e
ON
2810 return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p);
2811}
2812
1da177e4
LT
2813/*
2814 * cond_resched() and cond_resched_lock(): latency reduction via
2815 * explicit rescheduling in places that are safe. The return
2816 * value indicates whether a reschedule was done in fact.
2817 * cond_resched_lock() will drop the spinlock before scheduling,
2818 * cond_resched_softirq() will enable bhs before scheduling.
2819 */
c3921ab7 2820extern int _cond_resched(void);
6f80bd98 2821
613afbf8 2822#define cond_resched() ({ \
3427445a 2823 ___might_sleep(__FILE__, __LINE__, 0); \
613afbf8
FW
2824 _cond_resched(); \
2825})
6f80bd98 2826
613afbf8
FW
2827extern int __cond_resched_lock(spinlock_t *lock);
2828
bdd4e85d 2829#ifdef CONFIG_PREEMPT_COUNT
716a4234 2830#define PREEMPT_LOCK_OFFSET PREEMPT_OFFSET
02b67cc3 2831#else
716a4234 2832#define PREEMPT_LOCK_OFFSET 0
02b67cc3 2833#endif
716a4234 2834
613afbf8 2835#define cond_resched_lock(lock) ({ \
3427445a 2836 ___might_sleep(__FILE__, __LINE__, PREEMPT_LOCK_OFFSET);\
613afbf8
FW
2837 __cond_resched_lock(lock); \
2838})
2839
2840extern int __cond_resched_softirq(void);
2841
75e1056f 2842#define cond_resched_softirq() ({ \
3427445a 2843 ___might_sleep(__FILE__, __LINE__, SOFTIRQ_DISABLE_OFFSET); \
75e1056f 2844 __cond_resched_softirq(); \
613afbf8 2845})
1da177e4 2846
f6f3c437
SH
2847static inline void cond_resched_rcu(void)
2848{
2849#if defined(CONFIG_DEBUG_ATOMIC_SLEEP) || !defined(CONFIG_PREEMPT_RCU)
2850 rcu_read_unlock();
2851 cond_resched();
2852 rcu_read_lock();
2853#endif
2854}
2855
1da177e4
LT
2856/*
2857 * Does a critical section need to be broken due to another
95c354fe
NP
2858 * task waiting?: (technically does not depend on CONFIG_PREEMPT,
2859 * but a general need for low latency)
1da177e4 2860 */
95c354fe 2861static inline int spin_needbreak(spinlock_t *lock)
1da177e4 2862{
95c354fe
NP
2863#ifdef CONFIG_PREEMPT
2864 return spin_is_contended(lock);
2865#else
1da177e4 2866 return 0;
95c354fe 2867#endif
1da177e4
LT
2868}
2869
ee761f62
TG
2870/*
2871 * Idle thread specific functions to determine the need_resched
69dd0f84 2872 * polling state.
ee761f62 2873 */
69dd0f84 2874#ifdef TIF_POLLING_NRFLAG
ee761f62
TG
2875static inline int tsk_is_polling(struct task_struct *p)
2876{
2877 return test_tsk_thread_flag(p, TIF_POLLING_NRFLAG);
2878}
ea811747
PZ
2879
2880static inline void __current_set_polling(void)
3a98f871
TG
2881{
2882 set_thread_flag(TIF_POLLING_NRFLAG);
2883}
2884
ea811747
PZ
2885static inline bool __must_check current_set_polling_and_test(void)
2886{
2887 __current_set_polling();
2888
2889 /*
2890 * Polling state must be visible before we test NEED_RESCHED,
8875125e 2891 * paired by resched_curr()
ea811747 2892 */
4e857c58 2893 smp_mb__after_atomic();
ea811747
PZ
2894
2895 return unlikely(tif_need_resched());
2896}
2897
2898static inline void __current_clr_polling(void)
3a98f871
TG
2899{
2900 clear_thread_flag(TIF_POLLING_NRFLAG);
2901}
ea811747
PZ
2902
2903static inline bool __must_check current_clr_polling_and_test(void)
2904{
2905 __current_clr_polling();
2906
2907 /*
2908 * Polling state must be visible before we test NEED_RESCHED,
8875125e 2909 * paired by resched_curr()
ea811747 2910 */
4e857c58 2911 smp_mb__after_atomic();
ea811747
PZ
2912
2913 return unlikely(tif_need_resched());
2914}
2915
ee761f62
TG
2916#else
2917static inline int tsk_is_polling(struct task_struct *p) { return 0; }
ea811747
PZ
2918static inline void __current_set_polling(void) { }
2919static inline void __current_clr_polling(void) { }
2920
2921static inline bool __must_check current_set_polling_and_test(void)
2922{
2923 return unlikely(tif_need_resched());
2924}
2925static inline bool __must_check current_clr_polling_and_test(void)
2926{
2927 return unlikely(tif_need_resched());
2928}
ee761f62
TG
2929#endif
2930
8cb75e0c
PZ
2931static inline void current_clr_polling(void)
2932{
2933 __current_clr_polling();
2934
2935 /*
2936 * Ensure we check TIF_NEED_RESCHED after we clear the polling bit.
2937 * Once the bit is cleared, we'll get IPIs with every new
2938 * TIF_NEED_RESCHED and the IPI handler, scheduler_ipi(), will also
2939 * fold.
2940 */
8875125e 2941 smp_mb(); /* paired with resched_curr() */
8cb75e0c
PZ
2942
2943 preempt_fold_need_resched();
2944}
2945
75f93fed
PZ
2946static __always_inline bool need_resched(void)
2947{
2948 return unlikely(tif_need_resched());
2949}
2950
f06febc9
FM
2951/*
2952 * Thread group CPU time accounting.
2953 */
4cd4c1b4 2954void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times);
4da94d49 2955void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times);
f06febc9 2956
490dea45 2957static inline void thread_group_cputime_init(struct signal_struct *sig)
f06febc9 2958{
ee30a7b2 2959 raw_spin_lock_init(&sig->cputimer.lock);
f06febc9
FM
2960}
2961
7bb44ade
RM
2962/*
2963 * Reevaluate whether the task has signals pending delivery.
2964 * Wake the task if so.
2965 * This is required every time the blocked sigset_t changes.
2966 * callers must hold sighand->siglock.
2967 */
2968extern void recalc_sigpending_and_wake(struct task_struct *t);
1da177e4
LT
2969extern void recalc_sigpending(void);
2970
910ffdb1
ON
2971extern void signal_wake_up_state(struct task_struct *t, unsigned int state);
2972
2973static inline void signal_wake_up(struct task_struct *t, bool resume)
2974{
2975 signal_wake_up_state(t, resume ? TASK_WAKEKILL : 0);
2976}
2977static inline void ptrace_signal_wake_up(struct task_struct *t, bool resume)
2978{
2979 signal_wake_up_state(t, resume ? __TASK_TRACED : 0);
2980}
1da177e4
LT
2981
2982/*
2983 * Wrappers for p->thread_info->cpu access. No-op on UP.
2984 */
2985#ifdef CONFIG_SMP
2986
2987static inline unsigned int task_cpu(const struct task_struct *p)
2988{
a1261f54 2989 return task_thread_info(p)->cpu;
1da177e4
LT
2990}
2991
b32e86b4
IM
2992static inline int task_node(const struct task_struct *p)
2993{
2994 return cpu_to_node(task_cpu(p));
2995}
2996
c65cc870 2997extern void set_task_cpu(struct task_struct *p, unsigned int cpu);
1da177e4
LT
2998
2999#else
3000
3001static inline unsigned int task_cpu(const struct task_struct *p)
3002{
3003 return 0;
3004}
3005
3006static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
3007{
3008}
3009
3010#endif /* CONFIG_SMP */
3011
96f874e2
RR
3012extern long sched_setaffinity(pid_t pid, const struct cpumask *new_mask);
3013extern long sched_getaffinity(pid_t pid, struct cpumask *mask);
5c45bf27 3014
7c941438 3015#ifdef CONFIG_CGROUP_SCHED
07e06b01 3016extern struct task_group root_task_group;
8323f26c 3017#endif /* CONFIG_CGROUP_SCHED */
9b5b7751 3018
54e99124
DG
3019extern int task_can_switch_user(struct user_struct *up,
3020 struct task_struct *tsk);
3021
4b98d11b
AD
3022#ifdef CONFIG_TASK_XACCT
3023static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
3024{
940389b8 3025 tsk->ioac.rchar += amt;
4b98d11b
AD
3026}
3027
3028static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
3029{
940389b8 3030 tsk->ioac.wchar += amt;
4b98d11b
AD
3031}
3032
3033static inline void inc_syscr(struct task_struct *tsk)
3034{
940389b8 3035 tsk->ioac.syscr++;
4b98d11b
AD
3036}
3037
3038static inline void inc_syscw(struct task_struct *tsk)
3039{
940389b8 3040 tsk->ioac.syscw++;
4b98d11b
AD
3041}
3042#else
3043static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
3044{
3045}
3046
3047static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
3048{
3049}
3050
3051static inline void inc_syscr(struct task_struct *tsk)
3052{
3053}
3054
3055static inline void inc_syscw(struct task_struct *tsk)
3056{
3057}
3058#endif
3059
82455257
DH
3060#ifndef TASK_SIZE_OF
3061#define TASK_SIZE_OF(tsk) TASK_SIZE
3062#endif
3063
f98bafa0 3064#ifdef CONFIG_MEMCG
cf475ad2 3065extern void mm_update_next_owner(struct mm_struct *mm);
cf475ad2
BS
3066#else
3067static inline void mm_update_next_owner(struct mm_struct *mm)
3068{
3069}
f98bafa0 3070#endif /* CONFIG_MEMCG */
cf475ad2 3071
3e10e716
JS
3072static inline unsigned long task_rlimit(const struct task_struct *tsk,
3073 unsigned int limit)
3074{
3075 return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_cur);
3076}
3077
3078static inline unsigned long task_rlimit_max(const struct task_struct *tsk,
3079 unsigned int limit)
3080{
3081 return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_max);
3082}
3083
3084static inline unsigned long rlimit(unsigned int limit)
3085{
3086 return task_rlimit(current, limit);
3087}
3088
3089static inline unsigned long rlimit_max(unsigned int limit)
3090{
3091 return task_rlimit_max(current, limit);
3092}
3093
1da177e4 3094#endif
This page took 2.166654 seconds and 5 git commands to generate.