xref: /linux/include/linux/sched.h (revision 5640f7685831e088fe6c2e1f863a6805962f8e81)
11da177e4SLinus Torvalds #ifndef _LINUX_SCHED_H
21da177e4SLinus Torvalds #define _LINUX_SCHED_H
31da177e4SLinus Torvalds 
4b7b3c76aSDavid Woodhouse /*
5b7b3c76aSDavid Woodhouse  * cloning flags:
6b7b3c76aSDavid Woodhouse  */
7b7b3c76aSDavid Woodhouse #define CSIGNAL		0x000000ff	/* signal mask to be sent at exit */
8b7b3c76aSDavid Woodhouse #define CLONE_VM	0x00000100	/* set if VM shared between processes */
9b7b3c76aSDavid Woodhouse #define CLONE_FS	0x00000200	/* set if fs info shared between processes */
10b7b3c76aSDavid Woodhouse #define CLONE_FILES	0x00000400	/* set if open files shared between processes */
11b7b3c76aSDavid Woodhouse #define CLONE_SIGHAND	0x00000800	/* set if signal handlers and blocked signals shared */
12b7b3c76aSDavid Woodhouse #define CLONE_PTRACE	0x00002000	/* set if we want to let tracing continue on the child too */
13b7b3c76aSDavid Woodhouse #define CLONE_VFORK	0x00004000	/* set if the parent wants the child to wake it up on mm_release */
14b7b3c76aSDavid Woodhouse #define CLONE_PARENT	0x00008000	/* set if we want to have the same parent as the cloner */
15b7b3c76aSDavid Woodhouse #define CLONE_THREAD	0x00010000	/* Same thread group? */
16b7b3c76aSDavid Woodhouse #define CLONE_NEWNS	0x00020000	/* New namespace group? */
17b7b3c76aSDavid Woodhouse #define CLONE_SYSVSEM	0x00040000	/* share system V SEM_UNDO semantics */
18b7b3c76aSDavid Woodhouse #define CLONE_SETTLS	0x00080000	/* create a new TLS for the child */
19b7b3c76aSDavid Woodhouse #define CLONE_PARENT_SETTID	0x00100000	/* set the TID in the parent */
20b7b3c76aSDavid Woodhouse #define CLONE_CHILD_CLEARTID	0x00200000	/* clear the TID in the child */
21b7b3c76aSDavid Woodhouse #define CLONE_DETACHED		0x00400000	/* Unused, ignored */
22b7b3c76aSDavid Woodhouse #define CLONE_UNTRACED		0x00800000	/* set if the tracing process can't force CLONE_PTRACE on this clone */
23b7b3c76aSDavid Woodhouse #define CLONE_CHILD_SETTID	0x01000000	/* set the TID in the child */
2443bb40c9SDave Jones /* 0x02000000 was previously the unused CLONE_STOPPED (Start in stopped state)
2543bb40c9SDave Jones    and is now available for re-use. */
26071df104SSerge E. Hallyn #define CLONE_NEWUTS		0x04000000	/* New utsname group? */
2725b21cb2SKirill Korotaev #define CLONE_NEWIPC		0x08000000	/* New ipcs */
2877ec739dSSerge E. Hallyn #define CLONE_NEWUSER		0x10000000	/* New user namespace */
2930e49c26SPavel Emelyanov #define CLONE_NEWPID		0x20000000	/* New pid namespace */
30169e3674SEric W. Biederman #define CLONE_NEWNET		0x40000000	/* New network namespace */
31fadad878SJens Axboe #define CLONE_IO		0x80000000	/* Clone io context */
32b7b3c76aSDavid Woodhouse 
33b7b3c76aSDavid Woodhouse /*
34b7b3c76aSDavid Woodhouse  * Scheduling policies
35b7b3c76aSDavid Woodhouse  */
36b7b3c76aSDavid Woodhouse #define SCHED_NORMAL		0
37b7b3c76aSDavid Woodhouse #define SCHED_FIFO		1
38b7b3c76aSDavid Woodhouse #define SCHED_RR		2
39b7b3c76aSDavid Woodhouse #define SCHED_BATCH		3
400e6aca43SIngo Molnar /* SCHED_ISO: reserved but not implemented yet */
410e6aca43SIngo Molnar #define SCHED_IDLE		5
42ca94c442SLennart Poettering /* Can be ORed in to make sure the process is reverted back to SCHED_NORMAL on fork */
43ca94c442SLennart Poettering #define SCHED_RESET_ON_FORK     0x40000000
44b7b3c76aSDavid Woodhouse 
45a3b6714eSDavid Woodhouse #ifdef __KERNEL__
46b7b3c76aSDavid Woodhouse 
47b7b3c76aSDavid Woodhouse struct sched_param {
48b7b3c76aSDavid Woodhouse 	int sched_priority;
49b7b3c76aSDavid Woodhouse };
50b7b3c76aSDavid Woodhouse 
511da177e4SLinus Torvalds #include <asm/param.h>	/* for HZ */
521da177e4SLinus Torvalds 
531da177e4SLinus Torvalds #include <linux/capability.h>
541da177e4SLinus Torvalds #include <linux/threads.h>
551da177e4SLinus Torvalds #include <linux/kernel.h>
561da177e4SLinus Torvalds #include <linux/types.h>
571da177e4SLinus Torvalds #include <linux/timex.h>
581da177e4SLinus Torvalds #include <linux/jiffies.h>
591da177e4SLinus Torvalds #include <linux/rbtree.h>
601da177e4SLinus Torvalds #include <linux/thread_info.h>
611da177e4SLinus Torvalds #include <linux/cpumask.h>
621da177e4SLinus Torvalds #include <linux/errno.h>
631da177e4SLinus Torvalds #include <linux/nodemask.h>
64c92ff1bdSMartin Schwidefsky #include <linux/mm_types.h>
651da177e4SLinus Torvalds 
661da177e4SLinus Torvalds #include <asm/page.h>
671da177e4SLinus Torvalds #include <asm/ptrace.h>
681da177e4SLinus Torvalds #include <asm/cputime.h>
691da177e4SLinus Torvalds 
701da177e4SLinus Torvalds #include <linux/smp.h>
711da177e4SLinus Torvalds #include <linux/sem.h>
721da177e4SLinus Torvalds #include <linux/signal.h>
731da177e4SLinus Torvalds #include <linux/compiler.h>
741da177e4SLinus Torvalds #include <linux/completion.h>
751da177e4SLinus Torvalds #include <linux/pid.h>
761da177e4SLinus Torvalds #include <linux/percpu.h>
771da177e4SLinus Torvalds #include <linux/topology.h>
783e26c149SPeter Zijlstra #include <linux/proportions.h>
791da177e4SLinus Torvalds #include <linux/seccomp.h>
80e56d0903SIngo Molnar #include <linux/rcupdate.h>
8105725f7eSJiri Pirko #include <linux/rculist.h>
8223f78d4aSIngo Molnar #include <linux/rtmutex.h>
831da177e4SLinus Torvalds 
84a3b6714eSDavid Woodhouse #include <linux/time.h>
85a3b6714eSDavid Woodhouse #include <linux/param.h>
86a3b6714eSDavid Woodhouse #include <linux/resource.h>
87a3b6714eSDavid Woodhouse #include <linux/timer.h>
88a3b6714eSDavid Woodhouse #include <linux/hrtimer.h>
897c3ab738SAndrew Morton #include <linux/task_io_accounting.h>
909745512cSArjan van de Ven #include <linux/latencytop.h>
919e2b2dc4SDavid Howells #include <linux/cred.h>
92fa14ff4aSPeter Zijlstra #include <linux/llist.h>
937b44ab97SEric W. Biederman #include <linux/uidgid.h>
94a3b6714eSDavid Woodhouse 
95a3b6714eSDavid Woodhouse #include <asm/processor.h>
9636d57ac4SH. J. Lu 
971da177e4SLinus Torvalds struct exec_domain;
98c87e2837SIngo Molnar struct futex_pi_state;
99286100a6SAlexey Dobriyan struct robust_list_head;
100bddd87c7SAkinobu Mita struct bio_list;
1015ad4e53bSAl Viro struct fs_struct;
102cdd6c482SIngo Molnar struct perf_event_context;
10373c10101SJens Axboe struct blk_plug;
1041da177e4SLinus Torvalds 
1051da177e4SLinus Torvalds /*
1061da177e4SLinus Torvalds  * List of flags we want to share for kernel threads,
1071da177e4SLinus Torvalds  * if only because they are not used by them anyway.
1081da177e4SLinus Torvalds  */
1091da177e4SLinus Torvalds #define CLONE_KERNEL	(CLONE_FS | CLONE_FILES | CLONE_SIGHAND)
1101da177e4SLinus Torvalds 
1111da177e4SLinus Torvalds /*
1121da177e4SLinus Torvalds  * These are the constant used to fake the fixed-point load-average
1131da177e4SLinus Torvalds  * counting. Some notes:
1141da177e4SLinus Torvalds  *  - 11 bit fractions expand to 22 bits by the multiplies: this gives
1151da177e4SLinus Torvalds  *    a load-average precision of 10 bits integer + 11 bits fractional
1161da177e4SLinus Torvalds  *  - if you want to count load-averages more often, you need more
1171da177e4SLinus Torvalds  *    precision, or rounding will get you. With 2-second counting freq,
1181da177e4SLinus Torvalds  *    the EXP_n values would be 1981, 2034 and 2043 if still using only
1191da177e4SLinus Torvalds  *    11 bit fractions.
1201da177e4SLinus Torvalds  */
1211da177e4SLinus Torvalds extern unsigned long avenrun[];		/* Load averages */
1222d02494fSThomas Gleixner extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
1231da177e4SLinus Torvalds 
1241da177e4SLinus Torvalds #define FSHIFT		11		/* nr of bits of precision */
1251da177e4SLinus Torvalds #define FIXED_1		(1<<FSHIFT)	/* 1.0 as fixed-point */
1260c2043abSLinus Torvalds #define LOAD_FREQ	(5*HZ+1)	/* 5 sec intervals */
1271da177e4SLinus Torvalds #define EXP_1		1884		/* 1/exp(5sec/1min) as fixed-point */
1281da177e4SLinus Torvalds #define EXP_5		2014		/* 1/exp(5sec/5min) */
1291da177e4SLinus Torvalds #define EXP_15		2037		/* 1/exp(5sec/15min) */
1301da177e4SLinus Torvalds 
1311da177e4SLinus Torvalds #define CALC_LOAD(load,exp,n) \
1321da177e4SLinus Torvalds 	load *= exp; \
1331da177e4SLinus Torvalds 	load += n*(FIXED_1-exp); \
1341da177e4SLinus Torvalds 	load >>= FSHIFT;
1351da177e4SLinus Torvalds 
1361da177e4SLinus Torvalds extern unsigned long total_forks;
1371da177e4SLinus Torvalds extern int nr_threads;
1381da177e4SLinus Torvalds DECLARE_PER_CPU(unsigned long, process_counts);
1391da177e4SLinus Torvalds extern int nr_processes(void);
1401da177e4SLinus Torvalds extern unsigned long nr_running(void);
1411da177e4SLinus Torvalds extern unsigned long nr_uninterruptible(void);
1421da177e4SLinus Torvalds extern unsigned long nr_iowait(void);
1438c215bd3SPeter Zijlstra extern unsigned long nr_iowait_cpu(int cpu);
14469d25870SArjan van de Ven extern unsigned long this_cpu_load(void);
14569d25870SArjan van de Ven 
14669d25870SArjan van de Ven 
1470f004f5aSPeter Zijlstra extern void calc_global_load(unsigned long ticks);
1485aaa0b7aSPeter Zijlstra extern void update_cpu_load_nohz(void);
1491da177e4SLinus Torvalds 
1507e49fcceSSteven Rostedt extern unsigned long get_parent_ip(unsigned long addr);
1517e49fcceSSteven Rostedt 
15243ae34cbSIngo Molnar struct seq_file;
15343ae34cbSIngo Molnar struct cfs_rq;
1544cf86d77SIngo Molnar struct task_group;
15543ae34cbSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
15643ae34cbSIngo Molnar extern void proc_sched_show_task(struct task_struct *p, struct seq_file *m);
15743ae34cbSIngo Molnar extern void proc_sched_set_task(struct task_struct *p);
15843ae34cbSIngo Molnar extern void
1595cef9ecaSIngo Molnar print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq);
16043ae34cbSIngo Molnar #else
16143ae34cbSIngo Molnar static inline void
16243ae34cbSIngo Molnar proc_sched_show_task(struct task_struct *p, struct seq_file *m)
16343ae34cbSIngo Molnar {
16443ae34cbSIngo Molnar }
16543ae34cbSIngo Molnar static inline void proc_sched_set_task(struct task_struct *p)
16643ae34cbSIngo Molnar {
16743ae34cbSIngo Molnar }
16843ae34cbSIngo Molnar static inline void
1695cef9ecaSIngo Molnar print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq)
17043ae34cbSIngo Molnar {
17143ae34cbSIngo Molnar }
17243ae34cbSIngo Molnar #endif
1731da177e4SLinus Torvalds 
1744a8342d2SLinus Torvalds /*
1754a8342d2SLinus Torvalds  * Task state bitmask. NOTE! These bits are also
1764a8342d2SLinus Torvalds  * encoded in fs/proc/array.c: get_task_state().
1774a8342d2SLinus Torvalds  *
1784a8342d2SLinus Torvalds  * We have two separate sets of flags: task->state
1794a8342d2SLinus Torvalds  * is about runnability, while task->exit_state are
1804a8342d2SLinus Torvalds  * about the task exiting. Confusing, but this way
1814a8342d2SLinus Torvalds  * modifying one set can't modify the other one by
1824a8342d2SLinus Torvalds  * mistake.
1834a8342d2SLinus Torvalds  */
1841da177e4SLinus Torvalds #define TASK_RUNNING		0
1851da177e4SLinus Torvalds #define TASK_INTERRUPTIBLE	1
1861da177e4SLinus Torvalds #define TASK_UNINTERRUPTIBLE	2
187f021a3c2SMatthew Wilcox #define __TASK_STOPPED		4
188f021a3c2SMatthew Wilcox #define __TASK_TRACED		8
1894a8342d2SLinus Torvalds /* in tsk->exit_state */
1904a8342d2SLinus Torvalds #define EXIT_ZOMBIE		16
1914a8342d2SLinus Torvalds #define EXIT_DEAD		32
1924a8342d2SLinus Torvalds /* in tsk->state again */
193af927232SMike Galbraith #define TASK_DEAD		64
194f021a3c2SMatthew Wilcox #define TASK_WAKEKILL		128
195e9c84311SPeter Zijlstra #define TASK_WAKING		256
196e1781538SPeter Zijlstra #define TASK_STATE_MAX		512
197f021a3c2SMatthew Wilcox 
19844d90df6SPeter Zijlstra #define TASK_STATE_TO_CHAR_STR "RSDTtZXxKW"
19973342151SPeter Zijlstra 
200e1781538SPeter Zijlstra extern char ___assert_task_state[1 - 2*!!(
201e1781538SPeter Zijlstra 		sizeof(TASK_STATE_TO_CHAR_STR)-1 != ilog2(TASK_STATE_MAX)+1)];
202f021a3c2SMatthew Wilcox 
203f021a3c2SMatthew Wilcox /* Convenience macros for the sake of set_task_state */
204f021a3c2SMatthew Wilcox #define TASK_KILLABLE		(TASK_WAKEKILL | TASK_UNINTERRUPTIBLE)
205f021a3c2SMatthew Wilcox #define TASK_STOPPED		(TASK_WAKEKILL | __TASK_STOPPED)
206f021a3c2SMatthew Wilcox #define TASK_TRACED		(TASK_WAKEKILL | __TASK_TRACED)
2071da177e4SLinus Torvalds 
20892a1f4bcSMatthew Wilcox /* Convenience macros for the sake of wake_up */
20992a1f4bcSMatthew Wilcox #define TASK_NORMAL		(TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE)
210f021a3c2SMatthew Wilcox #define TASK_ALL		(TASK_NORMAL | __TASK_STOPPED | __TASK_TRACED)
21192a1f4bcSMatthew Wilcox 
21292a1f4bcSMatthew Wilcox /* get_task_state() */
21392a1f4bcSMatthew Wilcox #define TASK_REPORT		(TASK_RUNNING | TASK_INTERRUPTIBLE | \
214f021a3c2SMatthew Wilcox 				 TASK_UNINTERRUPTIBLE | __TASK_STOPPED | \
215f021a3c2SMatthew Wilcox 				 __TASK_TRACED)
21692a1f4bcSMatthew Wilcox 
217f021a3c2SMatthew Wilcox #define task_is_traced(task)	((task->state & __TASK_TRACED) != 0)
218f021a3c2SMatthew Wilcox #define task_is_stopped(task)	((task->state & __TASK_STOPPED) != 0)
2198f92054eSDavid Howells #define task_is_dead(task)	((task)->exit_state != 0)
22092a1f4bcSMatthew Wilcox #define task_is_stopped_or_traced(task)	\
221f021a3c2SMatthew Wilcox 			((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0)
22292a1f4bcSMatthew Wilcox #define task_contributes_to_load(task)	\
223e3c8ca83SNathan Lynch 				((task->state & TASK_UNINTERRUPTIBLE) != 0 && \
224376fede8STejun Heo 				 (task->flags & PF_FROZEN) == 0)
2251da177e4SLinus Torvalds 
2261da177e4SLinus Torvalds #define __set_task_state(tsk, state_value)		\
2271da177e4SLinus Torvalds 	do { (tsk)->state = (state_value); } while (0)
2281da177e4SLinus Torvalds #define set_task_state(tsk, state_value)		\
2291da177e4SLinus Torvalds 	set_mb((tsk)->state, (state_value))
2301da177e4SLinus Torvalds 
231498d0c57SAndrew Morton /*
232498d0c57SAndrew Morton  * set_current_state() includes a barrier so that the write of current->state
233498d0c57SAndrew Morton  * is correctly serialised wrt the caller's subsequent test of whether to
234498d0c57SAndrew Morton  * actually sleep:
235498d0c57SAndrew Morton  *
236498d0c57SAndrew Morton  *	set_current_state(TASK_UNINTERRUPTIBLE);
237498d0c57SAndrew Morton  *	if (do_i_need_to_sleep())
238498d0c57SAndrew Morton  *		schedule();
239498d0c57SAndrew Morton  *
240498d0c57SAndrew Morton  * If the caller does not need such serialisation then use __set_current_state()
241498d0c57SAndrew Morton  */
2421da177e4SLinus Torvalds #define __set_current_state(state_value)			\
2431da177e4SLinus Torvalds 	do { current->state = (state_value); } while (0)
2441da177e4SLinus Torvalds #define set_current_state(state_value)		\
2451da177e4SLinus Torvalds 	set_mb(current->state, (state_value))
2461da177e4SLinus Torvalds 
2471da177e4SLinus Torvalds /* Task command name length */
2481da177e4SLinus Torvalds #define TASK_COMM_LEN 16
2491da177e4SLinus Torvalds 
2501da177e4SLinus Torvalds #include <linux/spinlock.h>
2511da177e4SLinus Torvalds 
2521da177e4SLinus Torvalds /*
2531da177e4SLinus Torvalds  * This serializes "schedule()" and also protects
2541da177e4SLinus Torvalds  * the run-queue from deletions/modifications (but
2551da177e4SLinus Torvalds  * _adding_ to the beginning of the run-queue has
2561da177e4SLinus Torvalds  * a separate lock).
2571da177e4SLinus Torvalds  */
2581da177e4SLinus Torvalds extern rwlock_t tasklist_lock;
2591da177e4SLinus Torvalds extern spinlock_t mmlist_lock;
2601da177e4SLinus Torvalds 
26136c8b586SIngo Molnar struct task_struct;
2621da177e4SLinus Torvalds 
263db1466b3SPaul E. McKenney #ifdef CONFIG_PROVE_RCU
264db1466b3SPaul E. McKenney extern int lockdep_tasklist_lock_is_held(void);
265db1466b3SPaul E. McKenney #endif /* #ifdef CONFIG_PROVE_RCU */
266db1466b3SPaul E. McKenney 
2671da177e4SLinus Torvalds extern void sched_init(void);
2681da177e4SLinus Torvalds extern void sched_init_smp(void);
2692d07b255SHarvey Harrison extern asmlinkage void schedule_tail(struct task_struct *prev);
27036c8b586SIngo Molnar extern void init_idle(struct task_struct *idle, int cpu);
2711df21055SIngo Molnar extern void init_idle_bootup_task(struct task_struct *idle);
2721da177e4SLinus Torvalds 
27389f19f04SAndrew Morton extern int runqueue_is_locked(int cpu);
274017730c1SIngo Molnar 
27546cb4b7cSSiddha, Suresh B #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ)
27683cd4fe2SVenkatesh Pallipadi extern void select_nohz_load_balancer(int stop_tick);
27769e1e811SSuresh Siddha extern void set_cpu_sd_state_idle(void);
27883cd4fe2SVenkatesh Pallipadi extern int get_nohz_timer_target(void);
27946cb4b7cSSiddha, Suresh B #else
28083cd4fe2SVenkatesh Pallipadi static inline void select_nohz_load_balancer(int stop_tick) { }
281fdaabd80SPeter Zijlstra static inline void set_cpu_sd_state_idle(void) { }
28246cb4b7cSSiddha, Suresh B #endif
2831da177e4SLinus Torvalds 
284e59e2ae2SIngo Molnar /*
28539bc89fdSIngo Molnar  * Only dump TASK_* tasks. (0 for all tasks)
286e59e2ae2SIngo Molnar  */
287e59e2ae2SIngo Molnar extern void show_state_filter(unsigned long state_filter);
288e59e2ae2SIngo Molnar 
289e59e2ae2SIngo Molnar static inline void show_state(void)
290e59e2ae2SIngo Molnar {
29139bc89fdSIngo Molnar 	show_state_filter(0);
292e59e2ae2SIngo Molnar }
293e59e2ae2SIngo Molnar 
2941da177e4SLinus Torvalds extern void show_regs(struct pt_regs *);
2951da177e4SLinus Torvalds 
2961da177e4SLinus Torvalds /*
2971da177e4SLinus Torvalds  * TASK is a pointer to the task whose backtrace we want to see (or NULL for current
2981da177e4SLinus Torvalds  * task), SP is the stack pointer of the first frame that should be shown in the back
2991da177e4SLinus Torvalds  * trace (or NULL if the entire call-chain of the task should be shown).
3001da177e4SLinus Torvalds  */
3011da177e4SLinus Torvalds extern void show_stack(struct task_struct *task, unsigned long *sp);
3021da177e4SLinus Torvalds 
3031da177e4SLinus Torvalds void io_schedule(void);
3041da177e4SLinus Torvalds long io_schedule_timeout(long timeout);
3051da177e4SLinus Torvalds 
3061da177e4SLinus Torvalds extern void cpu_init (void);
3071da177e4SLinus Torvalds extern void trap_init(void);
3081da177e4SLinus Torvalds extern void update_process_times(int user);
3091da177e4SLinus Torvalds extern void scheduler_tick(void);
3101da177e4SLinus Torvalds 
31182a1fcb9SIngo Molnar extern void sched_show_task(struct task_struct *p);
31282a1fcb9SIngo Molnar 
31319cc36c0SFrederic Weisbecker #ifdef CONFIG_LOCKUP_DETECTOR
3148446f1d3SIngo Molnar extern void touch_softlockup_watchdog(void);
315d6ad3e28SJason Wessel extern void touch_softlockup_watchdog_sync(void);
31604c9167fSJeremy Fitzhardinge extern void touch_all_softlockup_watchdogs(void);
317332fbdbcSDon Zickus extern int proc_dowatchdog_thresh(struct ctl_table *table, int write,
3188d65af78SAlexey Dobriyan 				  void __user *buffer,
319baf48f65SMandeep Singh Baines 				  size_t *lenp, loff_t *ppos);
3209c44bc03SIngo Molnar extern unsigned int  softlockup_panic;
321004417a6SPeter Zijlstra void lockup_detector_init(void);
3228446f1d3SIngo Molnar #else
3238446f1d3SIngo Molnar static inline void touch_softlockup_watchdog(void)
3248446f1d3SIngo Molnar {
3258446f1d3SIngo Molnar }
326d6ad3e28SJason Wessel static inline void touch_softlockup_watchdog_sync(void)
327d6ad3e28SJason Wessel {
328d6ad3e28SJason Wessel }
32904c9167fSJeremy Fitzhardinge static inline void touch_all_softlockup_watchdogs(void)
33004c9167fSJeremy Fitzhardinge {
33104c9167fSJeremy Fitzhardinge }
332004417a6SPeter Zijlstra static inline void lockup_detector_init(void)
333004417a6SPeter Zijlstra {
334004417a6SPeter Zijlstra }
3358446f1d3SIngo Molnar #endif
3368446f1d3SIngo Molnar 
337e162b39aSMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK
338e162b39aSMandeep Singh Baines extern unsigned int  sysctl_hung_task_panic;
339e162b39aSMandeep Singh Baines extern unsigned long sysctl_hung_task_check_count;
340e162b39aSMandeep Singh Baines extern unsigned long sysctl_hung_task_timeout_secs;
341e162b39aSMandeep Singh Baines extern unsigned long sysctl_hung_task_warnings;
342e162b39aSMandeep Singh Baines extern int proc_dohung_task_timeout_secs(struct ctl_table *table, int write,
3438d65af78SAlexey Dobriyan 					 void __user *buffer,
344e162b39aSMandeep Singh Baines 					 size_t *lenp, loff_t *ppos);
345e4ecda1bSMark Lord #else
346e4ecda1bSMark Lord /* Avoid need for ifdefs elsewhere in the code */
347e4ecda1bSMark Lord enum { sysctl_hung_task_timeout_secs = 0 };
348e162b39aSMandeep Singh Baines #endif
3498446f1d3SIngo Molnar 
3501da177e4SLinus Torvalds /* Attach to any functions which should be ignored in wchan output. */
3511da177e4SLinus Torvalds #define __sched		__attribute__((__section__(".sched.text")))
352deaf2227SIngo Molnar 
353deaf2227SIngo Molnar /* Linker adds these: start and end of __sched functions */
354deaf2227SIngo Molnar extern char __sched_text_start[], __sched_text_end[];
355deaf2227SIngo Molnar 
3561da177e4SLinus Torvalds /* Is this address in the __sched functions? */
3571da177e4SLinus Torvalds extern int in_sched_functions(unsigned long addr);
3581da177e4SLinus Torvalds 
3591da177e4SLinus Torvalds #define	MAX_SCHEDULE_TIMEOUT	LONG_MAX
360b3c97528SHarvey Harrison extern signed long schedule_timeout(signed long timeout);
36164ed93a2SNishanth Aravamudan extern signed long schedule_timeout_interruptible(signed long timeout);
362294d5cc2SMatthew Wilcox extern signed long schedule_timeout_killable(signed long timeout);
36364ed93a2SNishanth Aravamudan extern signed long schedule_timeout_uninterruptible(signed long timeout);
3641da177e4SLinus Torvalds asmlinkage void schedule(void);
365c5491ea7SThomas Gleixner extern void schedule_preempt_disabled(void);
366c6eb3ddaSPeter Zijlstra extern int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner);
3671da177e4SLinus Torvalds 
368ab516013SSerge E. Hallyn struct nsproxy;
369acce292cSCedric Le Goater struct user_namespace;
3701da177e4SLinus Torvalds 
371341c87bfSKAMEZAWA Hiroyuki /*
372341c87bfSKAMEZAWA Hiroyuki  * Default maximum number of active map areas, this limits the number of vmas
373341c87bfSKAMEZAWA Hiroyuki  * per mm struct. Users can overwrite this number by sysctl but there is a
374341c87bfSKAMEZAWA Hiroyuki  * problem.
375341c87bfSKAMEZAWA Hiroyuki  *
376341c87bfSKAMEZAWA Hiroyuki  * When a program's coredump is generated as ELF format, a section is created
377341c87bfSKAMEZAWA Hiroyuki  * per a vma. In ELF, the number of sections is represented in unsigned short.
378341c87bfSKAMEZAWA Hiroyuki  * This means the number of sections should be smaller than 65535 at coredump.
379341c87bfSKAMEZAWA Hiroyuki  * Because the kernel adds some informative sections to a image of program at
380341c87bfSKAMEZAWA Hiroyuki  * generating coredump, we need some margin. The number of extra sections is
381341c87bfSKAMEZAWA Hiroyuki  * 1-3 now and depends on arch. We use "5" as safe margin, here.
382341c87bfSKAMEZAWA Hiroyuki  */
383341c87bfSKAMEZAWA Hiroyuki #define MAPCOUNT_ELF_CORE_MARGIN	(5)
3844be929beSAlexey Dobriyan #define DEFAULT_MAX_MAP_COUNT	(USHRT_MAX - MAPCOUNT_ELF_CORE_MARGIN)
3851da177e4SLinus Torvalds 
3861da177e4SLinus Torvalds extern int sysctl_max_map_count;
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds #include <linux/aio.h>
3891da177e4SLinus Torvalds 
390efc1a3b1SDavid Howells #ifdef CONFIG_MMU
391efc1a3b1SDavid Howells extern void arch_pick_mmap_layout(struct mm_struct *mm);
3921da177e4SLinus Torvalds extern unsigned long
3931da177e4SLinus Torvalds arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
3941da177e4SLinus Torvalds 		       unsigned long, unsigned long);
3951da177e4SLinus Torvalds extern unsigned long
3961da177e4SLinus Torvalds arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
3971da177e4SLinus Torvalds 			  unsigned long len, unsigned long pgoff,
3981da177e4SLinus Torvalds 			  unsigned long flags);
3991363c3cdSWolfgang Wander extern void arch_unmap_area(struct mm_struct *, unsigned long);
4001363c3cdSWolfgang Wander extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long);
401efc1a3b1SDavid Howells #else
402efc1a3b1SDavid Howells static inline void arch_pick_mmap_layout(struct mm_struct *mm) {}
403efc1a3b1SDavid Howells #endif
4041da177e4SLinus Torvalds 
405901608d9SOleg Nesterov 
4066c5d5238SKawai, Hidehiro extern void set_dumpable(struct mm_struct *mm, int value);
4076c5d5238SKawai, Hidehiro extern int get_dumpable(struct mm_struct *mm);
4086c5d5238SKawai, Hidehiro 
40954b50199SKees Cook /* get/set_dumpable() values */
41054b50199SKees Cook #define SUID_DUMPABLE_DISABLED	0
41154b50199SKees Cook #define SUID_DUMPABLE_ENABLED	1
41254b50199SKees Cook #define SUID_DUMPABLE_SAFE	2
41354b50199SKees Cook 
4146c5d5238SKawai, Hidehiro /* mm flags */
4153cb4a0bbSKawai, Hidehiro /* dumpable bits */
4166c5d5238SKawai, Hidehiro #define MMF_DUMPABLE      0  /* core dump is permitted */
4176c5d5238SKawai, Hidehiro #define MMF_DUMP_SECURELY 1  /* core file is readable only by root */
418f8af4da3SHugh Dickins 
4193cb4a0bbSKawai, Hidehiro #define MMF_DUMPABLE_BITS 2
420f8af4da3SHugh Dickins #define MMF_DUMPABLE_MASK ((1 << MMF_DUMPABLE_BITS) - 1)
4213cb4a0bbSKawai, Hidehiro 
4223cb4a0bbSKawai, Hidehiro /* coredump filter bits */
4233cb4a0bbSKawai, Hidehiro #define MMF_DUMP_ANON_PRIVATE	2
4243cb4a0bbSKawai, Hidehiro #define MMF_DUMP_ANON_SHARED	3
4253cb4a0bbSKawai, Hidehiro #define MMF_DUMP_MAPPED_PRIVATE	4
4263cb4a0bbSKawai, Hidehiro #define MMF_DUMP_MAPPED_SHARED	5
42782df3973SRoland McGrath #define MMF_DUMP_ELF_HEADERS	6
428e575f111SKOSAKI Motohiro #define MMF_DUMP_HUGETLB_PRIVATE 7
429e575f111SKOSAKI Motohiro #define MMF_DUMP_HUGETLB_SHARED  8
430f8af4da3SHugh Dickins 
4313cb4a0bbSKawai, Hidehiro #define MMF_DUMP_FILTER_SHIFT	MMF_DUMPABLE_BITS
432e575f111SKOSAKI Motohiro #define MMF_DUMP_FILTER_BITS	7
4333cb4a0bbSKawai, Hidehiro #define MMF_DUMP_FILTER_MASK \
4343cb4a0bbSKawai, Hidehiro 	(((1 << MMF_DUMP_FILTER_BITS) - 1) << MMF_DUMP_FILTER_SHIFT)
4353cb4a0bbSKawai, Hidehiro #define MMF_DUMP_FILTER_DEFAULT \
436e575f111SKOSAKI Motohiro 	((1 << MMF_DUMP_ANON_PRIVATE) |	(1 << MMF_DUMP_ANON_SHARED) |\
437656eb2cdSRoland McGrath 	 (1 << MMF_DUMP_HUGETLB_PRIVATE) | MMF_DUMP_MASK_DEFAULT_ELF)
438656eb2cdSRoland McGrath 
439656eb2cdSRoland McGrath #ifdef CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
440656eb2cdSRoland McGrath # define MMF_DUMP_MASK_DEFAULT_ELF	(1 << MMF_DUMP_ELF_HEADERS)
441656eb2cdSRoland McGrath #else
442656eb2cdSRoland McGrath # define MMF_DUMP_MASK_DEFAULT_ELF	0
443656eb2cdSRoland McGrath #endif
444f8af4da3SHugh Dickins 					/* leave room for more dump flags */
445f8af4da3SHugh Dickins #define MMF_VM_MERGEABLE	16	/* KSM may merge identical pages */
446ba76149fSAndrea Arcangeli #define MMF_VM_HUGEPAGE		17	/* set when VM_HUGEPAGE is set on vma */
447bafb282dSKonstantin Khlebnikov #define MMF_EXE_FILE_CHANGED	18	/* see prctl_set_mm_exe_file() */
448f8af4da3SHugh Dickins 
449f8af4da3SHugh Dickins #define MMF_INIT_MASK		(MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK)
4506c5d5238SKawai, Hidehiro 
4511da177e4SLinus Torvalds struct sighand_struct {
4521da177e4SLinus Torvalds 	atomic_t		count;
4531da177e4SLinus Torvalds 	struct k_sigaction	action[_NSIG];
4541da177e4SLinus Torvalds 	spinlock_t		siglock;
455b8fceee1SDavide Libenzi 	wait_queue_head_t	signalfd_wqh;
4561da177e4SLinus Torvalds };
4571da177e4SLinus Torvalds 
4580e464814SKaiGai Kohei struct pacct_struct {
459f6ec29a4SKaiGai Kohei 	int			ac_flag;
460f6ec29a4SKaiGai Kohei 	long			ac_exitcode;
4610e464814SKaiGai Kohei 	unsigned long		ac_mem;
46277787bfbSKaiGai Kohei 	cputime_t		ac_utime, ac_stime;
46377787bfbSKaiGai Kohei 	unsigned long		ac_minflt, ac_majflt;
4640e464814SKaiGai Kohei };
4650e464814SKaiGai Kohei 
46642c4ab41SStanislaw Gruszka struct cpu_itimer {
46742c4ab41SStanislaw Gruszka 	cputime_t expires;
46842c4ab41SStanislaw Gruszka 	cputime_t incr;
4698356b5f9SStanislaw Gruszka 	u32 error;
4708356b5f9SStanislaw Gruszka 	u32 incr_error;
47142c4ab41SStanislaw Gruszka };
47242c4ab41SStanislaw Gruszka 
473f06febc9SFrank Mayhar /**
474f06febc9SFrank Mayhar  * struct task_cputime - collected CPU time counts
475f06febc9SFrank Mayhar  * @utime:		time spent in user mode, in &cputime_t units
476f06febc9SFrank Mayhar  * @stime:		time spent in kernel mode, in &cputime_t units
477f06febc9SFrank Mayhar  * @sum_exec_runtime:	total time spent on the CPU, in nanoseconds
478f06febc9SFrank Mayhar  *
479f06febc9SFrank Mayhar  * This structure groups together three kinds of CPU time that are
480f06febc9SFrank Mayhar  * tracked for threads and thread groups.  Most things considering
481f06febc9SFrank Mayhar  * CPU time want to group these counts together and treat all three
482f06febc9SFrank Mayhar  * of them in parallel.
483f06febc9SFrank Mayhar  */
484f06febc9SFrank Mayhar struct task_cputime {
485f06febc9SFrank Mayhar 	cputime_t utime;
486f06febc9SFrank Mayhar 	cputime_t stime;
487f06febc9SFrank Mayhar 	unsigned long long sum_exec_runtime;
488f06febc9SFrank Mayhar };
489f06febc9SFrank Mayhar /* Alternate field names when used to cache expirations. */
490f06febc9SFrank Mayhar #define prof_exp	stime
491f06febc9SFrank Mayhar #define virt_exp	utime
492f06febc9SFrank Mayhar #define sched_exp	sum_exec_runtime
493f06febc9SFrank Mayhar 
4944cd4c1b4SPeter Zijlstra #define INIT_CPUTIME	\
4954cd4c1b4SPeter Zijlstra 	(struct task_cputime) {					\
49664861634SMartin Schwidefsky 		.utime = 0,					\
49764861634SMartin Schwidefsky 		.stime = 0,					\
4984cd4c1b4SPeter Zijlstra 		.sum_exec_runtime = 0,				\
4994cd4c1b4SPeter Zijlstra 	}
5004cd4c1b4SPeter Zijlstra 
501c99e6efeSPeter Zijlstra /*
502c99e6efeSPeter Zijlstra  * Disable preemption until the scheduler is running.
503c99e6efeSPeter Zijlstra  * Reset by start_kernel()->sched_init()->init_idle().
504d86ee480SPeter Zijlstra  *
505d86ee480SPeter Zijlstra  * We include PREEMPT_ACTIVE to avoid cond_resched() from working
506d86ee480SPeter Zijlstra  * before the scheduler is active -- see should_resched().
507c99e6efeSPeter Zijlstra  */
508d86ee480SPeter Zijlstra #define INIT_PREEMPT_COUNT	(1 + PREEMPT_ACTIVE)
509c99e6efeSPeter Zijlstra 
510f06febc9SFrank Mayhar /**
5114cd4c1b4SPeter Zijlstra  * struct thread_group_cputimer - thread group interval timer counts
5124cd4c1b4SPeter Zijlstra  * @cputime:		thread group interval timers.
5134cd4c1b4SPeter Zijlstra  * @running:		non-zero when there are timers running and
5144cd4c1b4SPeter Zijlstra  * 			@cputime receives updates.
5154cd4c1b4SPeter Zijlstra  * @lock:		lock for fields in this struct.
516f06febc9SFrank Mayhar  *
517f06febc9SFrank Mayhar  * This structure contains the version of task_cputime, above, that is
5184cd4c1b4SPeter Zijlstra  * used for thread group CPU timer calculations.
519f06febc9SFrank Mayhar  */
5204cd4c1b4SPeter Zijlstra struct thread_group_cputimer {
5214cd4c1b4SPeter Zijlstra 	struct task_cputime cputime;
5224cd4c1b4SPeter Zijlstra 	int running;
523ee30a7b2SThomas Gleixner 	raw_spinlock_t lock;
524f06febc9SFrank Mayhar };
525f06febc9SFrank Mayhar 
5264714d1d3SBen Blum #include <linux/rwsem.h>
5275091faa4SMike Galbraith struct autogroup;
5285091faa4SMike Galbraith 
5291da177e4SLinus Torvalds /*
530e815f0a8SJonathan Neuschäfer  * NOTE! "signal_struct" does not have its own
5311da177e4SLinus Torvalds  * locking, because a shared signal_struct always
5321da177e4SLinus Torvalds  * implies a shared sighand_struct, so locking
5331da177e4SLinus Torvalds  * sighand_struct is always a proper superset of
5341da177e4SLinus Torvalds  * the locking of signal_struct.
5351da177e4SLinus Torvalds  */
5361da177e4SLinus Torvalds struct signal_struct {
537ea6d290cSOleg Nesterov 	atomic_t		sigcnt;
5381da177e4SLinus Torvalds 	atomic_t		live;
539b3ac022cSOleg Nesterov 	int			nr_threads;
5401da177e4SLinus Torvalds 
5411da177e4SLinus Torvalds 	wait_queue_head_t	wait_chldexit;	/* for wait4() */
5421da177e4SLinus Torvalds 
5431da177e4SLinus Torvalds 	/* current thread group signal load-balancing target: */
54436c8b586SIngo Molnar 	struct task_struct	*curr_target;
5451da177e4SLinus Torvalds 
5461da177e4SLinus Torvalds 	/* shared signal handling: */
5471da177e4SLinus Torvalds 	struct sigpending	shared_pending;
5481da177e4SLinus Torvalds 
5491da177e4SLinus Torvalds 	/* thread group exit support */
5501da177e4SLinus Torvalds 	int			group_exit_code;
5511da177e4SLinus Torvalds 	/* overloaded:
5521da177e4SLinus Torvalds 	 * - notify group_exit_task when ->count is equal to notify_count
5531da177e4SLinus Torvalds 	 * - everyone except group_exit_task is stopped during signal delivery
5541da177e4SLinus Torvalds 	 *   of fatal signals, group_exit_task processes the signal.
5551da177e4SLinus Torvalds 	 */
5561da177e4SLinus Torvalds 	int			notify_count;
55707dd20e0SRichard Kennedy 	struct task_struct	*group_exit_task;
5581da177e4SLinus Torvalds 
5591da177e4SLinus Torvalds 	/* thread group stop support, overloads group_exit_code too */
5601da177e4SLinus Torvalds 	int			group_stop_count;
5611da177e4SLinus Torvalds 	unsigned int		flags; /* see SIGNAL_* flags below */
5621da177e4SLinus Torvalds 
563ebec18a6SLennart Poettering 	/*
564ebec18a6SLennart Poettering 	 * PR_SET_CHILD_SUBREAPER marks a process, like a service
565ebec18a6SLennart Poettering 	 * manager, to re-parent orphan (double-forking) child processes
566ebec18a6SLennart Poettering 	 * to this process instead of 'init'. The service manager is
567ebec18a6SLennart Poettering 	 * able to receive SIGCHLD signals and is able to investigate
568ebec18a6SLennart Poettering 	 * the process until it calls wait(). All children of this
569ebec18a6SLennart Poettering 	 * process will inherit a flag if they should look for a
570ebec18a6SLennart Poettering 	 * child_subreaper process at exit.
571ebec18a6SLennart Poettering 	 */
572ebec18a6SLennart Poettering 	unsigned int		is_child_subreaper:1;
573ebec18a6SLennart Poettering 	unsigned int		has_child_subreaper:1;
574ebec18a6SLennart Poettering 
5751da177e4SLinus Torvalds 	/* POSIX.1b Interval Timers */
5761da177e4SLinus Torvalds 	struct list_head posix_timers;
5771da177e4SLinus Torvalds 
5781da177e4SLinus Torvalds 	/* ITIMER_REAL timer for the process */
5792ff678b8SThomas Gleixner 	struct hrtimer real_timer;
580fea9d175SOleg Nesterov 	struct pid *leader_pid;
5812ff678b8SThomas Gleixner 	ktime_t it_real_incr;
5821da177e4SLinus Torvalds 
58342c4ab41SStanislaw Gruszka 	/*
58442c4ab41SStanislaw Gruszka 	 * ITIMER_PROF and ITIMER_VIRTUAL timers for the process, we use
58542c4ab41SStanislaw Gruszka 	 * CPUCLOCK_PROF and CPUCLOCK_VIRT for indexing array as these
58642c4ab41SStanislaw Gruszka 	 * values are defined to 0 and 1 respectively
58742c4ab41SStanislaw Gruszka 	 */
58842c4ab41SStanislaw Gruszka 	struct cpu_itimer it[2];
5891da177e4SLinus Torvalds 
590f06febc9SFrank Mayhar 	/*
5914cd4c1b4SPeter Zijlstra 	 * Thread group totals for process CPU timers.
5924cd4c1b4SPeter Zijlstra 	 * See thread_group_cputimer(), et al, for details.
593f06febc9SFrank Mayhar 	 */
5944cd4c1b4SPeter Zijlstra 	struct thread_group_cputimer cputimer;
595f06febc9SFrank Mayhar 
596f06febc9SFrank Mayhar 	/* Earliest-expiration cache. */
597f06febc9SFrank Mayhar 	struct task_cputime cputime_expires;
598f06febc9SFrank Mayhar 
599f06febc9SFrank Mayhar 	struct list_head cpu_timers[3];
600f06febc9SFrank Mayhar 
601ab521dc0SEric W. Biederman 	struct pid *tty_old_pgrp;
6021ec320afSCedric Le Goater 
6031da177e4SLinus Torvalds 	/* boolean value for session group leader */
6041da177e4SLinus Torvalds 	int leader;
6051da177e4SLinus Torvalds 
6061da177e4SLinus Torvalds 	struct tty_struct *tty; /* NULL if no tty */
6071da177e4SLinus Torvalds 
6085091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP
6095091faa4SMike Galbraith 	struct autogroup *autogroup;
6105091faa4SMike Galbraith #endif
6111da177e4SLinus Torvalds 	/*
6121da177e4SLinus Torvalds 	 * Cumulative resource counters for dead threads in the group,
6131da177e4SLinus Torvalds 	 * and for reaped dead child processes forked by this group.
6141da177e4SLinus Torvalds 	 * Live threads maintain their own counters and add to these
6151da177e4SLinus Torvalds 	 * in __exit_signal, except for the group leader.
6161da177e4SLinus Torvalds 	 */
61732bd671dSPeter Zijlstra 	cputime_t utime, stime, cutime, cstime;
6189ac52315SLaurent Vivier 	cputime_t gtime;
6199ac52315SLaurent Vivier 	cputime_t cgtime;
6200cf55e1eSHidetoshi Seto #ifndef CONFIG_VIRT_CPU_ACCOUNTING
6210cf55e1eSHidetoshi Seto 	cputime_t prev_utime, prev_stime;
6220cf55e1eSHidetoshi Seto #endif
6231da177e4SLinus Torvalds 	unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw;
6241da177e4SLinus Torvalds 	unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
6256eaeeabaSEric Dumazet 	unsigned long inblock, oublock, cinblock, coublock;
6261f10206cSJiri Pirko 	unsigned long maxrss, cmaxrss;
627940389b8SAndrea Righi 	struct task_io_accounting ioac;
6281da177e4SLinus Torvalds 
6291da177e4SLinus Torvalds 	/*
63032bd671dSPeter Zijlstra 	 * Cumulative ns of schedule CPU time fo dead threads in the
63132bd671dSPeter Zijlstra 	 * group, not including a zombie group leader, (This only differs
63232bd671dSPeter Zijlstra 	 * from jiffies_to_ns(utime + stime) if sched_clock uses something
63332bd671dSPeter Zijlstra 	 * other than jiffies.)
63432bd671dSPeter Zijlstra 	 */
63532bd671dSPeter Zijlstra 	unsigned long long sum_sched_runtime;
63632bd671dSPeter Zijlstra 
63732bd671dSPeter Zijlstra 	/*
6381da177e4SLinus Torvalds 	 * We don't bother to synchronize most readers of this at all,
6391da177e4SLinus Torvalds 	 * because there is no reader checking a limit that actually needs
6401da177e4SLinus Torvalds 	 * to get both rlim_cur and rlim_max atomically, and either one
6411da177e4SLinus Torvalds 	 * alone is a single word that can safely be read normally.
6421da177e4SLinus Torvalds 	 * getrlimit/setrlimit use task_lock(current->group_leader) to
6431da177e4SLinus Torvalds 	 * protect this instead of the siglock, because they really
6441da177e4SLinus Torvalds 	 * have no need to disable irqs.
6451da177e4SLinus Torvalds 	 */
6461da177e4SLinus Torvalds 	struct rlimit rlim[RLIM_NLIMITS];
6471da177e4SLinus Torvalds 
6480e464814SKaiGai Kohei #ifdef CONFIG_BSD_PROCESS_ACCT
6490e464814SKaiGai Kohei 	struct pacct_struct pacct;	/* per-process accounting information */
6500e464814SKaiGai Kohei #endif
651ad4ecbcbSShailabh Nagar #ifdef CONFIG_TASKSTATS
652ad4ecbcbSShailabh Nagar 	struct taskstats *stats;
653ad4ecbcbSShailabh Nagar #endif
654522ed776SMiloslav Trmac #ifdef CONFIG_AUDIT
655522ed776SMiloslav Trmac 	unsigned audit_tty;
656522ed776SMiloslav Trmac 	struct tty_audit_buf *tty_audit_buf;
657522ed776SMiloslav Trmac #endif
6584714d1d3SBen Blum #ifdef CONFIG_CGROUPS
6594714d1d3SBen Blum 	/*
66077e4ef99STejun Heo 	 * group_rwsem prevents new tasks from entering the threadgroup and
66177e4ef99STejun Heo 	 * member tasks from exiting,a more specifically, setting of
66277e4ef99STejun Heo 	 * PF_EXITING.  fork and exit paths are protected with this rwsem
66377e4ef99STejun Heo 	 * using threadgroup_change_begin/end().  Users which require
66477e4ef99STejun Heo 	 * threadgroup to remain stable should use threadgroup_[un]lock()
66577e4ef99STejun Heo 	 * which also takes care of exec path.  Currently, cgroup is the
66677e4ef99STejun Heo 	 * only user.
6674714d1d3SBen Blum 	 */
668257058aeSTejun Heo 	struct rw_semaphore group_rwsem;
6694714d1d3SBen Blum #endif
67028b83c51SKOSAKI Motohiro 
67128b83c51SKOSAKI Motohiro 	int oom_adj;		/* OOM kill score adjustment (bit shift) */
672a63d83f4SDavid Rientjes 	int oom_score_adj;	/* OOM kill score adjustment */
673dabb16f6SMandeep Singh Baines 	int oom_score_adj_min;	/* OOM kill score adjustment minimum value.
674dabb16f6SMandeep Singh Baines 				 * Only settable by CAP_SYS_RESOURCE. */
6759b1bf12dSKOSAKI Motohiro 
6769b1bf12dSKOSAKI Motohiro 	struct mutex cred_guard_mutex;	/* guard against foreign influences on
6779b1bf12dSKOSAKI Motohiro 					 * credential calculations
6789b1bf12dSKOSAKI Motohiro 					 * (notably. ptrace) */
6791da177e4SLinus Torvalds };
6801da177e4SLinus Torvalds 
6814866cde0SNick Piggin /* Context switch must be unlocked if interrupts are to be enabled */
6824866cde0SNick Piggin #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
6834866cde0SNick Piggin # define __ARCH_WANT_UNLOCKED_CTXSW
6844866cde0SNick Piggin #endif
6854866cde0SNick Piggin 
6861da177e4SLinus Torvalds /*
6871da177e4SLinus Torvalds  * Bits in flags field of signal_struct.
6881da177e4SLinus Torvalds  */
6891da177e4SLinus Torvalds #define SIGNAL_STOP_STOPPED	0x00000001 /* job control stop in effect */
690ee77f075SOleg Nesterov #define SIGNAL_STOP_CONTINUED	0x00000002 /* SIGCONT since WCONTINUED reap */
691ee77f075SOleg Nesterov #define SIGNAL_GROUP_EXIT	0x00000004 /* group exit in progress */
692e4420551SOleg Nesterov /*
693e4420551SOleg Nesterov  * Pending notifications to parent.
694e4420551SOleg Nesterov  */
695e4420551SOleg Nesterov #define SIGNAL_CLD_STOPPED	0x00000010
696e4420551SOleg Nesterov #define SIGNAL_CLD_CONTINUED	0x00000020
697e4420551SOleg Nesterov #define SIGNAL_CLD_MASK		(SIGNAL_CLD_STOPPED|SIGNAL_CLD_CONTINUED)
6981da177e4SLinus Torvalds 
699fae5fa44SOleg Nesterov #define SIGNAL_UNKILLABLE	0x00000040 /* for init: ignore fatal signals */
700fae5fa44SOleg Nesterov 
701ed5d2cacSOleg Nesterov /* If true, all threads except ->group_exit_task have pending SIGKILL */
702ed5d2cacSOleg Nesterov static inline int signal_group_exit(const struct signal_struct *sig)
703ed5d2cacSOleg Nesterov {
704ed5d2cacSOleg Nesterov 	return	(sig->flags & SIGNAL_GROUP_EXIT) ||
705ed5d2cacSOleg Nesterov 		(sig->group_exit_task != NULL);
706ed5d2cacSOleg Nesterov }
707ed5d2cacSOleg Nesterov 
7081da177e4SLinus Torvalds /*
7091da177e4SLinus Torvalds  * Some day this will be a full-fledged user tracking system..
7101da177e4SLinus Torvalds  */
7111da177e4SLinus Torvalds struct user_struct {
7121da177e4SLinus Torvalds 	atomic_t __count;	/* reference count */
7131da177e4SLinus Torvalds 	atomic_t processes;	/* How many processes does this user have? */
7141da177e4SLinus Torvalds 	atomic_t files;		/* How many open files does this user have? */
7151da177e4SLinus Torvalds 	atomic_t sigpending;	/* How many pending signals does this user have? */
7162d9048e2SAmy Griffis #ifdef CONFIG_INOTIFY_USER
7170eeca283SRobert Love 	atomic_t inotify_watches; /* How many inotify watches does this user have? */
7180eeca283SRobert Love 	atomic_t inotify_devs;	/* How many inotify devs does this user have opened? */
7190eeca283SRobert Love #endif
7204afeff85SEric Paris #ifdef CONFIG_FANOTIFY
7214afeff85SEric Paris 	atomic_t fanotify_listeners;
7224afeff85SEric Paris #endif
7237ef9964eSDavide Libenzi #ifdef CONFIG_EPOLL
72452bd19f7SRobin Holt 	atomic_long_t epoll_watches; /* The number of file descriptors currently watched */
7257ef9964eSDavide Libenzi #endif
726970a8645SAlexey Dobriyan #ifdef CONFIG_POSIX_MQUEUE
7271da177e4SLinus Torvalds 	/* protected by mq_lock	*/
7281da177e4SLinus Torvalds 	unsigned long mq_bytes;	/* How many bytes can be allocated to mqueue? */
729970a8645SAlexey Dobriyan #endif
7301da177e4SLinus Torvalds 	unsigned long locked_shm; /* How many pages of mlocked shm ? */
7311da177e4SLinus Torvalds 
7321da177e4SLinus Torvalds #ifdef CONFIG_KEYS
7331da177e4SLinus Torvalds 	struct key *uid_keyring;	/* UID specific keyring */
7341da177e4SLinus Torvalds 	struct key *session_keyring;	/* UID's default session keyring */
7351da177e4SLinus Torvalds #endif
7361da177e4SLinus Torvalds 
7371da177e4SLinus Torvalds 	/* Hash table maintenance information */
738735de223SPavel Emelyanov 	struct hlist_node uidhash_node;
7397b44ab97SEric W. Biederman 	kuid_t uid;
74024e377a8SSrivatsa Vaddagiri 
741cdd6c482SIngo Molnar #ifdef CONFIG_PERF_EVENTS
742789f90fcSPeter Zijlstra 	atomic_long_t locked_vm;
743789f90fcSPeter Zijlstra #endif
7441da177e4SLinus Torvalds };
7451da177e4SLinus Torvalds 
746eb41d946SKay Sievers extern int uids_sysfs_init(void);
7475cb350baSDhaval Giani 
7487b44ab97SEric W. Biederman extern struct user_struct *find_user(kuid_t);
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds extern struct user_struct root_user;
7511da177e4SLinus Torvalds #define INIT_USER (&root_user)
7521da177e4SLinus Torvalds 
753b6dff3ecSDavid Howells 
7541da177e4SLinus Torvalds struct backing_dev_info;
7551da177e4SLinus Torvalds struct reclaim_state;
7561da177e4SLinus Torvalds 
75752f17b6cSChandra Seetharaman #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
7581da177e4SLinus Torvalds struct sched_info {
7591da177e4SLinus Torvalds 	/* cumulative counters */
7602d72376bSIngo Molnar 	unsigned long pcount;	      /* # of times run on this cpu */
7619c2c4802SKen Chen 	unsigned long long run_delay; /* time spent waiting on a runqueue */
7621da177e4SLinus Torvalds 
7631da177e4SLinus Torvalds 	/* timestamps */
764172ba844SBalbir Singh 	unsigned long long last_arrival,/* when we last ran on a cpu */
7651da177e4SLinus Torvalds 			   last_queued;	/* when we were last queued to run */
7661da177e4SLinus Torvalds };
76752f17b6cSChandra Seetharaman #endif /* defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) */
7681da177e4SLinus Torvalds 
769ca74e92bSShailabh Nagar #ifdef CONFIG_TASK_DELAY_ACCT
770ca74e92bSShailabh Nagar struct task_delay_info {
771ca74e92bSShailabh Nagar 	spinlock_t	lock;
772ca74e92bSShailabh Nagar 	unsigned int	flags;	/* Private per-task flags */
773ca74e92bSShailabh Nagar 
774ca74e92bSShailabh Nagar 	/* For each stat XXX, add following, aligned appropriately
775ca74e92bSShailabh Nagar 	 *
776ca74e92bSShailabh Nagar 	 * struct timespec XXX_start, XXX_end;
777ca74e92bSShailabh Nagar 	 * u64 XXX_delay;
778ca74e92bSShailabh Nagar 	 * u32 XXX_count;
779ca74e92bSShailabh Nagar 	 *
780ca74e92bSShailabh Nagar 	 * Atomicity of updates to XXX_delay, XXX_count protected by
781ca74e92bSShailabh Nagar 	 * single lock above (split into XXX_lock if contention is an issue).
782ca74e92bSShailabh Nagar 	 */
7830ff92245SShailabh Nagar 
7840ff92245SShailabh Nagar 	/*
7850ff92245SShailabh Nagar 	 * XXX_count is incremented on every XXX operation, the delay
7860ff92245SShailabh Nagar 	 * associated with the operation is added to XXX_delay.
7870ff92245SShailabh Nagar 	 * XXX_delay contains the accumulated delay time in nanoseconds.
7880ff92245SShailabh Nagar 	 */
7890ff92245SShailabh Nagar 	struct timespec blkio_start, blkio_end;	/* Shared by blkio, swapin */
7900ff92245SShailabh Nagar 	u64 blkio_delay;	/* wait for sync block io completion */
7910ff92245SShailabh Nagar 	u64 swapin_delay;	/* wait for swapin block io completion */
7920ff92245SShailabh Nagar 	u32 blkio_count;	/* total count of the number of sync block */
7930ff92245SShailabh Nagar 				/* io operations performed */
7940ff92245SShailabh Nagar 	u32 swapin_count;	/* total count of the number of swapin block */
7950ff92245SShailabh Nagar 				/* io operations performed */
796873b4771SKeika Kobayashi 
797873b4771SKeika Kobayashi 	struct timespec freepages_start, freepages_end;
798873b4771SKeika Kobayashi 	u64 freepages_delay;	/* wait for memory reclaim */
799873b4771SKeika Kobayashi 	u32 freepages_count;	/* total count of memory reclaim */
800ca74e92bSShailabh Nagar };
80152f17b6cSChandra Seetharaman #endif	/* CONFIG_TASK_DELAY_ACCT */
80252f17b6cSChandra Seetharaman 
80352f17b6cSChandra Seetharaman static inline int sched_info_on(void)
80452f17b6cSChandra Seetharaman {
80552f17b6cSChandra Seetharaman #ifdef CONFIG_SCHEDSTATS
80652f17b6cSChandra Seetharaman 	return 1;
80752f17b6cSChandra Seetharaman #elif defined(CONFIG_TASK_DELAY_ACCT)
80852f17b6cSChandra Seetharaman 	extern int delayacct_on;
80952f17b6cSChandra Seetharaman 	return delayacct_on;
81052f17b6cSChandra Seetharaman #else
81152f17b6cSChandra Seetharaman 	return 0;
812ca74e92bSShailabh Nagar #endif
81352f17b6cSChandra Seetharaman }
814ca74e92bSShailabh Nagar 
815d15bcfdbSIngo Molnar enum cpu_idle_type {
816d15bcfdbSIngo Molnar 	CPU_IDLE,
817d15bcfdbSIngo Molnar 	CPU_NOT_IDLE,
818d15bcfdbSIngo Molnar 	CPU_NEWLY_IDLE,
819d15bcfdbSIngo Molnar 	CPU_MAX_IDLE_TYPES
8201da177e4SLinus Torvalds };
8211da177e4SLinus Torvalds 
8221da177e4SLinus Torvalds /*
823c8b28116SNikhil Rao  * Increase resolution of nice-level calculations for 64-bit architectures.
824c8b28116SNikhil Rao  * The extra resolution improves shares distribution and load balancing of
825c8b28116SNikhil Rao  * low-weight task groups (eg. nice +19 on an autogroup), deeper taskgroup
826c8b28116SNikhil Rao  * hierarchies, especially on larger systems. This is not a user-visible change
827c8b28116SNikhil Rao  * and does not change the user-interface for setting shares/weights.
828c8b28116SNikhil Rao  *
829c8b28116SNikhil Rao  * We increase resolution only if we have enough bits to allow this increased
830c8b28116SNikhil Rao  * resolution (i.e. BITS_PER_LONG > 32). The costs for increasing resolution
831c8b28116SNikhil Rao  * when BITS_PER_LONG <= 32 are pretty high and the returns do not justify the
832c8b28116SNikhil Rao  * increased costs.
8331da177e4SLinus Torvalds  */
834e4c2fb0dSPeter Zijlstra #if 0 /* BITS_PER_LONG > 32 -- currently broken: it increases power usage under light load  */
835c8b28116SNikhil Rao # define SCHED_LOAD_RESOLUTION	10
836c8b28116SNikhil Rao # define scale_load(w)		((w) << SCHED_LOAD_RESOLUTION)
837c8b28116SNikhil Rao # define scale_load_down(w)	((w) >> SCHED_LOAD_RESOLUTION)
838c8b28116SNikhil Rao #else
839c8b28116SNikhil Rao # define SCHED_LOAD_RESOLUTION	0
840c8b28116SNikhil Rao # define scale_load(w)		(w)
841c8b28116SNikhil Rao # define scale_load_down(w)	(w)
842c8b28116SNikhil Rao #endif
8439aa7b369SIngo Molnar 
844c8b28116SNikhil Rao #define SCHED_LOAD_SHIFT	(10 + SCHED_LOAD_RESOLUTION)
8459aa7b369SIngo Molnar #define SCHED_LOAD_SCALE	(1L << SCHED_LOAD_SHIFT)
8469aa7b369SIngo Molnar 
8471399fa78SNikhil Rao /*
8481399fa78SNikhil Rao  * Increase resolution of cpu_power calculations
8491399fa78SNikhil Rao  */
8501399fa78SNikhil Rao #define SCHED_POWER_SHIFT	10
8511399fa78SNikhil Rao #define SCHED_POWER_SCALE	(1L << SCHED_POWER_SHIFT)
8521da177e4SLinus Torvalds 
8531399fa78SNikhil Rao /*
8541399fa78SNikhil Rao  * sched-domains (multiprocessor balancing) declarations:
8551399fa78SNikhil Rao  */
8562dd73a4fSPeter Williams #ifdef CONFIG_SMP
857b5d978e0SPeter Zijlstra #define SD_LOAD_BALANCE		0x0001	/* Do load balancing on this domain. */
858b5d978e0SPeter Zijlstra #define SD_BALANCE_NEWIDLE	0x0002	/* Balance when about to become idle */
859b5d978e0SPeter Zijlstra #define SD_BALANCE_EXEC		0x0004	/* Balance on exec */
860b5d978e0SPeter Zijlstra #define SD_BALANCE_FORK		0x0008	/* Balance on fork, clone */
861c88d5910SPeter Zijlstra #define SD_BALANCE_WAKE		0x0010  /* Balance on wakeup */
862b5d978e0SPeter Zijlstra #define SD_WAKE_AFFINE		0x0020	/* Wake task to waking CPU */
86359abf026SPeter Zijlstra #define SD_PREFER_LOCAL		0x0040  /* Prefer to keep tasks local to this domain */
864b5d978e0SPeter Zijlstra #define SD_SHARE_CPUPOWER	0x0080	/* Domain members share cpu power */
865b5d978e0SPeter Zijlstra #define SD_SHARE_PKG_RESOURCES	0x0200	/* Domain members share cpu pkg resources */
866b5d978e0SPeter Zijlstra #define SD_SERIALIZE		0x0400	/* Only a single load balancing instance */
867532cb4c4SMichael Neuling #define SD_ASYM_PACKING		0x0800  /* Place busy groups earlier in the domain */
868b5d978e0SPeter Zijlstra #define SD_PREFER_SIBLING	0x1000	/* Prefer to place tasks in a sibling domain */
869e3589f6cSPeter Zijlstra #define SD_OVERLAP		0x2000	/* sched_domains of this level overlap */
8705c45bf27SSiddha, Suresh B 
871532cb4c4SMichael Neuling extern int __weak arch_sd_sibiling_asym_packing(void);
872532cb4c4SMichael Neuling 
8739c3f75cbSPeter Zijlstra struct sched_group_power {
874e3589f6cSPeter Zijlstra 	atomic_t ref;
8751da177e4SLinus Torvalds 	/*
8761da177e4SLinus Torvalds 	 * CPU power of this group, SCHED_LOAD_SCALE being max power for a
87718a3885fSPeter Zijlstra 	 * single CPU.
8781da177e4SLinus Torvalds 	 */
8799c3f75cbSPeter Zijlstra 	unsigned int power, power_orig;
8804ec4412eSVincent Guittot 	unsigned long next_update;
88169e1e811SSuresh Siddha 	/*
88269e1e811SSuresh Siddha 	 * Number of busy cpus in this group.
88369e1e811SSuresh Siddha 	 */
88469e1e811SSuresh Siddha 	atomic_t nr_busy_cpus;
885c1174876SPeter Zijlstra 
886c1174876SPeter Zijlstra 	unsigned long cpumask[0]; /* iteration mask */
8879c3f75cbSPeter Zijlstra };
8889c3f75cbSPeter Zijlstra 
8899c3f75cbSPeter Zijlstra struct sched_group {
8909c3f75cbSPeter Zijlstra 	struct sched_group *next;	/* Must be a circular list */
8919c3f75cbSPeter Zijlstra 	atomic_t ref;
8929c3f75cbSPeter Zijlstra 
893aae6d3ddSSuresh Siddha 	unsigned int group_weight;
8949c3f75cbSPeter Zijlstra 	struct sched_group_power *sgp;
8956c99e9adSRusty Russell 
8964200efd9SIngo Molnar 	/*
8974200efd9SIngo Molnar 	 * The CPUs this group covers.
8984200efd9SIngo Molnar 	 *
8994200efd9SIngo Molnar 	 * NOTE: this field is variable length. (Allocated dynamically
9004200efd9SIngo Molnar 	 * by attaching extra space to the end of the structure,
9014200efd9SIngo Molnar 	 * depending on how many CPUs the kernel has booted up with)
9024200efd9SIngo Molnar 	 */
9034200efd9SIngo Molnar 	unsigned long cpumask[0];
9041da177e4SLinus Torvalds };
9051da177e4SLinus Torvalds 
906758b2cdcSRusty Russell static inline struct cpumask *sched_group_cpus(struct sched_group *sg)
907758b2cdcSRusty Russell {
9086c99e9adSRusty Russell 	return to_cpumask(sg->cpumask);
909758b2cdcSRusty Russell }
910758b2cdcSRusty Russell 
911c1174876SPeter Zijlstra /*
912c1174876SPeter Zijlstra  * cpumask masking which cpus in the group are allowed to iterate up the domain
913c1174876SPeter Zijlstra  * tree.
914c1174876SPeter Zijlstra  */
915c1174876SPeter Zijlstra static inline struct cpumask *sched_group_mask(struct sched_group *sg)
916c1174876SPeter Zijlstra {
917c1174876SPeter Zijlstra 	return to_cpumask(sg->sgp->cpumask);
918c1174876SPeter Zijlstra }
919c1174876SPeter Zijlstra 
920029632fbSPeter Zijlstra /**
921029632fbSPeter Zijlstra  * group_first_cpu - Returns the first cpu in the cpumask of a sched_group.
922029632fbSPeter Zijlstra  * @group: The group whose first cpu is to be returned.
923029632fbSPeter Zijlstra  */
924029632fbSPeter Zijlstra static inline unsigned int group_first_cpu(struct sched_group *group)
925029632fbSPeter Zijlstra {
926029632fbSPeter Zijlstra 	return cpumask_first(sched_group_cpus(group));
927029632fbSPeter Zijlstra }
928029632fbSPeter Zijlstra 
9291d3504fcSHidetoshi Seto struct sched_domain_attr {
9301d3504fcSHidetoshi Seto 	int relax_domain_level;
9311d3504fcSHidetoshi Seto };
9321d3504fcSHidetoshi Seto 
9331d3504fcSHidetoshi Seto #define SD_ATTR_INIT	(struct sched_domain_attr) {	\
9341d3504fcSHidetoshi Seto 	.relax_domain_level = -1,			\
9351d3504fcSHidetoshi Seto }
9361d3504fcSHidetoshi Seto 
93760495e77SPeter Zijlstra extern int sched_domain_level_max;
93860495e77SPeter Zijlstra 
9391da177e4SLinus Torvalds struct sched_domain {
9401da177e4SLinus Torvalds 	/* These fields must be setup */
9411da177e4SLinus Torvalds 	struct sched_domain *parent;	/* top domain must be null terminated */
9421a848870SSiddha, Suresh B 	struct sched_domain *child;	/* bottom domain must be null terminated */
9431da177e4SLinus Torvalds 	struct sched_group *groups;	/* the balancing groups of the domain */
9441da177e4SLinus Torvalds 	unsigned long min_interval;	/* Minimum balance interval ms */
9451da177e4SLinus Torvalds 	unsigned long max_interval;	/* Maximum balance interval ms */
9461da177e4SLinus Torvalds 	unsigned int busy_factor;	/* less balancing by factor if busy */
9471da177e4SLinus Torvalds 	unsigned int imbalance_pct;	/* No balance until over watermark */
9481da177e4SLinus Torvalds 	unsigned int cache_nice_tries;	/* Leave cache hot tasks for # tries */
9497897986bSNick Piggin 	unsigned int busy_idx;
9507897986bSNick Piggin 	unsigned int idle_idx;
9517897986bSNick Piggin 	unsigned int newidle_idx;
9527897986bSNick Piggin 	unsigned int wake_idx;
953147cbb4bSNick Piggin 	unsigned int forkexec_idx;
954a52bfd73SPeter Zijlstra 	unsigned int smt_gain;
9551da177e4SLinus Torvalds 	int flags;			/* See SD_* */
95660495e77SPeter Zijlstra 	int level;
957970e1789SMike Galbraith 	int idle_buddy;			/* cpu assigned to select_idle_sibling() */
9581da177e4SLinus Torvalds 
9591da177e4SLinus Torvalds 	/* Runtime fields. */
9601da177e4SLinus Torvalds 	unsigned long last_balance;	/* init to jiffies. units in jiffies */
9611da177e4SLinus Torvalds 	unsigned int balance_interval;	/* initialise to 1. units in ms. */
9621da177e4SLinus Torvalds 	unsigned int nr_balance_failed; /* initialise to 0 */
9631da177e4SLinus Torvalds 
9642398f2c6SPeter Zijlstra 	u64 last_update;
9652398f2c6SPeter Zijlstra 
9661da177e4SLinus Torvalds #ifdef CONFIG_SCHEDSTATS
9671da177e4SLinus Torvalds 	/* load_balance() stats */
968480b9434SKen Chen 	unsigned int lb_count[CPU_MAX_IDLE_TYPES];
969480b9434SKen Chen 	unsigned int lb_failed[CPU_MAX_IDLE_TYPES];
970480b9434SKen Chen 	unsigned int lb_balanced[CPU_MAX_IDLE_TYPES];
971480b9434SKen Chen 	unsigned int lb_imbalance[CPU_MAX_IDLE_TYPES];
972480b9434SKen Chen 	unsigned int lb_gained[CPU_MAX_IDLE_TYPES];
973480b9434SKen Chen 	unsigned int lb_hot_gained[CPU_MAX_IDLE_TYPES];
974480b9434SKen Chen 	unsigned int lb_nobusyg[CPU_MAX_IDLE_TYPES];
975480b9434SKen Chen 	unsigned int lb_nobusyq[CPU_MAX_IDLE_TYPES];
9761da177e4SLinus Torvalds 
9771da177e4SLinus Torvalds 	/* Active load balancing */
978480b9434SKen Chen 	unsigned int alb_count;
979480b9434SKen Chen 	unsigned int alb_failed;
980480b9434SKen Chen 	unsigned int alb_pushed;
9811da177e4SLinus Torvalds 
98268767a0aSNick Piggin 	/* SD_BALANCE_EXEC stats */
983480b9434SKen Chen 	unsigned int sbe_count;
984480b9434SKen Chen 	unsigned int sbe_balanced;
985480b9434SKen Chen 	unsigned int sbe_pushed;
9861da177e4SLinus Torvalds 
98768767a0aSNick Piggin 	/* SD_BALANCE_FORK stats */
988480b9434SKen Chen 	unsigned int sbf_count;
989480b9434SKen Chen 	unsigned int sbf_balanced;
990480b9434SKen Chen 	unsigned int sbf_pushed;
99168767a0aSNick Piggin 
9921da177e4SLinus Torvalds 	/* try_to_wake_up() stats */
993480b9434SKen Chen 	unsigned int ttwu_wake_remote;
994480b9434SKen Chen 	unsigned int ttwu_move_affine;
995480b9434SKen Chen 	unsigned int ttwu_move_balance;
9961da177e4SLinus Torvalds #endif
997a5d8c348SIngo Molnar #ifdef CONFIG_SCHED_DEBUG
998a5d8c348SIngo Molnar 	char *name;
999a5d8c348SIngo Molnar #endif
1000dce840a0SPeter Zijlstra 	union {
1001dce840a0SPeter Zijlstra 		void *private;		/* used during construction */
1002dce840a0SPeter Zijlstra 		struct rcu_head rcu;	/* used during destruction */
1003dce840a0SPeter Zijlstra 	};
10046c99e9adSRusty Russell 
1005669c55e9SPeter Zijlstra 	unsigned int span_weight;
10064200efd9SIngo Molnar 	/*
10074200efd9SIngo Molnar 	 * Span of all CPUs in this domain.
10084200efd9SIngo Molnar 	 *
10094200efd9SIngo Molnar 	 * NOTE: this field is variable length. (Allocated dynamically
10104200efd9SIngo Molnar 	 * by attaching extra space to the end of the structure,
10114200efd9SIngo Molnar 	 * depending on how many CPUs the kernel has booted up with)
10124200efd9SIngo Molnar 	 */
10134200efd9SIngo Molnar 	unsigned long span[0];
10141da177e4SLinus Torvalds };
10151da177e4SLinus Torvalds 
1016758b2cdcSRusty Russell static inline struct cpumask *sched_domain_span(struct sched_domain *sd)
1017758b2cdcSRusty Russell {
10186c99e9adSRusty Russell 	return to_cpumask(sd->span);
1019758b2cdcSRusty Russell }
1020758b2cdcSRusty Russell 
1021acc3f5d7SRusty Russell extern void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
10221d3504fcSHidetoshi Seto 				    struct sched_domain_attr *dattr_new);
1023029190c5SPaul Jackson 
1024acc3f5d7SRusty Russell /* Allocate an array of sched domains, for partition_sched_domains(). */
1025acc3f5d7SRusty Russell cpumask_var_t *alloc_sched_domains(unsigned int ndoms);
1026acc3f5d7SRusty Russell void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms);
1027acc3f5d7SRusty Russell 
102806aaf76aSIngo Molnar /* Test a flag in parent sched domain */
102906aaf76aSIngo Molnar static inline int test_sd_parent(struct sched_domain *sd, int flag)
103006aaf76aSIngo Molnar {
103106aaf76aSIngo Molnar 	if (sd->parent && (sd->parent->flags & flag))
103206aaf76aSIngo Molnar 		return 1;
103306aaf76aSIngo Molnar 
103406aaf76aSIngo Molnar 	return 0;
103506aaf76aSIngo Molnar }
10361da177e4SLinus Torvalds 
103747fe38fcSPeter Zijlstra unsigned long default_scale_freq_power(struct sched_domain *sd, int cpu);
103847fe38fcSPeter Zijlstra unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu);
103947fe38fcSPeter Zijlstra 
104039be3501SPeter Zijlstra bool cpus_share_cache(int this_cpu, int that_cpu);
104139be3501SPeter Zijlstra 
10421b427c15SIngo Molnar #else /* CONFIG_SMP */
10431da177e4SLinus Torvalds 
10441b427c15SIngo Molnar struct sched_domain_attr;
10451b427c15SIngo Molnar 
10461b427c15SIngo Molnar static inline void
1047acc3f5d7SRusty Russell partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
10481b427c15SIngo Molnar 			struct sched_domain_attr *dattr_new)
1049d02c7a8cSCon Kolivas {
1050d02c7a8cSCon Kolivas }
105139be3501SPeter Zijlstra 
105239be3501SPeter Zijlstra static inline bool cpus_share_cache(int this_cpu, int that_cpu)
105339be3501SPeter Zijlstra {
105439be3501SPeter Zijlstra 	return true;
105539be3501SPeter Zijlstra }
105639be3501SPeter Zijlstra 
10571b427c15SIngo Molnar #endif	/* !CONFIG_SMP */
10581da177e4SLinus Torvalds 
105947fe38fcSPeter Zijlstra 
10601da177e4SLinus Torvalds struct io_context;			/* See blkdev.h */
10611da177e4SLinus Torvalds 
10621da177e4SLinus Torvalds 
1063383f2835SChen, Kenneth W #ifdef ARCH_HAS_PREFETCH_SWITCH_STACK
106436c8b586SIngo Molnar extern void prefetch_stack(struct task_struct *t);
1065383f2835SChen, Kenneth W #else
1066383f2835SChen, Kenneth W static inline void prefetch_stack(struct task_struct *t) { }
1067383f2835SChen, Kenneth W #endif
10681da177e4SLinus Torvalds 
10691da177e4SLinus Torvalds struct audit_context;		/* See audit.c */
10701da177e4SLinus Torvalds struct mempolicy;
1071b92ce558SJens Axboe struct pipe_inode_info;
10724865ecf1SSerge E. Hallyn struct uts_namespace;
10731da177e4SLinus Torvalds 
107420b8a59fSIngo Molnar struct rq;
107520b8a59fSIngo Molnar struct sched_domain;
107620b8a59fSIngo Molnar 
10777d478721SPeter Zijlstra /*
10787d478721SPeter Zijlstra  * wake flags
10797d478721SPeter Zijlstra  */
10807d478721SPeter Zijlstra #define WF_SYNC		0x01		/* waker goes to sleep after wakup */
1081a7558e01SPeter Zijlstra #define WF_FORK		0x02		/* child wakeup after fork */
1082f339b9dcSPeter Zijlstra #define WF_MIGRATED	0x04		/* internal use, task got migrated */
10837d478721SPeter Zijlstra 
1084371fd7e7SPeter Zijlstra #define ENQUEUE_WAKEUP		1
108574f8e4b2SPeter Zijlstra #define ENQUEUE_HEAD		2
108674f8e4b2SPeter Zijlstra #ifdef CONFIG_SMP
108774f8e4b2SPeter Zijlstra #define ENQUEUE_WAKING		4	/* sched_class::task_waking was called */
108874f8e4b2SPeter Zijlstra #else
108974f8e4b2SPeter Zijlstra #define ENQUEUE_WAKING		0
109074f8e4b2SPeter Zijlstra #endif
1091371fd7e7SPeter Zijlstra 
1092371fd7e7SPeter Zijlstra #define DEQUEUE_SLEEP		1
1093371fd7e7SPeter Zijlstra 
109420b8a59fSIngo Molnar struct sched_class {
10955522d5d5SIngo Molnar 	const struct sched_class *next;
109620b8a59fSIngo Molnar 
1097371fd7e7SPeter Zijlstra 	void (*enqueue_task) (struct rq *rq, struct task_struct *p, int flags);
1098371fd7e7SPeter Zijlstra 	void (*dequeue_task) (struct rq *rq, struct task_struct *p, int flags);
10994530d7abSDmitry Adamushko 	void (*yield_task) (struct rq *rq);
1100d95f4122SMike Galbraith 	bool (*yield_to_task) (struct rq *rq, struct task_struct *p, bool preempt);
110120b8a59fSIngo Molnar 
11027d478721SPeter Zijlstra 	void (*check_preempt_curr) (struct rq *rq, struct task_struct *p, int flags);
110320b8a59fSIngo Molnar 
1104fb8d4724SIngo Molnar 	struct task_struct * (*pick_next_task) (struct rq *rq);
110531ee529cSIngo Molnar 	void (*put_prev_task) (struct rq *rq, struct task_struct *p);
110620b8a59fSIngo Molnar 
1107681f3e68SPeter Williams #ifdef CONFIG_SMP
11087608dec2SPeter Zijlstra 	int  (*select_task_rq)(struct task_struct *p, int sd_flag, int flags);
11094ce72a2cSLi Zefan 
11109a897c5aSSteven Rostedt 	void (*pre_schedule) (struct rq *this_rq, struct task_struct *task);
11119a897c5aSSteven Rostedt 	void (*post_schedule) (struct rq *this_rq);
111274f8e4b2SPeter Zijlstra 	void (*task_waking) (struct task_struct *task);
1113efbbd05aSPeter Zijlstra 	void (*task_woken) (struct rq *this_rq, struct task_struct *task);
1114e1d1484fSPeter Williams 
1115cd8ba7cdSMike Travis 	void (*set_cpus_allowed)(struct task_struct *p,
111696f874e2SRusty Russell 				 const struct cpumask *newmask);
111757d885feSGregory Haskins 
11181f11eb6aSGregory Haskins 	void (*rq_online)(struct rq *rq);
11191f11eb6aSGregory Haskins 	void (*rq_offline)(struct rq *rq);
11204ce72a2cSLi Zefan #endif
11214ce72a2cSLi Zefan 
11224ce72a2cSLi Zefan 	void (*set_curr_task) (struct rq *rq);
11234ce72a2cSLi Zefan 	void (*task_tick) (struct rq *rq, struct task_struct *p, int queued);
1124cd29fe6fSPeter Zijlstra 	void (*task_fork) (struct task_struct *p);
1125cb469845SSteven Rostedt 
1126da7a735eSPeter Zijlstra 	void (*switched_from) (struct rq *this_rq, struct task_struct *task);
1127da7a735eSPeter Zijlstra 	void (*switched_to) (struct rq *this_rq, struct task_struct *task);
1128cb469845SSteven Rostedt 	void (*prio_changed) (struct rq *this_rq, struct task_struct *task,
1129da7a735eSPeter Zijlstra 			     int oldprio);
1130810b3817SPeter Zijlstra 
1131dba091b9SThomas Gleixner 	unsigned int (*get_rr_interval) (struct rq *rq,
1132dba091b9SThomas Gleixner 					 struct task_struct *task);
11330d721ceaSPeter Williams 
1134810b3817SPeter Zijlstra #ifdef CONFIG_FAIR_GROUP_SCHED
1135b2b5ce02SPeter Zijlstra 	void (*task_move_group) (struct task_struct *p, int on_rq);
1136810b3817SPeter Zijlstra #endif
113720b8a59fSIngo Molnar };
113820b8a59fSIngo Molnar 
113920b8a59fSIngo Molnar struct load_weight {
114020b8a59fSIngo Molnar 	unsigned long weight, inv_weight;
114120b8a59fSIngo Molnar };
114220b8a59fSIngo Molnar 
114394c18227SIngo Molnar #ifdef CONFIG_SCHEDSTATS
114441acab88SLucas De Marchi struct sched_statistics {
114594c18227SIngo Molnar 	u64			wait_start;
114694c18227SIngo Molnar 	u64			wait_max;
11476d082592SArjan van de Ven 	u64			wait_count;
11486d082592SArjan van de Ven 	u64			wait_sum;
11498f0dfc34SArjan van de Ven 	u64			iowait_count;
11508f0dfc34SArjan van de Ven 	u64			iowait_sum;
115194c18227SIngo Molnar 
115294c18227SIngo Molnar 	u64			sleep_start;
115320b8a59fSIngo Molnar 	u64			sleep_max;
115494c18227SIngo Molnar 	s64			sum_sleep_runtime;
115594c18227SIngo Molnar 
115694c18227SIngo Molnar 	u64			block_start;
115720b8a59fSIngo Molnar 	u64			block_max;
115820b8a59fSIngo Molnar 	u64			exec_max;
1159eba1ed4bSIngo Molnar 	u64			slice_max;
1160cc367732SIngo Molnar 
1161cc367732SIngo Molnar 	u64			nr_migrations_cold;
1162cc367732SIngo Molnar 	u64			nr_failed_migrations_affine;
1163cc367732SIngo Molnar 	u64			nr_failed_migrations_running;
1164cc367732SIngo Molnar 	u64			nr_failed_migrations_hot;
1165cc367732SIngo Molnar 	u64			nr_forced_migrations;
1166cc367732SIngo Molnar 
1167cc367732SIngo Molnar 	u64			nr_wakeups;
1168cc367732SIngo Molnar 	u64			nr_wakeups_sync;
1169cc367732SIngo Molnar 	u64			nr_wakeups_migrate;
1170cc367732SIngo Molnar 	u64			nr_wakeups_local;
1171cc367732SIngo Molnar 	u64			nr_wakeups_remote;
1172cc367732SIngo Molnar 	u64			nr_wakeups_affine;
1173cc367732SIngo Molnar 	u64			nr_wakeups_affine_attempts;
1174cc367732SIngo Molnar 	u64			nr_wakeups_passive;
1175cc367732SIngo Molnar 	u64			nr_wakeups_idle;
117641acab88SLucas De Marchi };
117741acab88SLucas De Marchi #endif
117841acab88SLucas De Marchi 
117941acab88SLucas De Marchi struct sched_entity {
118041acab88SLucas De Marchi 	struct load_weight	load;		/* for load-balancing */
118141acab88SLucas De Marchi 	struct rb_node		run_node;
118241acab88SLucas De Marchi 	struct list_head	group_node;
118341acab88SLucas De Marchi 	unsigned int		on_rq;
118441acab88SLucas De Marchi 
118541acab88SLucas De Marchi 	u64			exec_start;
118641acab88SLucas De Marchi 	u64			sum_exec_runtime;
118741acab88SLucas De Marchi 	u64			vruntime;
118841acab88SLucas De Marchi 	u64			prev_sum_exec_runtime;
118941acab88SLucas De Marchi 
119041acab88SLucas De Marchi 	u64			nr_migrations;
119141acab88SLucas De Marchi 
119241acab88SLucas De Marchi #ifdef CONFIG_SCHEDSTATS
119341acab88SLucas De Marchi 	struct sched_statistics statistics;
119494c18227SIngo Molnar #endif
119594c18227SIngo Molnar 
119620b8a59fSIngo Molnar #ifdef CONFIG_FAIR_GROUP_SCHED
119720b8a59fSIngo Molnar 	struct sched_entity	*parent;
119820b8a59fSIngo Molnar 	/* rq on which this entity is (to be) queued: */
119920b8a59fSIngo Molnar 	struct cfs_rq		*cfs_rq;
120020b8a59fSIngo Molnar 	/* rq "owned" by this entity/group: */
120120b8a59fSIngo Molnar 	struct cfs_rq		*my_q;
120220b8a59fSIngo Molnar #endif
120320b8a59fSIngo Molnar };
120470b97a7fSIngo Molnar 
1205fa717060SPeter Zijlstra struct sched_rt_entity {
1206fa717060SPeter Zijlstra 	struct list_head run_list;
120778f2c7dbSPeter Zijlstra 	unsigned long timeout;
1208bee367edSRichard Kennedy 	unsigned int time_slice;
12096f505b16SPeter Zijlstra 
121058d6c2d7SPeter Zijlstra 	struct sched_rt_entity *back;
1211052f1dc7SPeter Zijlstra #ifdef CONFIG_RT_GROUP_SCHED
12126f505b16SPeter Zijlstra 	struct sched_rt_entity	*parent;
12136f505b16SPeter Zijlstra 	/* rq on which this entity is (to be) queued: */
12146f505b16SPeter Zijlstra 	struct rt_rq		*rt_rq;
12156f505b16SPeter Zijlstra 	/* rq "owned" by this entity/group: */
12166f505b16SPeter Zijlstra 	struct rt_rq		*my_q;
12176f505b16SPeter Zijlstra #endif
1218fa717060SPeter Zijlstra };
1219fa717060SPeter Zijlstra 
1220de5bdff7SHiroshi Shimamoto /*
1221de5bdff7SHiroshi Shimamoto  * default timeslice is 100 msecs (used only for SCHED_RR tasks).
1222de5bdff7SHiroshi Shimamoto  * Timeslices get refilled after they expire.
1223de5bdff7SHiroshi Shimamoto  */
1224de5bdff7SHiroshi Shimamoto #define RR_TIMESLICE		(100 * HZ / 1000)
1225de5bdff7SHiroshi Shimamoto 
122686848966SPaul E. McKenney struct rcu_node;
122786848966SPaul E. McKenney 
12288dc85d54SPeter Zijlstra enum perf_event_task_context {
12298dc85d54SPeter Zijlstra 	perf_invalid_context = -1,
12308dc85d54SPeter Zijlstra 	perf_hw_context = 0,
123189a1e187SPeter Zijlstra 	perf_sw_context,
12328dc85d54SPeter Zijlstra 	perf_nr_task_contexts,
12338dc85d54SPeter Zijlstra };
12348dc85d54SPeter Zijlstra 
12351da177e4SLinus Torvalds struct task_struct {
12361da177e4SLinus Torvalds 	volatile long state;	/* -1 unrunnable, 0 runnable, >0 stopped */
1237f7e4217bSRoman Zippel 	void *stack;
12381da177e4SLinus Torvalds 	atomic_t usage;
123997dc32cdSWilliam Cohen 	unsigned int flags;	/* per process flags, defined below */
124097dc32cdSWilliam Cohen 	unsigned int ptrace;
12411da177e4SLinus Torvalds 
12422dd73a4fSPeter Williams #ifdef CONFIG_SMP
1243fa14ff4aSPeter Zijlstra 	struct llist_node wake_entry;
12443ca7a440SPeter Zijlstra 	int on_cpu;
12454866cde0SNick Piggin #endif
1246fd2f4419SPeter Zijlstra 	int on_rq;
124750e645a8SIngo Molnar 
1248b29739f9SIngo Molnar 	int prio, static_prio, normal_prio;
1249c7aceabaSRichard Kennedy 	unsigned int rt_priority;
12505522d5d5SIngo Molnar 	const struct sched_class *sched_class;
125120b8a59fSIngo Molnar 	struct sched_entity se;
1252fa717060SPeter Zijlstra 	struct sched_rt_entity rt;
12538323f26cSPeter Zijlstra #ifdef CONFIG_CGROUP_SCHED
12548323f26cSPeter Zijlstra 	struct task_group *sched_task_group;
12558323f26cSPeter Zijlstra #endif
12561da177e4SLinus Torvalds 
1257e107be36SAvi Kivity #ifdef CONFIG_PREEMPT_NOTIFIERS
1258e107be36SAvi Kivity 	/* list of struct preempt_notifier: */
1259e107be36SAvi Kivity 	struct hlist_head preempt_notifiers;
1260e107be36SAvi Kivity #endif
1261e107be36SAvi Kivity 
126218796aa0SAlexey Dobriyan 	/*
126318796aa0SAlexey Dobriyan 	 * fpu_counter contains the number of consecutive context switches
126418796aa0SAlexey Dobriyan 	 * that the FPU is used. If this is over a threshold, the lazy fpu
126518796aa0SAlexey Dobriyan 	 * saving becomes unlazy to save the trap. This is an unsigned char
126618796aa0SAlexey Dobriyan 	 * so that after 256 times the counter wraps and the behavior turns
126718796aa0SAlexey Dobriyan 	 * lazy again; this to deal with bursty apps that only use FPU for
126818796aa0SAlexey Dobriyan 	 * a short time
126918796aa0SAlexey Dobriyan 	 */
127018796aa0SAlexey Dobriyan 	unsigned char fpu_counter;
12716c5c9341SAlexey Dobriyan #ifdef CONFIG_BLK_DEV_IO_TRACE
12722056a782SJens Axboe 	unsigned int btrace_seq;
12736c5c9341SAlexey Dobriyan #endif
12741da177e4SLinus Torvalds 
127597dc32cdSWilliam Cohen 	unsigned int policy;
127629baa747SPeter Zijlstra 	int nr_cpus_allowed;
12771da177e4SLinus Torvalds 	cpumask_t cpus_allowed;
12781da177e4SLinus Torvalds 
1279a57eb940SPaul E. McKenney #ifdef CONFIG_PREEMPT_RCU
1280e260be67SPaul E. McKenney 	int rcu_read_lock_nesting;
1281f41d911fSPaul E. McKenney 	char rcu_read_unlock_special;
1282f41d911fSPaul E. McKenney 	struct list_head rcu_node_entry;
1283a57eb940SPaul E. McKenney #endif /* #ifdef CONFIG_PREEMPT_RCU */
1284a57eb940SPaul E. McKenney #ifdef CONFIG_TREE_PREEMPT_RCU
1285a57eb940SPaul E. McKenney 	struct rcu_node *rcu_blocked_node;
1286f41d911fSPaul E. McKenney #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
128724278d14SPaul E. McKenney #ifdef CONFIG_RCU_BOOST
128824278d14SPaul E. McKenney 	struct rt_mutex *rcu_boost_mutex;
128924278d14SPaul E. McKenney #endif /* #ifdef CONFIG_RCU_BOOST */
1290e260be67SPaul E. McKenney 
129152f17b6cSChandra Seetharaman #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
12921da177e4SLinus Torvalds 	struct sched_info sched_info;
12931da177e4SLinus Torvalds #endif
12941da177e4SLinus Torvalds 
12951da177e4SLinus Torvalds 	struct list_head tasks;
1296806c09a7SDario Faggioli #ifdef CONFIG_SMP
1297917b627dSGregory Haskins 	struct plist_node pushable_tasks;
1298806c09a7SDario Faggioli #endif
12991da177e4SLinus Torvalds 
13001da177e4SLinus Torvalds 	struct mm_struct *mm, *active_mm;
13014471a675SJiri Kosina #ifdef CONFIG_COMPAT_BRK
13024471a675SJiri Kosina 	unsigned brk_randomized:1;
13034471a675SJiri Kosina #endif
130434e55232SKAMEZAWA Hiroyuki #if defined(SPLIT_RSS_COUNTING)
130534e55232SKAMEZAWA Hiroyuki 	struct task_rss_stat	rss_stat;
130634e55232SKAMEZAWA Hiroyuki #endif
13071da177e4SLinus Torvalds /* task state */
130897dc32cdSWilliam Cohen 	int exit_state;
13091da177e4SLinus Torvalds 	int exit_code, exit_signal;
13101da177e4SLinus Torvalds 	int pdeath_signal;  /*  The signal sent when the parent dies  */
1311a8f072c1STejun Heo 	unsigned int jobctl;	/* JOBCTL_*, siglock protected */
13121da177e4SLinus Torvalds 	/* ??? */
131397dc32cdSWilliam Cohen 	unsigned int personality;
13141da177e4SLinus Torvalds 	unsigned did_exec:1;
1315f9ce1f1cSKentaro Takeda 	unsigned in_execve:1;	/* Tell the LSMs that the process is doing an
1316f9ce1f1cSKentaro Takeda 				 * execve */
13178f0dfc34SArjan van de Ven 	unsigned in_iowait:1;
13188f0dfc34SArjan van de Ven 
1319259e5e6cSAndy Lutomirski 	/* task may not gain privileges */
1320259e5e6cSAndy Lutomirski 	unsigned no_new_privs:1;
1321ca94c442SLennart Poettering 
1322ca94c442SLennart Poettering 	/* Revert to default priority/policy when forking */
1323ca94c442SLennart Poettering 	unsigned sched_reset_on_fork:1;
1324a8e4f2eaSPeter Zijlstra 	unsigned sched_contributes_to_load:1;
1325ca94c442SLennart Poettering 
13261da177e4SLinus Torvalds 	pid_t pid;
13271da177e4SLinus Torvalds 	pid_t tgid;
13280a425405SArjan van de Ven 
13291314562aSHiroshi Shimamoto #ifdef CONFIG_CC_STACKPROTECTOR
13300a425405SArjan van de Ven 	/* Canary value for the -fstack-protector gcc feature */
13310a425405SArjan van de Ven 	unsigned long stack_canary;
13321314562aSHiroshi Shimamoto #endif
13331da177e4SLinus Torvalds 	/*
13341da177e4SLinus Torvalds 	 * pointers to (original) parent process, youngest child, younger sibling,
13351da177e4SLinus Torvalds 	 * older sibling, respectively.  (p->father can be replaced with
1336f470021aSRoland McGrath 	 * p->real_parent->pid)
13371da177e4SLinus Torvalds 	 */
1338abd63bc3SKees Cook 	struct task_struct __rcu *real_parent; /* real parent process */
1339abd63bc3SKees Cook 	struct task_struct __rcu *parent; /* recipient of SIGCHLD, wait4() reports */
13401da177e4SLinus Torvalds 	/*
1341f470021aSRoland McGrath 	 * children/sibling forms the list of my natural children
13421da177e4SLinus Torvalds 	 */
13431da177e4SLinus Torvalds 	struct list_head children;	/* list of my children */
13441da177e4SLinus Torvalds 	struct list_head sibling;	/* linkage in my parent's children list */
13451da177e4SLinus Torvalds 	struct task_struct *group_leader;	/* threadgroup leader */
13461da177e4SLinus Torvalds 
1347f470021aSRoland McGrath 	/*
1348f470021aSRoland McGrath 	 * ptraced is the list of tasks this task is using ptrace on.
1349f470021aSRoland McGrath 	 * This includes both natural children and PTRACE_ATTACH targets.
1350f470021aSRoland McGrath 	 * p->ptrace_entry is p's link on the p->parent->ptraced list.
1351f470021aSRoland McGrath 	 */
1352f470021aSRoland McGrath 	struct list_head ptraced;
1353f470021aSRoland McGrath 	struct list_head ptrace_entry;
1354f470021aSRoland McGrath 
13551da177e4SLinus Torvalds 	/* PID/PID hash table linkage. */
135692476d7fSEric W. Biederman 	struct pid_link pids[PIDTYPE_MAX];
135747e65328SOleg Nesterov 	struct list_head thread_group;
13581da177e4SLinus Torvalds 
13591da177e4SLinus Torvalds 	struct completion *vfork_done;		/* for vfork() */
13601da177e4SLinus Torvalds 	int __user *set_child_tid;		/* CLONE_CHILD_SETTID */
13611da177e4SLinus Torvalds 	int __user *clear_child_tid;		/* CLONE_CHILD_CLEARTID */
13621da177e4SLinus Torvalds 
1363c66f08beSMichael Neuling 	cputime_t utime, stime, utimescaled, stimescaled;
13649ac52315SLaurent Vivier 	cputime_t gtime;
1365d99ca3b9SHidetoshi Seto #ifndef CONFIG_VIRT_CPU_ACCOUNTING
13669301899bSBalbir Singh 	cputime_t prev_utime, prev_stime;
1367d99ca3b9SHidetoshi Seto #endif
13681da177e4SLinus Torvalds 	unsigned long nvcsw, nivcsw; /* context switch counts */
1369924b42d5STomas Janousek 	struct timespec start_time; 		/* monotonic time */
1370924b42d5STomas Janousek 	struct timespec real_start_time;	/* boot based time */
13711da177e4SLinus Torvalds /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
13721da177e4SLinus Torvalds 	unsigned long min_flt, maj_flt;
13731da177e4SLinus Torvalds 
1374f06febc9SFrank Mayhar 	struct task_cputime cputime_expires;
13751da177e4SLinus Torvalds 	struct list_head cpu_timers[3];
13761da177e4SLinus Torvalds 
13771da177e4SLinus Torvalds /* process credentials */
13781b0ba1c9SArnd Bergmann 	const struct cred __rcu *real_cred; /* objective and real subjective task
13793b11a1deSDavid Howells 					 * credentials (COW) */
13801b0ba1c9SArnd Bergmann 	const struct cred __rcu *cred;	/* effective (overridable) subjective task
13813b11a1deSDavid Howells 					 * credentials (COW) */
138236772092SPaolo 'Blaisorblade' Giarrusso 	char comm[TASK_COMM_LEN]; /* executable name excluding path
138336772092SPaolo 'Blaisorblade' Giarrusso 				     - access with [gs]et_task_comm (which lock
138436772092SPaolo 'Blaisorblade' Giarrusso 				       it with task_lock())
1385221af7f8SLinus Torvalds 				     - initialized normally by setup_new_exec */
13861da177e4SLinus Torvalds /* file system info */
13871da177e4SLinus Torvalds 	int link_count, total_link_count;
13883d5b6fccSAlexey Dobriyan #ifdef CONFIG_SYSVIPC
13891da177e4SLinus Torvalds /* ipc stuff */
13901da177e4SLinus Torvalds 	struct sysv_sem sysvsem;
13913d5b6fccSAlexey Dobriyan #endif
1392e162b39aSMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK
139382a1fcb9SIngo Molnar /* hung task detection */
139482a1fcb9SIngo Molnar 	unsigned long last_switch_count;
139582a1fcb9SIngo Molnar #endif
13961da177e4SLinus Torvalds /* CPU-specific state of this task */
13971da177e4SLinus Torvalds 	struct thread_struct thread;
13981da177e4SLinus Torvalds /* filesystem information */
13991da177e4SLinus Torvalds 	struct fs_struct *fs;
14001da177e4SLinus Torvalds /* open file information */
14011da177e4SLinus Torvalds 	struct files_struct *files;
14021651e14eSSerge E. Hallyn /* namespaces */
1403ab516013SSerge E. Hallyn 	struct nsproxy *nsproxy;
14041da177e4SLinus Torvalds /* signal handlers */
14051da177e4SLinus Torvalds 	struct signal_struct *signal;
14061da177e4SLinus Torvalds 	struct sighand_struct *sighand;
14071da177e4SLinus Torvalds 
14081da177e4SLinus Torvalds 	sigset_t blocked, real_blocked;
1409f3de272bSRoland McGrath 	sigset_t saved_sigmask;	/* restored if set_restore_sigmask() was used */
14101da177e4SLinus Torvalds 	struct sigpending pending;
14111da177e4SLinus Torvalds 
14121da177e4SLinus Torvalds 	unsigned long sas_ss_sp;
14131da177e4SLinus Torvalds 	size_t sas_ss_size;
14141da177e4SLinus Torvalds 	int (*notifier)(void *priv);
14151da177e4SLinus Torvalds 	void *notifier_data;
14161da177e4SLinus Torvalds 	sigset_t *notifier_mask;
141767d12145SAl Viro 	struct callback_head *task_works;
1418e73f8959SOleg Nesterov 
14191da177e4SLinus Torvalds 	struct audit_context *audit_context;
1420bfef93a5SAl Viro #ifdef CONFIG_AUDITSYSCALL
1421bfef93a5SAl Viro 	uid_t loginuid;
14224746ec5bSEric Paris 	unsigned int sessionid;
1423bfef93a5SAl Viro #endif
1424932ecebbSWill Drewry 	struct seccomp seccomp;
14251da177e4SLinus Torvalds 
14261da177e4SLinus Torvalds /* Thread group tracking */
14271da177e4SLinus Torvalds    	u32 parent_exec_id;
14281da177e4SLinus Torvalds    	u32 self_exec_id;
142958568d2aSMiao Xie /* Protection of (de-)allocation: mm, files, fs, tty, keyrings, mems_allowed,
143058568d2aSMiao Xie  * mempolicy */
14311da177e4SLinus Torvalds 	spinlock_t alloc_lock;
14321da177e4SLinus Torvalds 
1433b29739f9SIngo Molnar 	/* Protection of the PI data structures: */
14341d615482SThomas Gleixner 	raw_spinlock_t pi_lock;
1435b29739f9SIngo Molnar 
143623f78d4aSIngo Molnar #ifdef CONFIG_RT_MUTEXES
143723f78d4aSIngo Molnar 	/* PI waiters blocked on a rt_mutex held by this task */
143823f78d4aSIngo Molnar 	struct plist_head pi_waiters;
143923f78d4aSIngo Molnar 	/* Deadlock detection and priority inheritance handling */
144023f78d4aSIngo Molnar 	struct rt_mutex_waiter *pi_blocked_on;
144123f78d4aSIngo Molnar #endif
144223f78d4aSIngo Molnar 
1443408894eeSIngo Molnar #ifdef CONFIG_DEBUG_MUTEXES
1444408894eeSIngo Molnar 	/* mutex deadlock detection */
1445408894eeSIngo Molnar 	struct mutex_waiter *blocked_on;
1446408894eeSIngo Molnar #endif
1447de30a2b3SIngo Molnar #ifdef CONFIG_TRACE_IRQFLAGS
1448de30a2b3SIngo Molnar 	unsigned int irq_events;
1449de30a2b3SIngo Molnar 	unsigned long hardirq_enable_ip;
1450de30a2b3SIngo Molnar 	unsigned long hardirq_disable_ip;
1451fa1452e8SHiroshi Shimamoto 	unsigned int hardirq_enable_event;
1452de30a2b3SIngo Molnar 	unsigned int hardirq_disable_event;
1453fa1452e8SHiroshi Shimamoto 	int hardirqs_enabled;
1454de30a2b3SIngo Molnar 	int hardirq_context;
1455fa1452e8SHiroshi Shimamoto 	unsigned long softirq_disable_ip;
1456fa1452e8SHiroshi Shimamoto 	unsigned long softirq_enable_ip;
1457fa1452e8SHiroshi Shimamoto 	unsigned int softirq_disable_event;
1458fa1452e8SHiroshi Shimamoto 	unsigned int softirq_enable_event;
1459fa1452e8SHiroshi Shimamoto 	int softirqs_enabled;
1460de30a2b3SIngo Molnar 	int softirq_context;
1461de30a2b3SIngo Molnar #endif
1462fbb9ce95SIngo Molnar #ifdef CONFIG_LOCKDEP
1463bdb9441eSPeter Zijlstra # define MAX_LOCK_DEPTH 48UL
1464fbb9ce95SIngo Molnar 	u64 curr_chain_key;
1465fbb9ce95SIngo Molnar 	int lockdep_depth;
1466fbb9ce95SIngo Molnar 	unsigned int lockdep_recursion;
1467c7aceabaSRichard Kennedy 	struct held_lock held_locks[MAX_LOCK_DEPTH];
1468cf40bd16SNick Piggin 	gfp_t lockdep_reclaim_gfp;
1469fbb9ce95SIngo Molnar #endif
1470408894eeSIngo Molnar 
14711da177e4SLinus Torvalds /* journalling filesystem info */
14721da177e4SLinus Torvalds 	void *journal_info;
14731da177e4SLinus Torvalds 
1474d89d8796SNeil Brown /* stacked block device info */
1475bddd87c7SAkinobu Mita 	struct bio_list *bio_list;
1476d89d8796SNeil Brown 
147773c10101SJens Axboe #ifdef CONFIG_BLOCK
147873c10101SJens Axboe /* stack plugging */
147973c10101SJens Axboe 	struct blk_plug *plug;
148073c10101SJens Axboe #endif
148173c10101SJens Axboe 
14821da177e4SLinus Torvalds /* VM state */
14831da177e4SLinus Torvalds 	struct reclaim_state *reclaim_state;
14841da177e4SLinus Torvalds 
14851da177e4SLinus Torvalds 	struct backing_dev_info *backing_dev_info;
14861da177e4SLinus Torvalds 
14871da177e4SLinus Torvalds 	struct io_context *io_context;
14881da177e4SLinus Torvalds 
14891da177e4SLinus Torvalds 	unsigned long ptrace_message;
14901da177e4SLinus Torvalds 	siginfo_t *last_siginfo; /* For ptrace use.  */
14917c3ab738SAndrew Morton 	struct task_io_accounting ioac;
14928f0ab514SJay Lan #if defined(CONFIG_TASK_XACCT)
14931da177e4SLinus Torvalds 	u64 acct_rss_mem1;	/* accumulated rss usage */
14941da177e4SLinus Torvalds 	u64 acct_vm_mem1;	/* accumulated virtual memory usage */
149549b5cf34SJonathan Lim 	cputime_t acct_timexpd;	/* stime + utime since last update */
14961da177e4SLinus Torvalds #endif
14971da177e4SLinus Torvalds #ifdef CONFIG_CPUSETS
149858568d2aSMiao Xie 	nodemask_t mems_allowed;	/* Protected by alloc_lock */
1499cc9a6c87SMel Gorman 	seqcount_t mems_allowed_seq;	/* Seqence no to catch updates */
1500825a46afSPaul Jackson 	int cpuset_mem_spread_rotor;
15016adef3ebSJack Steiner 	int cpuset_slab_spread_rotor;
15021da177e4SLinus Torvalds #endif
1503ddbcc7e8SPaul Menage #ifdef CONFIG_CGROUPS
1504817929ecSPaul Menage 	/* Control Group info protected by css_set_lock */
15052c392b8cSArnd Bergmann 	struct css_set __rcu *cgroups;
1506817929ecSPaul Menage 	/* cg_list protected by css_set_lock and tsk->alloc_lock */
1507817929ecSPaul Menage 	struct list_head cg_list;
1508ddbcc7e8SPaul Menage #endif
150942b2dd0aSAlexey Dobriyan #ifdef CONFIG_FUTEX
15100771dfefSIngo Molnar 	struct robust_list_head __user *robust_list;
151134f192c6SIngo Molnar #ifdef CONFIG_COMPAT
151234f192c6SIngo Molnar 	struct compat_robust_list_head __user *compat_robust_list;
151334f192c6SIngo Molnar #endif
1514c87e2837SIngo Molnar 	struct list_head pi_state_list;
1515c87e2837SIngo Molnar 	struct futex_pi_state *pi_state_cache;
151642b2dd0aSAlexey Dobriyan #endif
1517cdd6c482SIngo Molnar #ifdef CONFIG_PERF_EVENTS
15188dc85d54SPeter Zijlstra 	struct perf_event_context *perf_event_ctxp[perf_nr_task_contexts];
1519cdd6c482SIngo Molnar 	struct mutex perf_event_mutex;
1520cdd6c482SIngo Molnar 	struct list_head perf_event_list;
1521a63eaf34SPaul Mackerras #endif
1522c7aceabaSRichard Kennedy #ifdef CONFIG_NUMA
152358568d2aSMiao Xie 	struct mempolicy *mempolicy;	/* Protected by alloc_lock */
1524c7aceabaSRichard Kennedy 	short il_next;
1525207205a2SEric Dumazet 	short pref_node_fork;
1526c7aceabaSRichard Kennedy #endif
1527e56d0903SIngo Molnar 	struct rcu_head rcu;
1528b92ce558SJens Axboe 
1529b92ce558SJens Axboe 	/*
1530b92ce558SJens Axboe 	 * cache last used pipe for splice
1531b92ce558SJens Axboe 	 */
1532b92ce558SJens Axboe 	struct pipe_inode_info *splice_pipe;
1533*5640f768SEric Dumazet 
1534*5640f768SEric Dumazet 	struct page_frag task_frag;
1535*5640f768SEric Dumazet 
1536ca74e92bSShailabh Nagar #ifdef	CONFIG_TASK_DELAY_ACCT
1537ca74e92bSShailabh Nagar 	struct task_delay_info *delays;
1538ca74e92bSShailabh Nagar #endif
1539f4f154fdSAkinobu Mita #ifdef CONFIG_FAULT_INJECTION
1540f4f154fdSAkinobu Mita 	int make_it_fail;
1541f4f154fdSAkinobu Mita #endif
15429d823e8fSWu Fengguang 	/*
15439d823e8fSWu Fengguang 	 * when (nr_dirtied >= nr_dirtied_pause), it's time to call
15449d823e8fSWu Fengguang 	 * balance_dirty_pages() for some dirty throttling pause
15459d823e8fSWu Fengguang 	 */
15469d823e8fSWu Fengguang 	int nr_dirtied;
15479d823e8fSWu Fengguang 	int nr_dirtied_pause;
154883712358SWu Fengguang 	unsigned long dirty_paused_when; /* start of a write-and-pause period */
15499d823e8fSWu Fengguang 
15509745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP
15519745512cSArjan van de Ven 	int latency_record_count;
15529745512cSArjan van de Ven 	struct latency_record latency_record[LT_SAVECOUNT];
15539745512cSArjan van de Ven #endif
15546976675dSArjan van de Ven 	/*
15556976675dSArjan van de Ven 	 * time slack values; these are used to round up poll() and
15566976675dSArjan van de Ven 	 * select() etc timeout values. These are in nanoseconds.
15576976675dSArjan van de Ven 	 */
15586976675dSArjan van de Ven 	unsigned long timer_slack_ns;
15596976675dSArjan van de Ven 	unsigned long default_timer_slack_ns;
1560f8d570a4SDavid Miller 
1561fb52607aSFrederic Weisbecker #ifdef CONFIG_FUNCTION_GRAPH_TRACER
15623ad2f3fbSDaniel Mack 	/* Index of current stored address in ret_stack */
1563f201ae23SFrederic Weisbecker 	int curr_ret_stack;
1564f201ae23SFrederic Weisbecker 	/* Stack of return addresses for return function tracing */
1565f201ae23SFrederic Weisbecker 	struct ftrace_ret_stack	*ret_stack;
15668aef2d28SSteven Rostedt 	/* time stamp for last schedule */
15678aef2d28SSteven Rostedt 	unsigned long long ftrace_timestamp;
1568f201ae23SFrederic Weisbecker 	/*
1569f201ae23SFrederic Weisbecker 	 * Number of functions that haven't been traced
1570f201ae23SFrederic Weisbecker 	 * because of depth overrun.
1571f201ae23SFrederic Weisbecker 	 */
1572f201ae23SFrederic Weisbecker 	atomic_t trace_overrun;
1573380c4b14SFrederic Weisbecker 	/* Pause for the tracing */
1574380c4b14SFrederic Weisbecker 	atomic_t tracing_graph_pause;
1575f201ae23SFrederic Weisbecker #endif
1576ea4e2bc4SSteven Rostedt #ifdef CONFIG_TRACING
1577ea4e2bc4SSteven Rostedt 	/* state flags for use by tracers */
1578ea4e2bc4SSteven Rostedt 	unsigned long trace;
1579b1cff0adSSteven Rostedt 	/* bitmask and counter of trace recursion */
1580261842b7SSteven Rostedt 	unsigned long trace_recursion;
1581261842b7SSteven Rostedt #endif /* CONFIG_TRACING */
1582c255a458SAndrew Morton #ifdef CONFIG_MEMCG /* memcg uses this to do batch job */
1583569b846dSKAMEZAWA Hiroyuki 	struct memcg_batch_info {
1584569b846dSKAMEZAWA Hiroyuki 		int do_batch;	/* incremented when batch uncharge started */
1585569b846dSKAMEZAWA Hiroyuki 		struct mem_cgroup *memcg; /* target memcg of uncharge */
15867ffd4ca7SJohannes Weiner 		unsigned long nr_pages;	/* uncharged usage */
15877ffd4ca7SJohannes Weiner 		unsigned long memsw_nr_pages; /* uncharged mem+swap usage */
1588569b846dSKAMEZAWA Hiroyuki 	} memcg_batch;
1589569b846dSKAMEZAWA Hiroyuki #endif
1590bf26c018SFrederic Weisbecker #ifdef CONFIG_HAVE_HW_BREAKPOINT
1591bf26c018SFrederic Weisbecker 	atomic_t ptrace_bp_refcnt;
1592bf26c018SFrederic Weisbecker #endif
15930326f5a9SSrikar Dronamraju #ifdef CONFIG_UPROBES
15940326f5a9SSrikar Dronamraju 	struct uprobe_task *utask;
15950326f5a9SSrikar Dronamraju #endif
15961da177e4SLinus Torvalds };
15971da177e4SLinus Torvalds 
159876e6eee0SRusty Russell /* Future-safe accessor for struct task_struct's cpus_allowed. */
1599a4636818SRusty Russell #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
160076e6eee0SRusty Russell 
1601e05606d3SIngo Molnar /*
1602e05606d3SIngo Molnar  * Priority of a process goes from 0..MAX_PRIO-1, valid RT
1603e05606d3SIngo Molnar  * priority is 0..MAX_RT_PRIO-1, and SCHED_NORMAL/SCHED_BATCH
1604e05606d3SIngo Molnar  * tasks are in the range MAX_RT_PRIO..MAX_PRIO-1. Priority
1605e05606d3SIngo Molnar  * values are inverted: lower p->prio value means higher priority.
1606e05606d3SIngo Molnar  *
1607e05606d3SIngo Molnar  * The MAX_USER_RT_PRIO value allows the actual maximum
1608e05606d3SIngo Molnar  * RT priority to be separate from the value exported to
1609e05606d3SIngo Molnar  * user-space.  This allows kernel threads to set their
1610e05606d3SIngo Molnar  * priority to a value higher than any user task. Note:
1611e05606d3SIngo Molnar  * MAX_RT_PRIO must not be smaller than MAX_USER_RT_PRIO.
1612e05606d3SIngo Molnar  */
1613e05606d3SIngo Molnar 
1614e05606d3SIngo Molnar #define MAX_USER_RT_PRIO	100
1615e05606d3SIngo Molnar #define MAX_RT_PRIO		MAX_USER_RT_PRIO
1616e05606d3SIngo Molnar 
1617e05606d3SIngo Molnar #define MAX_PRIO		(MAX_RT_PRIO + 40)
1618e05606d3SIngo Molnar #define DEFAULT_PRIO		(MAX_RT_PRIO + 20)
1619e05606d3SIngo Molnar 
1620e05606d3SIngo Molnar static inline int rt_prio(int prio)
1621e05606d3SIngo Molnar {
1622e05606d3SIngo Molnar 	if (unlikely(prio < MAX_RT_PRIO))
1623e05606d3SIngo Molnar 		return 1;
1624e05606d3SIngo Molnar 	return 0;
1625e05606d3SIngo Molnar }
1626e05606d3SIngo Molnar 
1627e868171aSAlexey Dobriyan static inline int rt_task(struct task_struct *p)
1628e05606d3SIngo Molnar {
1629e05606d3SIngo Molnar 	return rt_prio(p->prio);
1630e05606d3SIngo Molnar }
1631e05606d3SIngo Molnar 
1632e868171aSAlexey Dobriyan static inline struct pid *task_pid(struct task_struct *task)
163322c935f4SEric W. Biederman {
163422c935f4SEric W. Biederman 	return task->pids[PIDTYPE_PID].pid;
163522c935f4SEric W. Biederman }
163622c935f4SEric W. Biederman 
1637e868171aSAlexey Dobriyan static inline struct pid *task_tgid(struct task_struct *task)
163822c935f4SEric W. Biederman {
163922c935f4SEric W. Biederman 	return task->group_leader->pids[PIDTYPE_PID].pid;
164022c935f4SEric W. Biederman }
164122c935f4SEric W. Biederman 
16426dda81f4SOleg Nesterov /*
16436dda81f4SOleg Nesterov  * Without tasklist or rcu lock it is not safe to dereference
16446dda81f4SOleg Nesterov  * the result of task_pgrp/task_session even if task == current,
16456dda81f4SOleg Nesterov  * we can race with another thread doing sys_setsid/sys_setpgid.
16466dda81f4SOleg Nesterov  */
1647e868171aSAlexey Dobriyan static inline struct pid *task_pgrp(struct task_struct *task)
164822c935f4SEric W. Biederman {
164922c935f4SEric W. Biederman 	return task->group_leader->pids[PIDTYPE_PGID].pid;
165022c935f4SEric W. Biederman }
165122c935f4SEric W. Biederman 
1652e868171aSAlexey Dobriyan static inline struct pid *task_session(struct task_struct *task)
165322c935f4SEric W. Biederman {
165422c935f4SEric W. Biederman 	return task->group_leader->pids[PIDTYPE_SID].pid;
165522c935f4SEric W. Biederman }
165622c935f4SEric W. Biederman 
16577af57294SPavel Emelyanov struct pid_namespace;
16587af57294SPavel Emelyanov 
16597af57294SPavel Emelyanov /*
16607af57294SPavel Emelyanov  * the helpers to get the task's different pids as they are seen
16617af57294SPavel Emelyanov  * from various namespaces
16627af57294SPavel Emelyanov  *
16637af57294SPavel Emelyanov  * task_xid_nr()     : global id, i.e. the id seen from the init namespace;
166444c4e1b2SEric W. Biederman  * task_xid_vnr()    : virtual id, i.e. the id seen from the pid namespace of
166544c4e1b2SEric W. Biederman  *                     current.
16667af57294SPavel Emelyanov  * task_xid_nr_ns()  : id seen from the ns specified;
16677af57294SPavel Emelyanov  *
16687af57294SPavel Emelyanov  * set_task_vxid()   : assigns a virtual id to a task;
16697af57294SPavel Emelyanov  *
16707af57294SPavel Emelyanov  * see also pid_nr() etc in include/linux/pid.h
16717af57294SPavel Emelyanov  */
167252ee2dfdSOleg Nesterov pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
167352ee2dfdSOleg Nesterov 			struct pid_namespace *ns);
16747af57294SPavel Emelyanov 
1675e868171aSAlexey Dobriyan static inline pid_t task_pid_nr(struct task_struct *tsk)
16767af57294SPavel Emelyanov {
16777af57294SPavel Emelyanov 	return tsk->pid;
16787af57294SPavel Emelyanov }
16797af57294SPavel Emelyanov 
168052ee2dfdSOleg Nesterov static inline pid_t task_pid_nr_ns(struct task_struct *tsk,
168152ee2dfdSOleg Nesterov 					struct pid_namespace *ns)
168252ee2dfdSOleg Nesterov {
168352ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_PID, ns);
168452ee2dfdSOleg Nesterov }
16857af57294SPavel Emelyanov 
16867af57294SPavel Emelyanov static inline pid_t task_pid_vnr(struct task_struct *tsk)
16877af57294SPavel Emelyanov {
168852ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_PID, NULL);
16897af57294SPavel Emelyanov }
16907af57294SPavel Emelyanov 
16917af57294SPavel Emelyanov 
1692e868171aSAlexey Dobriyan static inline pid_t task_tgid_nr(struct task_struct *tsk)
16937af57294SPavel Emelyanov {
16947af57294SPavel Emelyanov 	return tsk->tgid;
16957af57294SPavel Emelyanov }
16967af57294SPavel Emelyanov 
16972f2a3a46SPavel Emelyanov pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns);
16987af57294SPavel Emelyanov 
16997af57294SPavel Emelyanov static inline pid_t task_tgid_vnr(struct task_struct *tsk)
17007af57294SPavel Emelyanov {
17017af57294SPavel Emelyanov 	return pid_vnr(task_tgid(tsk));
17027af57294SPavel Emelyanov }
17037af57294SPavel Emelyanov 
17047af57294SPavel Emelyanov 
170552ee2dfdSOleg Nesterov static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk,
170652ee2dfdSOleg Nesterov 					struct pid_namespace *ns)
17077af57294SPavel Emelyanov {
170852ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_PGID, ns);
17097af57294SPavel Emelyanov }
17107af57294SPavel Emelyanov 
17117af57294SPavel Emelyanov static inline pid_t task_pgrp_vnr(struct task_struct *tsk)
17127af57294SPavel Emelyanov {
171352ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_PGID, NULL);
17147af57294SPavel Emelyanov }
17157af57294SPavel Emelyanov 
17167af57294SPavel Emelyanov 
171752ee2dfdSOleg Nesterov static inline pid_t task_session_nr_ns(struct task_struct *tsk,
171852ee2dfdSOleg Nesterov 					struct pid_namespace *ns)
17197af57294SPavel Emelyanov {
172052ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_SID, ns);
17217af57294SPavel Emelyanov }
17227af57294SPavel Emelyanov 
17237af57294SPavel Emelyanov static inline pid_t task_session_vnr(struct task_struct *tsk)
17247af57294SPavel Emelyanov {
172552ee2dfdSOleg Nesterov 	return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL);
17267af57294SPavel Emelyanov }
17277af57294SPavel Emelyanov 
17281b0f7ffdSOleg Nesterov /* obsolete, do not use */
17291b0f7ffdSOleg Nesterov static inline pid_t task_pgrp_nr(struct task_struct *tsk)
17301b0f7ffdSOleg Nesterov {
17311b0f7ffdSOleg Nesterov 	return task_pgrp_nr_ns(tsk, &init_pid_ns);
17321b0f7ffdSOleg Nesterov }
17337af57294SPavel Emelyanov 
17341da177e4SLinus Torvalds /**
17351da177e4SLinus Torvalds  * pid_alive - check that a task structure is not stale
17361da177e4SLinus Torvalds  * @p: Task structure to be checked.
17371da177e4SLinus Torvalds  *
17381da177e4SLinus Torvalds  * Test if a process is not yet dead (at most zombie state)
17391da177e4SLinus Torvalds  * If pid_alive fails, then pointers within the task structure
17401da177e4SLinus Torvalds  * can be stale and must not be dereferenced.
17411da177e4SLinus Torvalds  */
1742e868171aSAlexey Dobriyan static inline int pid_alive(struct task_struct *p)
17431da177e4SLinus Torvalds {
174492476d7fSEric W. Biederman 	return p->pids[PIDTYPE_PID].pid != NULL;
17451da177e4SLinus Torvalds }
17461da177e4SLinus Torvalds 
1747f400e198SSukadev Bhattiprolu /**
1748b460cbc5SSerge E. Hallyn  * is_global_init - check if a task structure is init
17493260259fSHenne  * @tsk: Task structure to be checked.
17503260259fSHenne  *
17513260259fSHenne  * Check if a task structure is the first user space task the kernel created.
1752f400e198SSukadev Bhattiprolu  */
1753e868171aSAlexey Dobriyan static inline int is_global_init(struct task_struct *tsk)
1754b461cc03SPavel Emelyanov {
1755b461cc03SPavel Emelyanov 	return tsk->pid == 1;
1756b461cc03SPavel Emelyanov }
1757b460cbc5SSerge E. Hallyn 
1758b460cbc5SSerge E. Hallyn /*
1759b460cbc5SSerge E. Hallyn  * is_container_init:
1760b460cbc5SSerge E. Hallyn  * check whether in the task is init in its own pid namespace.
1761b460cbc5SSerge E. Hallyn  */
1762b461cc03SPavel Emelyanov extern int is_container_init(struct task_struct *tsk);
1763f400e198SSukadev Bhattiprolu 
17649ec52099SCedric Le Goater extern struct pid *cad_pid;
17659ec52099SCedric Le Goater 
17661da177e4SLinus Torvalds extern void free_task(struct task_struct *tsk);
17671da177e4SLinus Torvalds #define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
1768e56d0903SIngo Molnar 
1769158d9ebdSAndrew Morton extern void __put_task_struct(struct task_struct *t);
1770e56d0903SIngo Molnar 
1771e56d0903SIngo Molnar static inline void put_task_struct(struct task_struct *t)
1772e56d0903SIngo Molnar {
1773e56d0903SIngo Molnar 	if (atomic_dec_and_test(&t->usage))
17748c7904a0SEric W. Biederman 		__put_task_struct(t);
1775e56d0903SIngo Molnar }
17761da177e4SLinus Torvalds 
1777d180c5bcSHidetoshi Seto extern void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st);
17780cf55e1eSHidetoshi Seto extern void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st);
177949048622SBalbir Singh 
17801da177e4SLinus Torvalds /*
17811da177e4SLinus Torvalds  * Per process flags
17821da177e4SLinus Torvalds  */
17831da177e4SLinus Torvalds #define PF_EXITING	0x00000004	/* getting shut down */
1784778e9a9cSAlexey Kuznetsov #define PF_EXITPIDONE	0x00000008	/* pi exit done on shut down */
178594886b84SLaurent Vivier #define PF_VCPU		0x00000010	/* I'm a virtual CPU */
178621aa9af0STejun Heo #define PF_WQ_WORKER	0x00000020	/* I'm a workqueue worker */
17871da177e4SLinus Torvalds #define PF_FORKNOEXEC	0x00000040	/* forked but didn't exec */
17884db96cf0SAndi Kleen #define PF_MCE_PROCESS  0x00000080      /* process policy on mce errors */
17891da177e4SLinus Torvalds #define PF_SUPERPRIV	0x00000100	/* used super-user privileges */
17901da177e4SLinus Torvalds #define PF_DUMPCORE	0x00000200	/* dumped core */
17911da177e4SLinus Torvalds #define PF_SIGNALED	0x00000400	/* killed by a signal */
17921da177e4SLinus Torvalds #define PF_MEMALLOC	0x00000800	/* Allocating memory */
179372fa5997SVasiliy Kulikov #define PF_NPROC_EXCEEDED 0x00001000	/* set_user noticed that RLIMIT_NPROC was exceeded */
17941da177e4SLinus Torvalds #define PF_USED_MATH	0x00002000	/* if unset the fpu must be initialized before use */
17951da177e4SLinus Torvalds #define PF_NOFREEZE	0x00008000	/* this thread should not be frozen */
17961da177e4SLinus Torvalds #define PF_FROZEN	0x00010000	/* frozen for system suspend */
17971da177e4SLinus Torvalds #define PF_FSTRANS	0x00020000	/* inside a filesystem transaction */
17981da177e4SLinus Torvalds #define PF_KSWAPD	0x00040000	/* I am kswapd */
17991da177e4SLinus Torvalds #define PF_LESS_THROTTLE 0x00100000	/* Throttle me less: I clean memory */
1800246bb0b1SOleg Nesterov #define PF_KTHREAD	0x00200000	/* I am a kernel thread */
1801b31dc66aSJens Axboe #define PF_RANDOMIZE	0x00400000	/* randomize virtual address space */
1802b31dc66aSJens Axboe #define PF_SWAPWRITE	0x00800000	/* Allowed to write to swap */
1803b31dc66aSJens Axboe #define PF_SPREAD_PAGE	0x01000000	/* Spread page cache over cpuset */
1804b31dc66aSJens Axboe #define PF_SPREAD_SLAB	0x02000000	/* Spread some slab caches over cpuset */
18059985b0baSDavid Rientjes #define PF_THREAD_BOUND	0x04000000	/* Thread bound to specific cpu */
18064db96cf0SAndi Kleen #define PF_MCE_EARLY    0x08000000      /* Early kill for mce process policy */
1807c61afb18SPaul Jackson #define PF_MEMPOLICY	0x10000000	/* Non-default NUMA mempolicy */
180861a87122SThomas Gleixner #define PF_MUTEX_TESTER	0x20000000	/* Thread belongs to the rt mutex tester */
180958a69cb4STejun Heo #define PF_FREEZER_SKIP	0x40000000	/* Freezer should not count it as freezable */
18101da177e4SLinus Torvalds 
18111da177e4SLinus Torvalds /*
18121da177e4SLinus Torvalds  * Only the _current_ task can read/write to tsk->flags, but other
18131da177e4SLinus Torvalds  * tasks can access tsk->flags in readonly mode for example
18141da177e4SLinus Torvalds  * with tsk_used_math (like during threaded core dumping).
18151da177e4SLinus Torvalds  * There is however an exception to this rule during ptrace
18161da177e4SLinus Torvalds  * or during fork: the ptracer task is allowed to write to the
18171da177e4SLinus Torvalds  * child->flags of its traced child (same goes for fork, the parent
18181da177e4SLinus Torvalds  * can write to the child->flags), because we're guaranteed the
18191da177e4SLinus Torvalds  * child is not running and in turn not changing child->flags
18201da177e4SLinus Torvalds  * at the same time the parent does it.
18211da177e4SLinus Torvalds  */
18221da177e4SLinus Torvalds #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
18231da177e4SLinus Torvalds #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
18241da177e4SLinus Torvalds #define clear_used_math() clear_stopped_child_used_math(current)
18251da177e4SLinus Torvalds #define set_used_math() set_stopped_child_used_math(current)
18261da177e4SLinus Torvalds #define conditional_stopped_child_used_math(condition, child) \
18271da177e4SLinus Torvalds 	do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
18281da177e4SLinus Torvalds #define conditional_used_math(condition) \
18291da177e4SLinus Torvalds 	conditional_stopped_child_used_math(condition, current)
18301da177e4SLinus Torvalds #define copy_to_stopped_child_used_math(child) \
18311da177e4SLinus Torvalds 	do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
18321da177e4SLinus Torvalds /* NOTE: this will return 0 or PF_USED_MATH, it will never return 1 */
18331da177e4SLinus Torvalds #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)
18341da177e4SLinus Torvalds #define used_math() tsk_used_math(current)
18351da177e4SLinus Torvalds 
1836e5c1902eSTejun Heo /*
1837a8f072c1STejun Heo  * task->jobctl flags
1838e5c1902eSTejun Heo  */
1839a8f072c1STejun Heo #define JOBCTL_STOP_SIGMASK	0xffff	/* signr of the last group stop */
1840e5c1902eSTejun Heo 
1841a8f072c1STejun Heo #define JOBCTL_STOP_DEQUEUED_BIT 16	/* stop signal dequeued */
1842a8f072c1STejun Heo #define JOBCTL_STOP_PENDING_BIT	17	/* task should stop for group stop */
1843a8f072c1STejun Heo #define JOBCTL_STOP_CONSUME_BIT	18	/* consume group stop count */
184473ddff2bSTejun Heo #define JOBCTL_TRAP_STOP_BIT	19	/* trap for STOP */
1845fb1d910cSTejun Heo #define JOBCTL_TRAP_NOTIFY_BIT	20	/* trap for NOTIFY */
1846a8f072c1STejun Heo #define JOBCTL_TRAPPING_BIT	21	/* switching to TRACED */
1847544b2c91STejun Heo #define JOBCTL_LISTENING_BIT	22	/* ptracer is listening for events */
1848a8f072c1STejun Heo 
1849a8f072c1STejun Heo #define JOBCTL_STOP_DEQUEUED	(1 << JOBCTL_STOP_DEQUEUED_BIT)
1850a8f072c1STejun Heo #define JOBCTL_STOP_PENDING	(1 << JOBCTL_STOP_PENDING_BIT)
1851a8f072c1STejun Heo #define JOBCTL_STOP_CONSUME	(1 << JOBCTL_STOP_CONSUME_BIT)
185273ddff2bSTejun Heo #define JOBCTL_TRAP_STOP	(1 << JOBCTL_TRAP_STOP_BIT)
1853fb1d910cSTejun Heo #define JOBCTL_TRAP_NOTIFY	(1 << JOBCTL_TRAP_NOTIFY_BIT)
1854a8f072c1STejun Heo #define JOBCTL_TRAPPING		(1 << JOBCTL_TRAPPING_BIT)
1855544b2c91STejun Heo #define JOBCTL_LISTENING	(1 << JOBCTL_LISTENING_BIT)
1856a8f072c1STejun Heo 
1857fb1d910cSTejun Heo #define JOBCTL_TRAP_MASK	(JOBCTL_TRAP_STOP | JOBCTL_TRAP_NOTIFY)
185873ddff2bSTejun Heo #define JOBCTL_PENDING_MASK	(JOBCTL_STOP_PENDING | JOBCTL_TRAP_MASK)
18593759a0d9STejun Heo 
18607dd3db54STejun Heo extern bool task_set_jobctl_pending(struct task_struct *task,
18617dd3db54STejun Heo 				    unsigned int mask);
186273ddff2bSTejun Heo extern void task_clear_jobctl_trapping(struct task_struct *task);
18633759a0d9STejun Heo extern void task_clear_jobctl_pending(struct task_struct *task,
18643759a0d9STejun Heo 				      unsigned int mask);
186539efa3efSTejun Heo 
1866a57eb940SPaul E. McKenney #ifdef CONFIG_PREEMPT_RCU
1867f41d911fSPaul E. McKenney 
1868f41d911fSPaul E. McKenney #define RCU_READ_UNLOCK_BLOCKED (1 << 0) /* blocked while in RCU read-side. */
18691aa03f11SPaul E. McKenney #define RCU_READ_UNLOCK_NEED_QS (1 << 1) /* RCU core needs CPU response. */
1870f41d911fSPaul E. McKenney 
1871f41d911fSPaul E. McKenney static inline void rcu_copy_process(struct task_struct *p)
1872f41d911fSPaul E. McKenney {
1873f41d911fSPaul E. McKenney 	p->rcu_read_lock_nesting = 0;
1874f41d911fSPaul E. McKenney 	p->rcu_read_unlock_special = 0;
1875a57eb940SPaul E. McKenney #ifdef CONFIG_TREE_PREEMPT_RCU
1876dd5d19baSPaul E. McKenney 	p->rcu_blocked_node = NULL;
187724278d14SPaul E. McKenney #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
187824278d14SPaul E. McKenney #ifdef CONFIG_RCU_BOOST
187924278d14SPaul E. McKenney 	p->rcu_boost_mutex = NULL;
188024278d14SPaul E. McKenney #endif /* #ifdef CONFIG_RCU_BOOST */
1881f41d911fSPaul E. McKenney 	INIT_LIST_HEAD(&p->rcu_node_entry);
1882f41d911fSPaul E. McKenney }
1883f41d911fSPaul E. McKenney 
1884f41d911fSPaul E. McKenney #else
1885f41d911fSPaul E. McKenney 
1886f41d911fSPaul E. McKenney static inline void rcu_copy_process(struct task_struct *p)
1887f41d911fSPaul E. McKenney {
1888f41d911fSPaul E. McKenney }
1889f41d911fSPaul E. McKenney 
1890f41d911fSPaul E. McKenney #endif
1891f41d911fSPaul E. McKenney 
1892907aed48SMel Gorman static inline void tsk_restore_flags(struct task_struct *task,
1893907aed48SMel Gorman 				unsigned long orig_flags, unsigned long flags)
1894907aed48SMel Gorman {
1895907aed48SMel Gorman 	task->flags &= ~flags;
1896907aed48SMel Gorman 	task->flags |= orig_flags & flags;
1897907aed48SMel Gorman }
1898907aed48SMel Gorman 
18991da177e4SLinus Torvalds #ifdef CONFIG_SMP
19001e1b6c51SKOSAKI Motohiro extern void do_set_cpus_allowed(struct task_struct *p,
19011e1b6c51SKOSAKI Motohiro 			       const struct cpumask *new_mask);
19021e1b6c51SKOSAKI Motohiro 
1903cd8ba7cdSMike Travis extern int set_cpus_allowed_ptr(struct task_struct *p,
190496f874e2SRusty Russell 				const struct cpumask *new_mask);
19051da177e4SLinus Torvalds #else
19061e1b6c51SKOSAKI Motohiro static inline void do_set_cpus_allowed(struct task_struct *p,
19071e1b6c51SKOSAKI Motohiro 				      const struct cpumask *new_mask)
19081e1b6c51SKOSAKI Motohiro {
19091e1b6c51SKOSAKI Motohiro }
1910cd8ba7cdSMike Travis static inline int set_cpus_allowed_ptr(struct task_struct *p,
191196f874e2SRusty Russell 				       const struct cpumask *new_mask)
19121da177e4SLinus Torvalds {
191396f874e2SRusty Russell 	if (!cpumask_test_cpu(0, new_mask))
19141da177e4SLinus Torvalds 		return -EINVAL;
19151da177e4SLinus Torvalds 	return 0;
19161da177e4SLinus Torvalds }
19171da177e4SLinus Torvalds #endif
1918e0ad9556SRusty Russell 
19195167e8d5SPeter Zijlstra #ifdef CONFIG_NO_HZ
19205167e8d5SPeter Zijlstra void calc_load_enter_idle(void);
19215167e8d5SPeter Zijlstra void calc_load_exit_idle(void);
19225167e8d5SPeter Zijlstra #else
19235167e8d5SPeter Zijlstra static inline void calc_load_enter_idle(void) { }
19245167e8d5SPeter Zijlstra static inline void calc_load_exit_idle(void) { }
19255167e8d5SPeter Zijlstra #endif /* CONFIG_NO_HZ */
19265167e8d5SPeter Zijlstra 
1927e0ad9556SRusty Russell #ifndef CONFIG_CPUMASK_OFFSTACK
1928cd8ba7cdSMike Travis static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
1929cd8ba7cdSMike Travis {
1930cd8ba7cdSMike Travis 	return set_cpus_allowed_ptr(p, &new_mask);
1931cd8ba7cdSMike Travis }
1932e0ad9556SRusty Russell #endif
19331da177e4SLinus Torvalds 
1934b342501cSIngo Molnar /*
1935c676329aSPeter Zijlstra  * Do not use outside of architecture code which knows its limitations.
1936c676329aSPeter Zijlstra  *
1937c676329aSPeter Zijlstra  * sched_clock() has no promise of monotonicity or bounded drift between
1938c676329aSPeter Zijlstra  * CPUs, use (which you should not) requires disabling IRQs.
1939c676329aSPeter Zijlstra  *
1940c676329aSPeter Zijlstra  * Please use one of the three interfaces below.
1941b342501cSIngo Molnar  */
19421bbfa6f2SMike Frysinger extern unsigned long long notrace sched_clock(void);
1943c676329aSPeter Zijlstra /*
1944489a71b0SHiroshi Shimamoto  * See the comment in kernel/sched/clock.c
1945c676329aSPeter Zijlstra  */
1946c676329aSPeter Zijlstra extern u64 cpu_clock(int cpu);
1947c676329aSPeter Zijlstra extern u64 local_clock(void);
1948c676329aSPeter Zijlstra extern u64 sched_clock_cpu(int cpu);
1949c676329aSPeter Zijlstra 
1950e436d800SIngo Molnar 
1951c1955a3dSPeter Zijlstra extern void sched_clock_init(void);
1952c1955a3dSPeter Zijlstra 
19533e51f33fSPeter Zijlstra #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
19543e51f33fSPeter Zijlstra static inline void sched_clock_tick(void)
19553e51f33fSPeter Zijlstra {
19563e51f33fSPeter Zijlstra }
19573e51f33fSPeter Zijlstra 
19583e51f33fSPeter Zijlstra static inline void sched_clock_idle_sleep_event(void)
19593e51f33fSPeter Zijlstra {
19603e51f33fSPeter Zijlstra }
19613e51f33fSPeter Zijlstra 
19623e51f33fSPeter Zijlstra static inline void sched_clock_idle_wakeup_event(u64 delta_ns)
19633e51f33fSPeter Zijlstra {
19643e51f33fSPeter Zijlstra }
19653e51f33fSPeter Zijlstra #else
1966c676329aSPeter Zijlstra /*
1967c676329aSPeter Zijlstra  * Architectures can set this to 1 if they have specified
1968c676329aSPeter Zijlstra  * CONFIG_HAVE_UNSTABLE_SCHED_CLOCK in their arch Kconfig,
1969c676329aSPeter Zijlstra  * but then during bootup it turns out that sched_clock()
1970c676329aSPeter Zijlstra  * is reliable after all:
1971c676329aSPeter Zijlstra  */
1972c676329aSPeter Zijlstra extern int sched_clock_stable;
1973c676329aSPeter Zijlstra 
19743e51f33fSPeter Zijlstra extern void sched_clock_tick(void);
19753e51f33fSPeter Zijlstra extern void sched_clock_idle_sleep_event(void);
19763e51f33fSPeter Zijlstra extern void sched_clock_idle_wakeup_event(u64 delta_ns);
19773e51f33fSPeter Zijlstra #endif
19783e51f33fSPeter Zijlstra 
1979b52bfee4SVenkatesh Pallipadi #ifdef CONFIG_IRQ_TIME_ACCOUNTING
1980b52bfee4SVenkatesh Pallipadi /*
1981b52bfee4SVenkatesh Pallipadi  * An i/f to runtime opt-in for irq time accounting based off of sched_clock.
1982b52bfee4SVenkatesh Pallipadi  * The reason for this explicit opt-in is not to have perf penalty with
1983b52bfee4SVenkatesh Pallipadi  * slow sched_clocks.
1984b52bfee4SVenkatesh Pallipadi  */
1985b52bfee4SVenkatesh Pallipadi extern void enable_sched_clock_irqtime(void);
1986b52bfee4SVenkatesh Pallipadi extern void disable_sched_clock_irqtime(void);
1987b52bfee4SVenkatesh Pallipadi #else
1988b52bfee4SVenkatesh Pallipadi static inline void enable_sched_clock_irqtime(void) {}
1989b52bfee4SVenkatesh Pallipadi static inline void disable_sched_clock_irqtime(void) {}
1990b52bfee4SVenkatesh Pallipadi #endif
1991b52bfee4SVenkatesh Pallipadi 
199236c8b586SIngo Molnar extern unsigned long long
199341b86e9cSIngo Molnar task_sched_runtime(struct task_struct *task);
19941da177e4SLinus Torvalds 
19951da177e4SLinus Torvalds /* sched_exec is called by processes performing an exec */
19961da177e4SLinus Torvalds #ifdef CONFIG_SMP
19971da177e4SLinus Torvalds extern void sched_exec(void);
19981da177e4SLinus Torvalds #else
19991da177e4SLinus Torvalds #define sched_exec()   {}
20001da177e4SLinus Torvalds #endif
20011da177e4SLinus Torvalds 
20022aa44d05SIngo Molnar extern void sched_clock_idle_sleep_event(void);
20032aa44d05SIngo Molnar extern void sched_clock_idle_wakeup_event(u64 delta_ns);
2004bb29ab26SIngo Molnar 
20051da177e4SLinus Torvalds #ifdef CONFIG_HOTPLUG_CPU
20061da177e4SLinus Torvalds extern void idle_task_exit(void);
20071da177e4SLinus Torvalds #else
20081da177e4SLinus Torvalds static inline void idle_task_exit(void) {}
20091da177e4SLinus Torvalds #endif
20101da177e4SLinus Torvalds 
201106d8308cSThomas Gleixner #if defined(CONFIG_NO_HZ) && defined(CONFIG_SMP)
201206d8308cSThomas Gleixner extern void wake_up_idle_cpu(int cpu);
201306d8308cSThomas Gleixner #else
201406d8308cSThomas Gleixner static inline void wake_up_idle_cpu(int cpu) { }
201506d8308cSThomas Gleixner #endif
201606d8308cSThomas Gleixner 
201721805085SPeter Zijlstra extern unsigned int sysctl_sched_latency;
2018b2be5e96SPeter Zijlstra extern unsigned int sysctl_sched_min_granularity;
2019bf0f6f24SIngo Molnar extern unsigned int sysctl_sched_wakeup_granularity;
2020bf0f6f24SIngo Molnar extern unsigned int sysctl_sched_child_runs_first;
20211983a922SChristian Ehrhardt 
20221983a922SChristian Ehrhardt enum sched_tunable_scaling {
20231983a922SChristian Ehrhardt 	SCHED_TUNABLESCALING_NONE,
20241983a922SChristian Ehrhardt 	SCHED_TUNABLESCALING_LOG,
20251983a922SChristian Ehrhardt 	SCHED_TUNABLESCALING_LINEAR,
20261983a922SChristian Ehrhardt 	SCHED_TUNABLESCALING_END,
20271983a922SChristian Ehrhardt };
20281983a922SChristian Ehrhardt extern enum sched_tunable_scaling sysctl_sched_tunable_scaling;
20291983a922SChristian Ehrhardt 
20302bba22c5SMike Galbraith #ifdef CONFIG_SCHED_DEBUG
2031da84d961SIngo Molnar extern unsigned int sysctl_sched_migration_cost;
2032b82d9fddSPeter Zijlstra extern unsigned int sysctl_sched_nr_migrate;
2033e9e9250bSPeter Zijlstra extern unsigned int sysctl_sched_time_avg;
2034cd1bb94bSArun R Bharadwaj extern unsigned int sysctl_timer_migration;
2035a7a4f8a7SPaul Turner extern unsigned int sysctl_sched_shares_window;
2036b2be5e96SPeter Zijlstra 
20371983a922SChristian Ehrhardt int sched_proc_update_handler(struct ctl_table *table, int write,
20388d65af78SAlexey Dobriyan 		void __user *buffer, size_t *length,
2039b2be5e96SPeter Zijlstra 		loff_t *ppos);
20402bd8e6d4SIngo Molnar #endif
2041eea08f32SArun R Bharadwaj #ifdef CONFIG_SCHED_DEBUG
2042eea08f32SArun R Bharadwaj static inline unsigned int get_sysctl_timer_migration(void)
2043eea08f32SArun R Bharadwaj {
2044eea08f32SArun R Bharadwaj 	return sysctl_timer_migration;
2045eea08f32SArun R Bharadwaj }
2046eea08f32SArun R Bharadwaj #else
2047eea08f32SArun R Bharadwaj static inline unsigned int get_sysctl_timer_migration(void)
2048eea08f32SArun R Bharadwaj {
2049eea08f32SArun R Bharadwaj 	return 1;
2050eea08f32SArun R Bharadwaj }
2051eea08f32SArun R Bharadwaj #endif
20529f0c1e56SPeter Zijlstra extern unsigned int sysctl_sched_rt_period;
20539f0c1e56SPeter Zijlstra extern int sysctl_sched_rt_runtime;
20542bd8e6d4SIngo Molnar 
2055d0b27fa7SPeter Zijlstra int sched_rt_handler(struct ctl_table *table, int write,
20568d65af78SAlexey Dobriyan 		void __user *buffer, size_t *lenp,
2057d0b27fa7SPeter Zijlstra 		loff_t *ppos);
2058d0b27fa7SPeter Zijlstra 
20595091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP
20605091faa4SMike Galbraith extern unsigned int sysctl_sched_autogroup_enabled;
20615091faa4SMike Galbraith 
20625091faa4SMike Galbraith extern void sched_autogroup_create_attach(struct task_struct *p);
20635091faa4SMike Galbraith extern void sched_autogroup_detach(struct task_struct *p);
20645091faa4SMike Galbraith extern void sched_autogroup_fork(struct signal_struct *sig);
20655091faa4SMike Galbraith extern void sched_autogroup_exit(struct signal_struct *sig);
20665091faa4SMike Galbraith #ifdef CONFIG_PROC_FS
20675091faa4SMike Galbraith extern void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m);
20682e5b5b3aSHiroshi Shimamoto extern int proc_sched_autogroup_set_nice(struct task_struct *p, int nice);
20695091faa4SMike Galbraith #endif
20705091faa4SMike Galbraith #else
20715091faa4SMike Galbraith static inline void sched_autogroup_create_attach(struct task_struct *p) { }
20725091faa4SMike Galbraith static inline void sched_autogroup_detach(struct task_struct *p) { }
20735091faa4SMike Galbraith static inline void sched_autogroup_fork(struct signal_struct *sig) { }
20745091faa4SMike Galbraith static inline void sched_autogroup_exit(struct signal_struct *sig) { }
20755091faa4SMike Galbraith #endif
20765091faa4SMike Galbraith 
2077ec12cb7fSPaul Turner #ifdef CONFIG_CFS_BANDWIDTH
2078ec12cb7fSPaul Turner extern unsigned int sysctl_sched_cfs_bandwidth_slice;
2079ec12cb7fSPaul Turner #endif
2080ec12cb7fSPaul Turner 
2081b29739f9SIngo Molnar #ifdef CONFIG_RT_MUTEXES
208236c8b586SIngo Molnar extern int rt_mutex_getprio(struct task_struct *p);
208336c8b586SIngo Molnar extern void rt_mutex_setprio(struct task_struct *p, int prio);
208436c8b586SIngo Molnar extern void rt_mutex_adjust_pi(struct task_struct *p);
20853c7d5184SThomas Gleixner static inline bool tsk_is_pi_blocked(struct task_struct *tsk)
20863c7d5184SThomas Gleixner {
20873c7d5184SThomas Gleixner 	return tsk->pi_blocked_on != NULL;
20883c7d5184SThomas Gleixner }
2089b29739f9SIngo Molnar #else
2090e868171aSAlexey Dobriyan static inline int rt_mutex_getprio(struct task_struct *p)
2091b29739f9SIngo Molnar {
2092b29739f9SIngo Molnar 	return p->normal_prio;
2093b29739f9SIngo Molnar }
209495e02ca9SThomas Gleixner # define rt_mutex_adjust_pi(p)		do { } while (0)
20953c7d5184SThomas Gleixner static inline bool tsk_is_pi_blocked(struct task_struct *tsk)
20963c7d5184SThomas Gleixner {
20973c7d5184SThomas Gleixner 	return false;
20983c7d5184SThomas Gleixner }
2099b29739f9SIngo Molnar #endif
2100b29739f9SIngo Molnar 
2101d95f4122SMike Galbraith extern bool yield_to(struct task_struct *p, bool preempt);
210236c8b586SIngo Molnar extern void set_user_nice(struct task_struct *p, long nice);
210336c8b586SIngo Molnar extern int task_prio(const struct task_struct *p);
210436c8b586SIngo Molnar extern int task_nice(const struct task_struct *p);
210536c8b586SIngo Molnar extern int can_nice(const struct task_struct *p, const int nice);
210636c8b586SIngo Molnar extern int task_curr(const struct task_struct *p);
21071da177e4SLinus Torvalds extern int idle_cpu(int cpu);
2108fe7de49fSKOSAKI Motohiro extern int sched_setscheduler(struct task_struct *, int,
2109fe7de49fSKOSAKI Motohiro 			      const struct sched_param *);
2110961ccdddSRusty Russell extern int sched_setscheduler_nocheck(struct task_struct *, int,
2111fe7de49fSKOSAKI Motohiro 				      const struct sched_param *);
211236c8b586SIngo Molnar extern struct task_struct *idle_task(int cpu);
2113c4f30608SPaul E. McKenney /**
2114c4f30608SPaul E. McKenney  * is_idle_task - is the specified task an idle task?
2115fa757281SRandy Dunlap  * @p: the task in question.
2116c4f30608SPaul E. McKenney  */
21177061ca3bSPaul E. McKenney static inline bool is_idle_task(const struct task_struct *p)
2118c4f30608SPaul E. McKenney {
2119c4f30608SPaul E. McKenney 	return p->pid == 0;
2120c4f30608SPaul E. McKenney }
212136c8b586SIngo Molnar extern struct task_struct *curr_task(int cpu);
212236c8b586SIngo Molnar extern void set_curr_task(int cpu, struct task_struct *p);
21231da177e4SLinus Torvalds 
21241da177e4SLinus Torvalds void yield(void);
21251da177e4SLinus Torvalds 
21261da177e4SLinus Torvalds /*
21271da177e4SLinus Torvalds  * The default (Linux) execution domain.
21281da177e4SLinus Torvalds  */
21291da177e4SLinus Torvalds extern struct exec_domain	default_exec_domain;
21301da177e4SLinus Torvalds 
21311da177e4SLinus Torvalds union thread_union {
21321da177e4SLinus Torvalds 	struct thread_info thread_info;
21331da177e4SLinus Torvalds 	unsigned long stack[THREAD_SIZE/sizeof(long)];
21341da177e4SLinus Torvalds };
21351da177e4SLinus Torvalds 
21361da177e4SLinus Torvalds #ifndef __HAVE_ARCH_KSTACK_END
21371da177e4SLinus Torvalds static inline int kstack_end(void *addr)
21381da177e4SLinus Torvalds {
21391da177e4SLinus Torvalds 	/* Reliable end of stack detection:
21401da177e4SLinus Torvalds 	 * Some APM bios versions misalign the stack
21411da177e4SLinus Torvalds 	 */
21421da177e4SLinus Torvalds 	return !(((unsigned long)addr+sizeof(void*)-1) & (THREAD_SIZE-sizeof(void*)));
21431da177e4SLinus Torvalds }
21441da177e4SLinus Torvalds #endif
21451da177e4SLinus Torvalds 
21461da177e4SLinus Torvalds extern union thread_union init_thread_union;
21471da177e4SLinus Torvalds extern struct task_struct init_task;
21481da177e4SLinus Torvalds 
21491da177e4SLinus Torvalds extern struct   mm_struct init_mm;
21501da177e4SLinus Torvalds 
2151198fe21bSPavel Emelyanov extern struct pid_namespace init_pid_ns;
2152198fe21bSPavel Emelyanov 
2153198fe21bSPavel Emelyanov /*
2154198fe21bSPavel Emelyanov  * find a task by one of its numerical ids
2155198fe21bSPavel Emelyanov  *
2156198fe21bSPavel Emelyanov  * find_task_by_pid_ns():
2157198fe21bSPavel Emelyanov  *      finds a task by its pid in the specified namespace
2158228ebcbeSPavel Emelyanov  * find_task_by_vpid():
2159228ebcbeSPavel Emelyanov  *      finds a task by its virtual pid
2160198fe21bSPavel Emelyanov  *
2161e49859e7SPavel Emelyanov  * see also find_vpid() etc in include/linux/pid.h
2162198fe21bSPavel Emelyanov  */
2163198fe21bSPavel Emelyanov 
2164228ebcbeSPavel Emelyanov extern struct task_struct *find_task_by_vpid(pid_t nr);
2165228ebcbeSPavel Emelyanov extern struct task_struct *find_task_by_pid_ns(pid_t nr,
2166228ebcbeSPavel Emelyanov 		struct pid_namespace *ns);
2167198fe21bSPavel Emelyanov 
21688520d7c7SOleg Nesterov extern void __set_special_pids(struct pid *pid);
21691da177e4SLinus Torvalds 
21701da177e4SLinus Torvalds /* per-UID process charging. */
21717b44ab97SEric W. Biederman extern struct user_struct * alloc_uid(kuid_t);
21721da177e4SLinus Torvalds static inline struct user_struct *get_uid(struct user_struct *u)
21731da177e4SLinus Torvalds {
21741da177e4SLinus Torvalds 	atomic_inc(&u->__count);
21751da177e4SLinus Torvalds 	return u;
21761da177e4SLinus Torvalds }
21771da177e4SLinus Torvalds extern void free_uid(struct user_struct *);
21781da177e4SLinus Torvalds 
21791da177e4SLinus Torvalds #include <asm/current.h>
21801da177e4SLinus Torvalds 
2181f0af911aSTorben Hohn extern void xtime_update(unsigned long ticks);
21821da177e4SLinus Torvalds 
2183b3c97528SHarvey Harrison extern int wake_up_state(struct task_struct *tsk, unsigned int state);
2184b3c97528SHarvey Harrison extern int wake_up_process(struct task_struct *tsk);
21853e51e3edSSamir Bellabes extern void wake_up_new_task(struct task_struct *tsk);
21861da177e4SLinus Torvalds #ifdef CONFIG_SMP
21871da177e4SLinus Torvalds  extern void kick_process(struct task_struct *tsk);
21881da177e4SLinus Torvalds #else
21891da177e4SLinus Torvalds  static inline void kick_process(struct task_struct *tsk) { }
21901da177e4SLinus Torvalds #endif
21913e51e3edSSamir Bellabes extern void sched_fork(struct task_struct *p);
2192ad46c2c4SIngo Molnar extern void sched_dead(struct task_struct *p);
21931da177e4SLinus Torvalds 
21941da177e4SLinus Torvalds extern void proc_caches_init(void);
21951da177e4SLinus Torvalds extern void flush_signals(struct task_struct *);
21963bcac026SDavid Howells extern void __flush_signals(struct task_struct *);
219710ab825bSOleg Nesterov extern void ignore_signals(struct task_struct *);
21981da177e4SLinus Torvalds extern void flush_signal_handlers(struct task_struct *, int force_default);
21991da177e4SLinus Torvalds extern int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info);
22001da177e4SLinus Torvalds 
22011da177e4SLinus Torvalds static inline int dequeue_signal_lock(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
22021da177e4SLinus Torvalds {
22031da177e4SLinus Torvalds 	unsigned long flags;
22041da177e4SLinus Torvalds 	int ret;
22051da177e4SLinus Torvalds 
22061da177e4SLinus Torvalds 	spin_lock_irqsave(&tsk->sighand->siglock, flags);
22071da177e4SLinus Torvalds 	ret = dequeue_signal(tsk, mask, info);
22081da177e4SLinus Torvalds 	spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
22091da177e4SLinus Torvalds 
22101da177e4SLinus Torvalds 	return ret;
22111da177e4SLinus Torvalds }
22121da177e4SLinus Torvalds 
22131da177e4SLinus Torvalds extern void block_all_signals(int (*notifier)(void *priv), void *priv,
22141da177e4SLinus Torvalds 			      sigset_t *mask);
22151da177e4SLinus Torvalds extern void unblock_all_signals(void);
22161da177e4SLinus Torvalds extern void release_task(struct task_struct * p);
22171da177e4SLinus Torvalds extern int send_sig_info(int, struct siginfo *, struct task_struct *);
22181da177e4SLinus Torvalds extern int force_sigsegv(int, struct task_struct *);
22191da177e4SLinus Torvalds extern int force_sig_info(int, struct siginfo *, struct task_struct *);
2220c4b92fc1SEric W. Biederman extern int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp);
2221c4b92fc1SEric W. Biederman extern int kill_pid_info(int sig, struct siginfo *info, struct pid *pid);
2222d178bc3aSSerge Hallyn extern int kill_pid_info_as_cred(int, struct siginfo *, struct pid *,
2223d178bc3aSSerge Hallyn 				const struct cred *, u32);
2224c4b92fc1SEric W. Biederman extern int kill_pgrp(struct pid *pid, int sig, int priv);
2225c4b92fc1SEric W. Biederman extern int kill_pid(struct pid *pid, int sig, int priv);
2226c3de4b38SMatthew Wilcox extern int kill_proc_info(int, struct siginfo *, pid_t);
222786773473SOleg Nesterov extern __must_check bool do_notify_parent(struct task_struct *, int);
2228a7f0765eSOleg Nesterov extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent);
22291da177e4SLinus Torvalds extern void force_sig(int, struct task_struct *);
22301da177e4SLinus Torvalds extern int send_sig(int, struct task_struct *, int);
223109faef11SOleg Nesterov extern int zap_other_threads(struct task_struct *p);
22321da177e4SLinus Torvalds extern struct sigqueue *sigqueue_alloc(void);
22331da177e4SLinus Torvalds extern void sigqueue_free(struct sigqueue *);
2234ac5c2153SOleg Nesterov extern int send_sigqueue(struct sigqueue *,  struct task_struct *, int group);
22359ac95f2fSOleg Nesterov extern int do_sigaction(int, struct k_sigaction *, struct k_sigaction *);
22361da177e4SLinus Torvalds extern int do_sigaltstack(const stack_t __user *, stack_t __user *, unsigned long);
22371da177e4SLinus Torvalds 
223851a7b448SAl Viro static inline void restore_saved_sigmask(void)
223951a7b448SAl Viro {
224051a7b448SAl Viro 	if (test_and_clear_restore_sigmask())
224177097ae5SAl Viro 		__set_current_blocked(&current->saved_sigmask);
224251a7b448SAl Viro }
224351a7b448SAl Viro 
2244b7f9a11aSAl Viro static inline sigset_t *sigmask_to_save(void)
2245b7f9a11aSAl Viro {
2246b7f9a11aSAl Viro 	sigset_t *res = &current->blocked;
2247b7f9a11aSAl Viro 	if (unlikely(test_restore_sigmask()))
2248b7f9a11aSAl Viro 		res = &current->saved_sigmask;
2249b7f9a11aSAl Viro 	return res;
2250b7f9a11aSAl Viro }
2251b7f9a11aSAl Viro 
22529ec52099SCedric Le Goater static inline int kill_cad_pid(int sig, int priv)
22539ec52099SCedric Le Goater {
22549ec52099SCedric Le Goater 	return kill_pid(cad_pid, sig, priv);
22559ec52099SCedric Le Goater }
22569ec52099SCedric Le Goater 
22571da177e4SLinus Torvalds /* These can be the second arg to send_sig_info/send_group_sig_info.  */
22581da177e4SLinus Torvalds #define SEND_SIG_NOINFO ((struct siginfo *) 0)
22591da177e4SLinus Torvalds #define SEND_SIG_PRIV	((struct siginfo *) 1)
22601da177e4SLinus Torvalds #define SEND_SIG_FORCED	((struct siginfo *) 2)
22611da177e4SLinus Torvalds 
22622a855dd0SSebastian Andrzej Siewior /*
22632a855dd0SSebastian Andrzej Siewior  * True if we are on the alternate signal stack.
22642a855dd0SSebastian Andrzej Siewior  */
22651da177e4SLinus Torvalds static inline int on_sig_stack(unsigned long sp)
22661da177e4SLinus Torvalds {
22672a855dd0SSebastian Andrzej Siewior #ifdef CONFIG_STACK_GROWSUP
22682a855dd0SSebastian Andrzej Siewior 	return sp >= current->sas_ss_sp &&
22692a855dd0SSebastian Andrzej Siewior 		sp - current->sas_ss_sp < current->sas_ss_size;
22702a855dd0SSebastian Andrzej Siewior #else
22712a855dd0SSebastian Andrzej Siewior 	return sp > current->sas_ss_sp &&
22722a855dd0SSebastian Andrzej Siewior 		sp - current->sas_ss_sp <= current->sas_ss_size;
22732a855dd0SSebastian Andrzej Siewior #endif
22741da177e4SLinus Torvalds }
22751da177e4SLinus Torvalds 
22761da177e4SLinus Torvalds static inline int sas_ss_flags(unsigned long sp)
22771da177e4SLinus Torvalds {
22781da177e4SLinus Torvalds 	return (current->sas_ss_size == 0 ? SS_DISABLE
22791da177e4SLinus Torvalds 		: on_sig_stack(sp) ? SS_ONSTACK : 0);
22801da177e4SLinus Torvalds }
22811da177e4SLinus Torvalds 
22821da177e4SLinus Torvalds /*
22831da177e4SLinus Torvalds  * Routines for handling mm_structs
22841da177e4SLinus Torvalds  */
22851da177e4SLinus Torvalds extern struct mm_struct * mm_alloc(void);
22861da177e4SLinus Torvalds 
22871da177e4SLinus Torvalds /* mmdrop drops the mm and the page tables */
2288b3c97528SHarvey Harrison extern void __mmdrop(struct mm_struct *);
22891da177e4SLinus Torvalds static inline void mmdrop(struct mm_struct * mm)
22901da177e4SLinus Torvalds {
22916fb43d7bSIngo Molnar 	if (unlikely(atomic_dec_and_test(&mm->mm_count)))
22921da177e4SLinus Torvalds 		__mmdrop(mm);
22931da177e4SLinus Torvalds }
22941da177e4SLinus Torvalds 
22951da177e4SLinus Torvalds /* mmput gets rid of the mappings and all user-space */
22961da177e4SLinus Torvalds extern void mmput(struct mm_struct *);
22971da177e4SLinus Torvalds /* Grab a reference to a task's mm, if it is not already going away */
22981da177e4SLinus Torvalds extern struct mm_struct *get_task_mm(struct task_struct *task);
22998cdb878dSChristopher Yeoh /*
23008cdb878dSChristopher Yeoh  * Grab a reference to a task's mm, if it is not already going away
23018cdb878dSChristopher Yeoh  * and ptrace_may_access with the mode parameter passed to it
23028cdb878dSChristopher Yeoh  * succeeds.
23038cdb878dSChristopher Yeoh  */
23048cdb878dSChristopher Yeoh extern struct mm_struct *mm_access(struct task_struct *task, unsigned int mode);
23051da177e4SLinus Torvalds /* Remove the current tasks stale references to the old mm_struct */
23061da177e4SLinus Torvalds extern void mm_release(struct task_struct *, struct mm_struct *);
2307402b0862SCarsten Otte /* Allocate a new mm structure and copy contents from tsk->mm */
2308402b0862SCarsten Otte extern struct mm_struct *dup_mm(struct task_struct *tsk);
23091da177e4SLinus Torvalds 
23106f2c55b8SAlexey Dobriyan extern int copy_thread(unsigned long, unsigned long, unsigned long,
23116f2c55b8SAlexey Dobriyan 			struct task_struct *, struct pt_regs *);
23121da177e4SLinus Torvalds extern void flush_thread(void);
23131da177e4SLinus Torvalds extern void exit_thread(void);
23141da177e4SLinus Torvalds 
23151da177e4SLinus Torvalds extern void exit_files(struct task_struct *);
2316a7e5328aSOleg Nesterov extern void __cleanup_sighand(struct sighand_struct *);
2317cbaffba1SOleg Nesterov 
23181da177e4SLinus Torvalds extern void exit_itimers(struct signal_struct *);
2319cbaffba1SOleg Nesterov extern void flush_itimer_signals(void);
23201da177e4SLinus Torvalds 
23219402c95fSJoe Perches extern void do_group_exit(int);
23221da177e4SLinus Torvalds 
23231da177e4SLinus Torvalds extern void daemonize(const char *, ...);
23241da177e4SLinus Torvalds extern int allow_signal(int);
23251da177e4SLinus Torvalds extern int disallow_signal(int);
23261da177e4SLinus Torvalds 
2327d7627467SDavid Howells extern int do_execve(const char *,
2328d7627467SDavid Howells 		     const char __user * const __user *,
2329d7627467SDavid Howells 		     const char __user * const __user *, struct pt_regs *);
23301da177e4SLinus Torvalds extern long do_fork(unsigned long, unsigned long, struct pt_regs *, unsigned long, int __user *, int __user *);
233136c8b586SIngo Molnar struct task_struct *fork_idle(int);
23321da177e4SLinus Torvalds 
23331da177e4SLinus Torvalds extern void set_task_comm(struct task_struct *tsk, char *from);
233459714d65SAndrew Morton extern char *get_task_comm(char *to, struct task_struct *tsk);
23351da177e4SLinus Torvalds 
23361da177e4SLinus Torvalds #ifdef CONFIG_SMP
2337317f3941SPeter Zijlstra void scheduler_ipi(void);
233885ba2d86SRoland McGrath extern unsigned long wait_task_inactive(struct task_struct *, long match_state);
23391da177e4SLinus Torvalds #else
2340184748ccSPeter Zijlstra static inline void scheduler_ipi(void) { }
234185ba2d86SRoland McGrath static inline unsigned long wait_task_inactive(struct task_struct *p,
234285ba2d86SRoland McGrath 					       long match_state)
234385ba2d86SRoland McGrath {
234485ba2d86SRoland McGrath 	return 1;
234585ba2d86SRoland McGrath }
23461da177e4SLinus Torvalds #endif
23471da177e4SLinus Torvalds 
234805725f7eSJiri Pirko #define next_task(p) \
234905725f7eSJiri Pirko 	list_entry_rcu((p)->tasks.next, struct task_struct, tasks)
23501da177e4SLinus Torvalds 
23511da177e4SLinus Torvalds #define for_each_process(p) \
23521da177e4SLinus Torvalds 	for (p = &init_task ; (p = next_task(p)) != &init_task ; )
23531da177e4SLinus Torvalds 
23545bb459bbSOleg Nesterov extern bool current_is_single_threaded(void);
2355d84f4f99SDavid Howells 
23561da177e4SLinus Torvalds /*
23571da177e4SLinus Torvalds  * Careful: do_each_thread/while_each_thread is a double loop so
23581da177e4SLinus Torvalds  *          'break' will not work as expected - use goto instead.
23591da177e4SLinus Torvalds  */
23601da177e4SLinus Torvalds #define do_each_thread(g, t) \
23611da177e4SLinus Torvalds 	for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
23621da177e4SLinus Torvalds 
23631da177e4SLinus Torvalds #define while_each_thread(g, t) \
23641da177e4SLinus Torvalds 	while ((t = next_thread(t)) != g)
23651da177e4SLinus Torvalds 
23667e49827cSOleg Nesterov static inline int get_nr_threads(struct task_struct *tsk)
23677e49827cSOleg Nesterov {
2368b3ac022cSOleg Nesterov 	return tsk->signal->nr_threads;
23697e49827cSOleg Nesterov }
23707e49827cSOleg Nesterov 
2371087806b1SOleg Nesterov static inline bool thread_group_leader(struct task_struct *p)
2372087806b1SOleg Nesterov {
2373087806b1SOleg Nesterov 	return p->exit_signal >= 0;
2374087806b1SOleg Nesterov }
23751da177e4SLinus Torvalds 
23760804ef4bSEric W. Biederman /* Do to the insanities of de_thread it is possible for a process
23770804ef4bSEric W. Biederman  * to have the pid of the thread group leader without actually being
23780804ef4bSEric W. Biederman  * the thread group leader.  For iteration through the pids in proc
23790804ef4bSEric W. Biederman  * all we care about is that we have a task with the appropriate
23800804ef4bSEric W. Biederman  * pid, we don't actually care if we have the right task.
23810804ef4bSEric W. Biederman  */
2382e868171aSAlexey Dobriyan static inline int has_group_leader_pid(struct task_struct *p)
23830804ef4bSEric W. Biederman {
23840804ef4bSEric W. Biederman 	return p->pid == p->tgid;
23850804ef4bSEric W. Biederman }
23860804ef4bSEric W. Biederman 
2387bac0abd6SPavel Emelyanov static inline
2388bac0abd6SPavel Emelyanov int same_thread_group(struct task_struct *p1, struct task_struct *p2)
2389bac0abd6SPavel Emelyanov {
2390bac0abd6SPavel Emelyanov 	return p1->tgid == p2->tgid;
2391bac0abd6SPavel Emelyanov }
2392bac0abd6SPavel Emelyanov 
239336c8b586SIngo Molnar static inline struct task_struct *next_thread(const struct task_struct *p)
239447e65328SOleg Nesterov {
239505725f7eSJiri Pirko 	return list_entry_rcu(p->thread_group.next,
239636c8b586SIngo Molnar 			      struct task_struct, thread_group);
239747e65328SOleg Nesterov }
239847e65328SOleg Nesterov 
2399e868171aSAlexey Dobriyan static inline int thread_group_empty(struct task_struct *p)
24001da177e4SLinus Torvalds {
240147e65328SOleg Nesterov 	return list_empty(&p->thread_group);
24021da177e4SLinus Torvalds }
24031da177e4SLinus Torvalds 
24041da177e4SLinus Torvalds #define delay_group_leader(p) \
24051da177e4SLinus Torvalds 		(thread_group_leader(p) && !thread_group_empty(p))
24061da177e4SLinus Torvalds 
24071da177e4SLinus Torvalds /*
2408260ea101SEric W. Biederman  * Protects ->fs, ->files, ->mm, ->group_info, ->comm, keyring
240922e2c507SJens Axboe  * subscriptions and synchronises with wait4().  Also used in procfs.  Also
2410ddbcc7e8SPaul Menage  * pins the final release of task.io_context.  Also protects ->cpuset and
2411d68b46feSOleg Nesterov  * ->cgroup.subsys[]. And ->vfork_done.
24121da177e4SLinus Torvalds  *
24131da177e4SLinus Torvalds  * Nests both inside and outside of read_lock(&tasklist_lock).
24141da177e4SLinus Torvalds  * It must not be nested with write_lock_irq(&tasklist_lock),
24151da177e4SLinus Torvalds  * neither inside nor outside.
24161da177e4SLinus Torvalds  */
24171da177e4SLinus Torvalds static inline void task_lock(struct task_struct *p)
24181da177e4SLinus Torvalds {
24191da177e4SLinus Torvalds 	spin_lock(&p->alloc_lock);
24201da177e4SLinus Torvalds }
24211da177e4SLinus Torvalds 
24221da177e4SLinus Torvalds static inline void task_unlock(struct task_struct *p)
24231da177e4SLinus Torvalds {
24241da177e4SLinus Torvalds 	spin_unlock(&p->alloc_lock);
24251da177e4SLinus Torvalds }
24261da177e4SLinus Torvalds 
2427b8ed374eSNamhyung Kim extern struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
2428f63ee72eSOleg Nesterov 							unsigned long *flags);
2429f63ee72eSOleg Nesterov 
24309388dc30SAnton Vorontsov static inline struct sighand_struct *lock_task_sighand(struct task_struct *tsk,
24319388dc30SAnton Vorontsov 						       unsigned long *flags)
24329388dc30SAnton Vorontsov {
24339388dc30SAnton Vorontsov 	struct sighand_struct *ret;
24349388dc30SAnton Vorontsov 
24359388dc30SAnton Vorontsov 	ret = __lock_task_sighand(tsk, flags);
24369388dc30SAnton Vorontsov 	(void)__cond_lock(&tsk->sighand->siglock, ret);
24379388dc30SAnton Vorontsov 	return ret;
24389388dc30SAnton Vorontsov }
2439b8ed374eSNamhyung Kim 
2440f63ee72eSOleg Nesterov static inline void unlock_task_sighand(struct task_struct *tsk,
2441f63ee72eSOleg Nesterov 						unsigned long *flags)
2442f63ee72eSOleg Nesterov {
2443f63ee72eSOleg Nesterov 	spin_unlock_irqrestore(&tsk->sighand->siglock, *flags);
2444f63ee72eSOleg Nesterov }
2445f63ee72eSOleg Nesterov 
24464714d1d3SBen Blum #ifdef CONFIG_CGROUPS
2447257058aeSTejun Heo static inline void threadgroup_change_begin(struct task_struct *tsk)
24484714d1d3SBen Blum {
2449257058aeSTejun Heo 	down_read(&tsk->signal->group_rwsem);
24504714d1d3SBen Blum }
2451257058aeSTejun Heo static inline void threadgroup_change_end(struct task_struct *tsk)
24524714d1d3SBen Blum {
2453257058aeSTejun Heo 	up_read(&tsk->signal->group_rwsem);
24544714d1d3SBen Blum }
245577e4ef99STejun Heo 
245677e4ef99STejun Heo /**
245777e4ef99STejun Heo  * threadgroup_lock - lock threadgroup
245877e4ef99STejun Heo  * @tsk: member task of the threadgroup to lock
245977e4ef99STejun Heo  *
246077e4ef99STejun Heo  * Lock the threadgroup @tsk belongs to.  No new task is allowed to enter
246177e4ef99STejun Heo  * and member tasks aren't allowed to exit (as indicated by PF_EXITING) or
246277e4ef99STejun Heo  * perform exec.  This is useful for cases where the threadgroup needs to
246377e4ef99STejun Heo  * stay stable across blockable operations.
246477e4ef99STejun Heo  *
246577e4ef99STejun Heo  * fork and exit paths explicitly call threadgroup_change_{begin|end}() for
246677e4ef99STejun Heo  * synchronization.  While held, no new task will be added to threadgroup
246777e4ef99STejun Heo  * and no existing live task will have its PF_EXITING set.
246877e4ef99STejun Heo  *
246977e4ef99STejun Heo  * During exec, a task goes and puts its thread group through unusual
247077e4ef99STejun Heo  * changes.  After de-threading, exclusive access is assumed to resources
247177e4ef99STejun Heo  * which are usually shared by tasks in the same group - e.g. sighand may
247277e4ef99STejun Heo  * be replaced with a new one.  Also, the exec'ing task takes over group
247377e4ef99STejun Heo  * leader role including its pid.  Exclude these changes while locked by
247477e4ef99STejun Heo  * grabbing cred_guard_mutex which is used to synchronize exec path.
247577e4ef99STejun Heo  */
2476257058aeSTejun Heo static inline void threadgroup_lock(struct task_struct *tsk)
24774714d1d3SBen Blum {
247877e4ef99STejun Heo 	/*
247977e4ef99STejun Heo 	 * exec uses exit for de-threading nesting group_rwsem inside
248077e4ef99STejun Heo 	 * cred_guard_mutex. Grab cred_guard_mutex first.
248177e4ef99STejun Heo 	 */
248277e4ef99STejun Heo 	mutex_lock(&tsk->signal->cred_guard_mutex);
2483257058aeSTejun Heo 	down_write(&tsk->signal->group_rwsem);
24844714d1d3SBen Blum }
248577e4ef99STejun Heo 
248677e4ef99STejun Heo /**
248777e4ef99STejun Heo  * threadgroup_unlock - unlock threadgroup
248877e4ef99STejun Heo  * @tsk: member task of the threadgroup to unlock
248977e4ef99STejun Heo  *
249077e4ef99STejun Heo  * Reverse threadgroup_lock().
249177e4ef99STejun Heo  */
2492257058aeSTejun Heo static inline void threadgroup_unlock(struct task_struct *tsk)
24934714d1d3SBen Blum {
2494257058aeSTejun Heo 	up_write(&tsk->signal->group_rwsem);
249577e4ef99STejun Heo 	mutex_unlock(&tsk->signal->cred_guard_mutex);
24964714d1d3SBen Blum }
24974714d1d3SBen Blum #else
2498257058aeSTejun Heo static inline void threadgroup_change_begin(struct task_struct *tsk) {}
2499257058aeSTejun Heo static inline void threadgroup_change_end(struct task_struct *tsk) {}
2500257058aeSTejun Heo static inline void threadgroup_lock(struct task_struct *tsk) {}
2501257058aeSTejun Heo static inline void threadgroup_unlock(struct task_struct *tsk) {}
25024714d1d3SBen Blum #endif
25034714d1d3SBen Blum 
2504f037360fSAl Viro #ifndef __HAVE_THREAD_FUNCTIONS
2505f037360fSAl Viro 
2506f7e4217bSRoman Zippel #define task_thread_info(task)	((struct thread_info *)(task)->stack)
2507f7e4217bSRoman Zippel #define task_stack_page(task)	((task)->stack)
2508a1261f54SAl Viro 
250910ebffdeSAl Viro static inline void setup_thread_stack(struct task_struct *p, struct task_struct *org)
251010ebffdeSAl Viro {
251110ebffdeSAl Viro 	*task_thread_info(p) = *task_thread_info(org);
251210ebffdeSAl Viro 	task_thread_info(p)->task = p;
251310ebffdeSAl Viro }
251410ebffdeSAl Viro 
251510ebffdeSAl Viro static inline unsigned long *end_of_stack(struct task_struct *p)
251610ebffdeSAl Viro {
2517f7e4217bSRoman Zippel 	return (unsigned long *)(task_thread_info(p) + 1);
251810ebffdeSAl Viro }
251910ebffdeSAl Viro 
2520f037360fSAl Viro #endif
2521f037360fSAl Viro 
25228b05c7e6SFUJITA Tomonori static inline int object_is_on_stack(void *obj)
25238b05c7e6SFUJITA Tomonori {
25248b05c7e6SFUJITA Tomonori 	void *stack = task_stack_page(current);
25258b05c7e6SFUJITA Tomonori 
25268b05c7e6SFUJITA Tomonori 	return (obj >= stack) && (obj < (stack + THREAD_SIZE));
25278b05c7e6SFUJITA Tomonori }
25288b05c7e6SFUJITA Tomonori 
25298c9843e5SBenjamin Herrenschmidt extern void thread_info_cache_init(void);
25308c9843e5SBenjamin Herrenschmidt 
25317c9f8861SEric Sandeen #ifdef CONFIG_DEBUG_STACK_USAGE
25327c9f8861SEric Sandeen static inline unsigned long stack_not_used(struct task_struct *p)
25337c9f8861SEric Sandeen {
25347c9f8861SEric Sandeen 	unsigned long *n = end_of_stack(p);
25357c9f8861SEric Sandeen 
25367c9f8861SEric Sandeen 	do { 	/* Skip over canary */
25377c9f8861SEric Sandeen 		n++;
25387c9f8861SEric Sandeen 	} while (!*n);
25397c9f8861SEric Sandeen 
25407c9f8861SEric Sandeen 	return (unsigned long)n - (unsigned long)end_of_stack(p);
25417c9f8861SEric Sandeen }
25427c9f8861SEric Sandeen #endif
25437c9f8861SEric Sandeen 
25441da177e4SLinus Torvalds /* set thread flags in other task's structures
25451da177e4SLinus Torvalds  * - see asm/thread_info.h for TIF_xxxx flags available
25461da177e4SLinus Torvalds  */
25471da177e4SLinus Torvalds static inline void set_tsk_thread_flag(struct task_struct *tsk, int flag)
25481da177e4SLinus Torvalds {
2549a1261f54SAl Viro 	set_ti_thread_flag(task_thread_info(tsk), flag);
25501da177e4SLinus Torvalds }
25511da177e4SLinus Torvalds 
25521da177e4SLinus Torvalds static inline void clear_tsk_thread_flag(struct task_struct *tsk, int flag)
25531da177e4SLinus Torvalds {
2554a1261f54SAl Viro 	clear_ti_thread_flag(task_thread_info(tsk), flag);
25551da177e4SLinus Torvalds }
25561da177e4SLinus Torvalds 
25571da177e4SLinus Torvalds static inline int test_and_set_tsk_thread_flag(struct task_struct *tsk, int flag)
25581da177e4SLinus Torvalds {
2559a1261f54SAl Viro 	return test_and_set_ti_thread_flag(task_thread_info(tsk), flag);
25601da177e4SLinus Torvalds }
25611da177e4SLinus Torvalds 
25621da177e4SLinus Torvalds static inline int test_and_clear_tsk_thread_flag(struct task_struct *tsk, int flag)
25631da177e4SLinus Torvalds {
2564a1261f54SAl Viro 	return test_and_clear_ti_thread_flag(task_thread_info(tsk), flag);
25651da177e4SLinus Torvalds }
25661da177e4SLinus Torvalds 
25671da177e4SLinus Torvalds static inline int test_tsk_thread_flag(struct task_struct *tsk, int flag)
25681da177e4SLinus Torvalds {
2569a1261f54SAl Viro 	return test_ti_thread_flag(task_thread_info(tsk), flag);
25701da177e4SLinus Torvalds }
25711da177e4SLinus Torvalds 
25721da177e4SLinus Torvalds static inline void set_tsk_need_resched(struct task_struct *tsk)
25731da177e4SLinus Torvalds {
25741da177e4SLinus Torvalds 	set_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
25751da177e4SLinus Torvalds }
25761da177e4SLinus Torvalds 
25771da177e4SLinus Torvalds static inline void clear_tsk_need_resched(struct task_struct *tsk)
25781da177e4SLinus Torvalds {
25791da177e4SLinus Torvalds 	clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
25801da177e4SLinus Torvalds }
25811da177e4SLinus Torvalds 
25828ae121acSGregory Haskins static inline int test_tsk_need_resched(struct task_struct *tsk)
25838ae121acSGregory Haskins {
25848ae121acSGregory Haskins 	return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED));
25858ae121acSGregory Haskins }
25868ae121acSGregory Haskins 
2587690cc3ffSEric W. Biederman static inline int restart_syscall(void)
2588690cc3ffSEric W. Biederman {
2589690cc3ffSEric W. Biederman 	set_tsk_thread_flag(current, TIF_SIGPENDING);
2590690cc3ffSEric W. Biederman 	return -ERESTARTNOINTR;
2591690cc3ffSEric W. Biederman }
2592690cc3ffSEric W. Biederman 
25931da177e4SLinus Torvalds static inline int signal_pending(struct task_struct *p)
25941da177e4SLinus Torvalds {
25951da177e4SLinus Torvalds 	return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
25961da177e4SLinus Torvalds }
25971da177e4SLinus Torvalds 
2598d9588725SRoland McGrath static inline int __fatal_signal_pending(struct task_struct *p)
2599d9588725SRoland McGrath {
2600d9588725SRoland McGrath 	return unlikely(sigismember(&p->pending.signal, SIGKILL));
2601d9588725SRoland McGrath }
2602f776d12dSMatthew Wilcox 
2603f776d12dSMatthew Wilcox static inline int fatal_signal_pending(struct task_struct *p)
2604f776d12dSMatthew Wilcox {
2605f776d12dSMatthew Wilcox 	return signal_pending(p) && __fatal_signal_pending(p);
2606f776d12dSMatthew Wilcox }
2607f776d12dSMatthew Wilcox 
260816882c1eSOleg Nesterov static inline int signal_pending_state(long state, struct task_struct *p)
260916882c1eSOleg Nesterov {
261016882c1eSOleg Nesterov 	if (!(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))
261116882c1eSOleg Nesterov 		return 0;
261216882c1eSOleg Nesterov 	if (!signal_pending(p))
261316882c1eSOleg Nesterov 		return 0;
261416882c1eSOleg Nesterov 
261516882c1eSOleg Nesterov 	return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p);
261616882c1eSOleg Nesterov }
261716882c1eSOleg Nesterov 
26181da177e4SLinus Torvalds static inline int need_resched(void)
26191da177e4SLinus Torvalds {
26209404ef02SLinus Torvalds 	return unlikely(test_thread_flag(TIF_NEED_RESCHED));
26211da177e4SLinus Torvalds }
26221da177e4SLinus Torvalds 
26231da177e4SLinus Torvalds /*
26241da177e4SLinus Torvalds  * cond_resched() and cond_resched_lock(): latency reduction via
26251da177e4SLinus Torvalds  * explicit rescheduling in places that are safe. The return
26261da177e4SLinus Torvalds  * value indicates whether a reschedule was done in fact.
26271da177e4SLinus Torvalds  * cond_resched_lock() will drop the spinlock before scheduling,
26281da177e4SLinus Torvalds  * cond_resched_softirq() will enable bhs before scheduling.
26291da177e4SLinus Torvalds  */
2630c3921ab7SLinus Torvalds extern int _cond_resched(void);
26316f80bd98SFrederic Weisbecker 
2632613afbf8SFrederic Weisbecker #define cond_resched() ({			\
2633613afbf8SFrederic Weisbecker 	__might_sleep(__FILE__, __LINE__, 0);	\
2634613afbf8SFrederic Weisbecker 	_cond_resched();			\
2635613afbf8SFrederic Weisbecker })
26366f80bd98SFrederic Weisbecker 
2637613afbf8SFrederic Weisbecker extern int __cond_resched_lock(spinlock_t *lock);
2638613afbf8SFrederic Weisbecker 
2639bdd4e85dSFrederic Weisbecker #ifdef CONFIG_PREEMPT_COUNT
2640716a4234SFrederic Weisbecker #define PREEMPT_LOCK_OFFSET	PREEMPT_OFFSET
264102b67cc3SHerbert Xu #else
2642716a4234SFrederic Weisbecker #define PREEMPT_LOCK_OFFSET	0
264302b67cc3SHerbert Xu #endif
2644716a4234SFrederic Weisbecker 
2645613afbf8SFrederic Weisbecker #define cond_resched_lock(lock) ({				\
2646716a4234SFrederic Weisbecker 	__might_sleep(__FILE__, __LINE__, PREEMPT_LOCK_OFFSET);	\
2647613afbf8SFrederic Weisbecker 	__cond_resched_lock(lock);				\
2648613afbf8SFrederic Weisbecker })
2649613afbf8SFrederic Weisbecker 
2650613afbf8SFrederic Weisbecker extern int __cond_resched_softirq(void);
2651613afbf8SFrederic Weisbecker 
2652613afbf8SFrederic Weisbecker #define cond_resched_softirq() ({					\
265375e1056fSVenkatesh Pallipadi 	__might_sleep(__FILE__, __LINE__, SOFTIRQ_DISABLE_OFFSET);	\
2654613afbf8SFrederic Weisbecker 	__cond_resched_softirq();					\
2655613afbf8SFrederic Weisbecker })
26561da177e4SLinus Torvalds 
26571da177e4SLinus Torvalds /*
26581da177e4SLinus Torvalds  * Does a critical section need to be broken due to another
265995c354feSNick Piggin  * task waiting?: (technically does not depend on CONFIG_PREEMPT,
266095c354feSNick Piggin  * but a general need for low latency)
26611da177e4SLinus Torvalds  */
266295c354feSNick Piggin static inline int spin_needbreak(spinlock_t *lock)
26631da177e4SLinus Torvalds {
266495c354feSNick Piggin #ifdef CONFIG_PREEMPT
266595c354feSNick Piggin 	return spin_is_contended(lock);
266695c354feSNick Piggin #else
26671da177e4SLinus Torvalds 	return 0;
266895c354feSNick Piggin #endif
26691da177e4SLinus Torvalds }
26701da177e4SLinus Torvalds 
26717bb44adeSRoland McGrath /*
2672f06febc9SFrank Mayhar  * Thread group CPU time accounting.
2673f06febc9SFrank Mayhar  */
26744cd4c1b4SPeter Zijlstra void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times);
26754da94d49SPeter Zijlstra void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times);
2676f06febc9SFrank Mayhar 
2677f06febc9SFrank Mayhar static inline void thread_group_cputime_init(struct signal_struct *sig)
2678f06febc9SFrank Mayhar {
2679ee30a7b2SThomas Gleixner 	raw_spin_lock_init(&sig->cputimer.lock);
2680f06febc9SFrank Mayhar }
2681f06febc9SFrank Mayhar 
2682f06febc9SFrank Mayhar /*
26837bb44adeSRoland McGrath  * Reevaluate whether the task has signals pending delivery.
26847bb44adeSRoland McGrath  * Wake the task if so.
26857bb44adeSRoland McGrath  * This is required every time the blocked sigset_t changes.
26867bb44adeSRoland McGrath  * callers must hold sighand->siglock.
26877bb44adeSRoland McGrath  */
26887bb44adeSRoland McGrath extern void recalc_sigpending_and_wake(struct task_struct *t);
26891da177e4SLinus Torvalds extern void recalc_sigpending(void);
26901da177e4SLinus Torvalds 
26911da177e4SLinus Torvalds extern void signal_wake_up(struct task_struct *t, int resume_stopped);
26921da177e4SLinus Torvalds 
26931da177e4SLinus Torvalds /*
26941da177e4SLinus Torvalds  * Wrappers for p->thread_info->cpu access. No-op on UP.
26951da177e4SLinus Torvalds  */
26961da177e4SLinus Torvalds #ifdef CONFIG_SMP
26971da177e4SLinus Torvalds 
26981da177e4SLinus Torvalds static inline unsigned int task_cpu(const struct task_struct *p)
26991da177e4SLinus Torvalds {
2700a1261f54SAl Viro 	return task_thread_info(p)->cpu;
27011da177e4SLinus Torvalds }
27021da177e4SLinus Torvalds 
2703c65cc870SIngo Molnar extern void set_task_cpu(struct task_struct *p, unsigned int cpu);
27041da177e4SLinus Torvalds 
27051da177e4SLinus Torvalds #else
27061da177e4SLinus Torvalds 
27071da177e4SLinus Torvalds static inline unsigned int task_cpu(const struct task_struct *p)
27081da177e4SLinus Torvalds {
27091da177e4SLinus Torvalds 	return 0;
27101da177e4SLinus Torvalds }
27111da177e4SLinus Torvalds 
27121da177e4SLinus Torvalds static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
27131da177e4SLinus Torvalds {
27141da177e4SLinus Torvalds }
27151da177e4SLinus Torvalds 
27161da177e4SLinus Torvalds #endif /* CONFIG_SMP */
27171da177e4SLinus Torvalds 
271896f874e2SRusty Russell extern long sched_setaffinity(pid_t pid, const struct cpumask *new_mask);
271996f874e2SRusty Russell extern long sched_getaffinity(pid_t pid, struct cpumask *mask);
27205c45bf27SSiddha, Suresh B 
27211da177e4SLinus Torvalds extern void normalize_rt_tasks(void);
27221da177e4SLinus Torvalds 
27237c941438SDhaval Giani #ifdef CONFIG_CGROUP_SCHED
27249b5b7751SSrivatsa Vaddagiri 
272507e06b01SYong Zhang extern struct task_group root_task_group;
27269b5b7751SSrivatsa Vaddagiri 
2727ec7dc8acSDhaval Giani extern struct task_group *sched_create_group(struct task_group *parent);
27284cf86d77SIngo Molnar extern void sched_destroy_group(struct task_group *tg);
27299b5b7751SSrivatsa Vaddagiri extern void sched_move_task(struct task_struct *tsk);
2730052f1dc7SPeter Zijlstra #ifdef CONFIG_FAIR_GROUP_SCHED
27314cf86d77SIngo Molnar extern int sched_group_set_shares(struct task_group *tg, unsigned long shares);
27325cb350baSDhaval Giani extern unsigned long sched_group_shares(struct task_group *tg);
2733052f1dc7SPeter Zijlstra #endif
2734052f1dc7SPeter Zijlstra #ifdef CONFIG_RT_GROUP_SCHED
27359f0c1e56SPeter Zijlstra extern int sched_group_set_rt_runtime(struct task_group *tg,
27369f0c1e56SPeter Zijlstra 				      long rt_runtime_us);
27379f0c1e56SPeter Zijlstra extern long sched_group_rt_runtime(struct task_group *tg);
2738d0b27fa7SPeter Zijlstra extern int sched_group_set_rt_period(struct task_group *tg,
2739d0b27fa7SPeter Zijlstra 				      long rt_period_us);
2740d0b27fa7SPeter Zijlstra extern long sched_group_rt_period(struct task_group *tg);
274154e99124SDhaval Giani extern int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk);
2742052f1dc7SPeter Zijlstra #endif
27438323f26cSPeter Zijlstra #endif /* CONFIG_CGROUP_SCHED */
27449b5b7751SSrivatsa Vaddagiri 
274554e99124SDhaval Giani extern int task_can_switch_user(struct user_struct *up,
274654e99124SDhaval Giani 					struct task_struct *tsk);
274754e99124SDhaval Giani 
27484b98d11bSAlexey Dobriyan #ifdef CONFIG_TASK_XACCT
27494b98d11bSAlexey Dobriyan static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
27504b98d11bSAlexey Dobriyan {
2751940389b8SAndrea Righi 	tsk->ioac.rchar += amt;
27524b98d11bSAlexey Dobriyan }
27534b98d11bSAlexey Dobriyan 
27544b98d11bSAlexey Dobriyan static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
27554b98d11bSAlexey Dobriyan {
2756940389b8SAndrea Righi 	tsk->ioac.wchar += amt;
27574b98d11bSAlexey Dobriyan }
27584b98d11bSAlexey Dobriyan 
27594b98d11bSAlexey Dobriyan static inline void inc_syscr(struct task_struct *tsk)
27604b98d11bSAlexey Dobriyan {
2761940389b8SAndrea Righi 	tsk->ioac.syscr++;
27624b98d11bSAlexey Dobriyan }
27634b98d11bSAlexey Dobriyan 
27644b98d11bSAlexey Dobriyan static inline void inc_syscw(struct task_struct *tsk)
27654b98d11bSAlexey Dobriyan {
2766940389b8SAndrea Righi 	tsk->ioac.syscw++;
27674b98d11bSAlexey Dobriyan }
27684b98d11bSAlexey Dobriyan #else
27694b98d11bSAlexey Dobriyan static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
27704b98d11bSAlexey Dobriyan {
27714b98d11bSAlexey Dobriyan }
27724b98d11bSAlexey Dobriyan 
27734b98d11bSAlexey Dobriyan static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
27744b98d11bSAlexey Dobriyan {
27754b98d11bSAlexey Dobriyan }
27764b98d11bSAlexey Dobriyan 
27774b98d11bSAlexey Dobriyan static inline void inc_syscr(struct task_struct *tsk)
27784b98d11bSAlexey Dobriyan {
27794b98d11bSAlexey Dobriyan }
27804b98d11bSAlexey Dobriyan 
27814b98d11bSAlexey Dobriyan static inline void inc_syscw(struct task_struct *tsk)
27824b98d11bSAlexey Dobriyan {
27834b98d11bSAlexey Dobriyan }
27844b98d11bSAlexey Dobriyan #endif
27854b98d11bSAlexey Dobriyan 
278682455257SDave Hansen #ifndef TASK_SIZE_OF
278782455257SDave Hansen #define TASK_SIZE_OF(tsk)	TASK_SIZE
278882455257SDave Hansen #endif
278982455257SDave Hansen 
2790cf475ad2SBalbir Singh #ifdef CONFIG_MM_OWNER
2791cf475ad2SBalbir Singh extern void mm_update_next_owner(struct mm_struct *mm);
2792cf475ad2SBalbir Singh extern void mm_init_owner(struct mm_struct *mm, struct task_struct *p);
2793cf475ad2SBalbir Singh #else
2794cf475ad2SBalbir Singh static inline void mm_update_next_owner(struct mm_struct *mm)
2795cf475ad2SBalbir Singh {
2796cf475ad2SBalbir Singh }
2797cf475ad2SBalbir Singh 
2798cf475ad2SBalbir Singh static inline void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
2799cf475ad2SBalbir Singh {
2800cf475ad2SBalbir Singh }
2801cf475ad2SBalbir Singh #endif /* CONFIG_MM_OWNER */
2802cf475ad2SBalbir Singh 
28033e10e716SJiri Slaby static inline unsigned long task_rlimit(const struct task_struct *tsk,
28043e10e716SJiri Slaby 		unsigned int limit)
28053e10e716SJiri Slaby {
28063e10e716SJiri Slaby 	return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_cur);
28073e10e716SJiri Slaby }
28083e10e716SJiri Slaby 
28093e10e716SJiri Slaby static inline unsigned long task_rlimit_max(const struct task_struct *tsk,
28103e10e716SJiri Slaby 		unsigned int limit)
28113e10e716SJiri Slaby {
28123e10e716SJiri Slaby 	return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_max);
28133e10e716SJiri Slaby }
28143e10e716SJiri Slaby 
28153e10e716SJiri Slaby static inline unsigned long rlimit(unsigned int limit)
28163e10e716SJiri Slaby {
28173e10e716SJiri Slaby 	return task_rlimit(current, limit);
28183e10e716SJiri Slaby }
28193e10e716SJiri Slaby 
28203e10e716SJiri Slaby static inline unsigned long rlimit_max(unsigned int limit)
28213e10e716SJiri Slaby {
28223e10e716SJiri Slaby 	return task_rlimit_max(current, limit);
28233e10e716SJiri Slaby }
28243e10e716SJiri Slaby 
28251da177e4SLinus Torvalds #endif /* __KERNEL__ */
28261da177e4SLinus Torvalds 
28271da177e4SLinus Torvalds #endif
2828