sched.h 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  1. #ifndef _LINUX_SCHED_H
  2. #define _LINUX_SCHED_H
  3. #include <uapi/linux/sched.h>
  4. struct sched_param {
  5. int sched_priority;
  6. };
  7. #include <asm/param.h> /* for HZ */
  8. #include <linux/capability.h>
  9. #include <linux/threads.h>
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/timex.h>
  13. #include <linux/jiffies.h>
  14. #include <linux/rbtree.h>
  15. #include <linux/thread_info.h>
  16. #include <linux/cpumask.h>
  17. #include <linux/errno.h>
  18. #include <linux/nodemask.h>
  19. #include <linux/mm_types.h>
  20. #include <asm/page.h>
  21. #include <asm/ptrace.h>
  22. #include <asm/cputime.h>
  23. #include <linux/smp.h>
  24. #include <linux/sem.h>
  25. #include <linux/signal.h>
  26. #include <linux/compiler.h>
  27. #include <linux/completion.h>
  28. #include <linux/pid.h>
  29. #include <linux/percpu.h>
  30. #include <linux/topology.h>
  31. #include <linux/proportions.h>
  32. #include <linux/seccomp.h>
  33. #include <linux/rcupdate.h>
  34. #include <linux/rculist.h>
  35. #include <linux/rtmutex.h>
  36. #include <linux/time.h>
  37. #include <linux/param.h>
  38. #include <linux/resource.h>
  39. #include <linux/timer.h>
  40. #include <linux/hrtimer.h>
  41. #include <linux/task_io_accounting.h>
  42. #include <linux/latencytop.h>
  43. #include <linux/cred.h>
  44. #include <linux/llist.h>
  45. #include <linux/uidgid.h>
  46. #include <linux/gfp.h>
  47. #include <asm/processor.h>
  48. struct exec_domain;
  49. struct futex_pi_state;
  50. struct robust_list_head;
  51. struct bio_list;
  52. struct fs_struct;
  53. struct perf_event_context;
  54. struct blk_plug;
  55. /*
  56. * List of flags we want to share for kernel threads,
  57. * if only because they are not used by them anyway.
  58. */
  59. #define CLONE_KERNEL (CLONE_FS | CLONE_FILES | CLONE_SIGHAND)
  60. /*
  61. * These are the constant used to fake the fixed-point load-average
  62. * counting. Some notes:
  63. * - 11 bit fractions expand to 22 bits by the multiplies: this gives
  64. * a load-average precision of 10 bits integer + 11 bits fractional
  65. * - if you want to count load-averages more often, you need more
  66. * precision, or rounding will get you. With 2-second counting freq,
  67. * the EXP_n values would be 1981, 2034 and 2043 if still using only
  68. * 11 bit fractions.
  69. */
  70. extern unsigned long avenrun[]; /* Load averages */
  71. extern void get_avenrun(unsigned long *loads, unsigned long offset, int shift);
  72. #define FSHIFT 11 /* nr of bits of precision */
  73. #define FIXED_1 (1<<FSHIFT) /* 1.0 as fixed-point */
  74. #define LOAD_FREQ (5*HZ+1) /* 5 sec intervals */
  75. #define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */
  76. #define EXP_5 2014 /* 1/exp(5sec/5min) */
  77. #define EXP_15 2037 /* 1/exp(5sec/15min) */
  78. #define CALC_LOAD(load,exp,n) \
  79. load *= exp; \
  80. load += n*(FIXED_1-exp); \
  81. load >>= FSHIFT;
  82. extern unsigned long total_forks;
  83. extern int nr_threads;
  84. DECLARE_PER_CPU(unsigned long, process_counts);
  85. extern int nr_processes(void);
  86. extern unsigned long nr_running(void);
  87. extern unsigned long nr_iowait(void);
  88. extern unsigned long nr_iowait_cpu(int cpu);
  89. extern unsigned long this_cpu_load(void);
  90. extern void calc_global_load(unsigned long ticks);
  91. extern void update_cpu_load_nohz(void);
  92. /* Notifier for when a task gets migrated to a new CPU */
  93. struct task_migration_notifier {
  94. struct task_struct *task;
  95. int from_cpu;
  96. int to_cpu;
  97. };
  98. extern void register_task_migration_notifier(struct notifier_block *n);
  99. extern unsigned long get_parent_ip(unsigned long addr);
  100. extern void dump_cpu_task(int cpu);
  101. struct seq_file;
  102. struct cfs_rq;
  103. struct task_group;
  104. #ifdef CONFIG_SCHED_DEBUG
  105. extern void proc_sched_show_task(struct task_struct *p, struct seq_file *m);
  106. extern void proc_sched_set_task(struct task_struct *p);
  107. extern void
  108. print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq);
  109. #endif
  110. /*
  111. * Task state bitmask. NOTE! These bits are also
  112. * encoded in fs/proc/array.c: get_task_state().
  113. *
  114. * We have two separate sets of flags: task->state
  115. * is about runnability, while task->exit_state are
  116. * about the task exiting. Confusing, but this way
  117. * modifying one set can't modify the other one by
  118. * mistake.
  119. */
  120. #define TASK_RUNNING 0
  121. #define TASK_INTERRUPTIBLE 1
  122. #define TASK_UNINTERRUPTIBLE 2
  123. #define __TASK_STOPPED 4
  124. #define __TASK_TRACED 8
  125. /* in tsk->exit_state */
  126. #define EXIT_ZOMBIE 16
  127. #define EXIT_DEAD 32
  128. /* in tsk->state again */
  129. #define TASK_DEAD 64
  130. #define TASK_WAKEKILL 128
  131. #define TASK_WAKING 256
  132. #define TASK_STATE_MAX 512
  133. #define TASK_STATE_TO_CHAR_STR "RSDTtZXxKW"
  134. extern char ___assert_task_state[1 - 2*!!(
  135. sizeof(TASK_STATE_TO_CHAR_STR)-1 != ilog2(TASK_STATE_MAX)+1)];
  136. /* Convenience macros for the sake of set_task_state */
  137. #define TASK_KILLABLE (TASK_WAKEKILL | TASK_UNINTERRUPTIBLE)
  138. #define TASK_STOPPED (TASK_WAKEKILL | __TASK_STOPPED)
  139. #define TASK_TRACED (TASK_WAKEKILL | __TASK_TRACED)
  140. /* Convenience macros for the sake of wake_up */
  141. #define TASK_NORMAL (TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE)
  142. #define TASK_ALL (TASK_NORMAL | __TASK_STOPPED | __TASK_TRACED)
  143. /* get_task_state() */
  144. #define TASK_REPORT (TASK_RUNNING | TASK_INTERRUPTIBLE | \
  145. TASK_UNINTERRUPTIBLE | __TASK_STOPPED | \
  146. __TASK_TRACED)
  147. #define task_is_traced(task) ((task->state & __TASK_TRACED) != 0)
  148. #define task_is_stopped(task) ((task->state & __TASK_STOPPED) != 0)
  149. #define task_is_dead(task) ((task)->exit_state != 0)
  150. #define task_is_stopped_or_traced(task) \
  151. ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0)
  152. #define task_contributes_to_load(task) \
  153. ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \
  154. (task->flags & PF_FROZEN) == 0)
  155. #define __set_task_state(tsk, state_value) \
  156. do { (tsk)->state = (state_value); } while (0)
  157. #define set_task_state(tsk, state_value) \
  158. set_mb((tsk)->state, (state_value))
  159. /*
  160. * set_current_state() includes a barrier so that the write of current->state
  161. * is correctly serialised wrt the caller's subsequent test of whether to
  162. * actually sleep:
  163. *
  164. * set_current_state(TASK_UNINTERRUPTIBLE);
  165. * if (do_i_need_to_sleep())
  166. * schedule();
  167. *
  168. * If the caller does not need such serialisation then use __set_current_state()
  169. */
  170. #define __set_current_state(state_value) \
  171. do { current->state = (state_value); } while (0)
  172. #define set_current_state(state_value) \
  173. set_mb(current->state, (state_value))
  174. /* Task command name length */
  175. #define TASK_COMM_LEN 16
  176. #include <linux/spinlock.h>
  177. /*
  178. * This serializes "schedule()" and also protects
  179. * the run-queue from deletions/modifications (but
  180. * _adding_ to the beginning of the run-queue has
  181. * a separate lock).
  182. */
  183. extern rwlock_t tasklist_lock;
  184. extern spinlock_t mmlist_lock;
  185. struct task_struct;
  186. #ifdef CONFIG_PROVE_RCU
  187. extern int lockdep_tasklist_lock_is_held(void);
  188. #endif /* #ifdef CONFIG_PROVE_RCU */
  189. extern void sched_init(void);
  190. extern void sched_init_smp(void);
  191. extern asmlinkage void schedule_tail(struct task_struct *prev);
  192. extern void init_idle(struct task_struct *idle, int cpu);
  193. extern void init_idle_bootup_task(struct task_struct *idle);
  194. extern int runqueue_is_locked(int cpu);
  195. #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ)
  196. extern void nohz_balance_enter_idle(int cpu);
  197. extern void set_cpu_sd_state_idle(void);
  198. extern int get_nohz_timer_target(void);
  199. #else
  200. static inline void nohz_balance_enter_idle(int cpu) { }
  201. static inline void set_cpu_sd_state_idle(void) { }
  202. #endif
  203. /*
  204. * Only dump TASK_* tasks. (0 for all tasks)
  205. */
  206. extern void show_state_filter(unsigned long state_filter);
  207. static inline void show_state(void)
  208. {
  209. show_state_filter(0);
  210. }
  211. extern void show_regs(struct pt_regs *);
  212. /*
  213. * TASK is a pointer to the task whose backtrace we want to see (or NULL for current
  214. * task), SP is the stack pointer of the first frame that should be shown in the back
  215. * trace (or NULL if the entire call-chain of the task should be shown).
  216. */
  217. extern void show_stack(struct task_struct *task, unsigned long *sp);
  218. void io_schedule(void);
  219. long io_schedule_timeout(long timeout);
  220. extern void cpu_init (void);
  221. extern void trap_init(void);
  222. extern void update_process_times(int user);
  223. extern void scheduler_tick(void);
  224. extern void sched_show_task(struct task_struct *p);
  225. #ifdef CONFIG_LOCKUP_DETECTOR
  226. extern void touch_softlockup_watchdog(void);
  227. extern void touch_softlockup_watchdog_sync(void);
  228. extern void touch_all_softlockup_watchdogs(void);
  229. extern int proc_dowatchdog_thresh(struct ctl_table *table, int write,
  230. void __user *buffer,
  231. size_t *lenp, loff_t *ppos);
  232. extern unsigned int softlockup_panic;
  233. void lockup_detector_init(void);
  234. #else
  235. static inline void touch_softlockup_watchdog(void)
  236. {
  237. }
  238. static inline void touch_softlockup_watchdog_sync(void)
  239. {
  240. }
  241. static inline void touch_all_softlockup_watchdogs(void)
  242. {
  243. }
  244. static inline void lockup_detector_init(void)
  245. {
  246. }
  247. #endif
  248. /* Attach to any functions which should be ignored in wchan output. */
  249. #define __sched __attribute__((__section__(".sched.text")))
  250. /* Linker adds these: start and end of __sched functions */
  251. extern char __sched_text_start[], __sched_text_end[];
  252. /* Is this address in the __sched functions? */
  253. extern int in_sched_functions(unsigned long addr);
  254. #define MAX_SCHEDULE_TIMEOUT LONG_MAX
  255. extern signed long schedule_timeout(signed long timeout);
  256. extern signed long schedule_timeout_interruptible(signed long timeout);
  257. extern signed long schedule_timeout_killable(signed long timeout);
  258. extern signed long schedule_timeout_uninterruptible(signed long timeout);
  259. asmlinkage void schedule(void);
  260. extern void schedule_preempt_disabled(void);
  261. extern int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner);
  262. struct nsproxy;
  263. struct user_namespace;
  264. #include <linux/aio.h>
  265. #ifdef CONFIG_MMU
  266. extern void arch_pick_mmap_layout(struct mm_struct *mm);
  267. extern unsigned long
  268. arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
  269. unsigned long, unsigned long);
  270. extern unsigned long
  271. arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr,
  272. unsigned long len, unsigned long pgoff,
  273. unsigned long flags);
  274. extern void arch_unmap_area(struct mm_struct *, unsigned long);
  275. extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long);
  276. #else
  277. static inline void arch_pick_mmap_layout(struct mm_struct *mm) {}
  278. #endif
  279. extern void set_dumpable(struct mm_struct *mm, int value);
  280. extern int get_dumpable(struct mm_struct *mm);
  281. /* mm flags */
  282. /* dumpable bits */
  283. #define MMF_DUMPABLE 0 /* core dump is permitted */
  284. #define MMF_DUMP_SECURELY 1 /* core file is readable only by root */
  285. #define MMF_DUMPABLE_BITS 2
  286. #define MMF_DUMPABLE_MASK ((1 << MMF_DUMPABLE_BITS) - 1)
  287. /* coredump filter bits */
  288. #define MMF_DUMP_ANON_PRIVATE 2
  289. #define MMF_DUMP_ANON_SHARED 3
  290. #define MMF_DUMP_MAPPED_PRIVATE 4
  291. #define MMF_DUMP_MAPPED_SHARED 5
  292. #define MMF_DUMP_ELF_HEADERS 6
  293. #define MMF_DUMP_HUGETLB_PRIVATE 7
  294. #define MMF_DUMP_HUGETLB_SHARED 8
  295. #define MMF_DUMP_FILTER_SHIFT MMF_DUMPABLE_BITS
  296. #define MMF_DUMP_FILTER_BITS 7
  297. #define MMF_DUMP_FILTER_MASK \
  298. (((1 << MMF_DUMP_FILTER_BITS) - 1) << MMF_DUMP_FILTER_SHIFT)
  299. #define MMF_DUMP_FILTER_DEFAULT \
  300. ((1 << MMF_DUMP_ANON_PRIVATE) | (1 << MMF_DUMP_ANON_SHARED) |\
  301. (1 << MMF_DUMP_HUGETLB_PRIVATE) | MMF_DUMP_MASK_DEFAULT_ELF)
  302. #ifdef CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
  303. # define MMF_DUMP_MASK_DEFAULT_ELF (1 << MMF_DUMP_ELF_HEADERS)
  304. #else
  305. # define MMF_DUMP_MASK_DEFAULT_ELF 0
  306. #endif
  307. /* leave room for more dump flags */
  308. #define MMF_VM_MERGEABLE 16 /* KSM may merge identical pages */
  309. #define MMF_VM_HUGEPAGE 17 /* set when VM_HUGEPAGE is set on vma */
  310. #define MMF_EXE_FILE_CHANGED 18 /* see prctl_set_mm_exe_file() */
  311. #define MMF_HAS_UPROBES 19 /* has uprobes */
  312. #define MMF_RECALC_UPROBES 20 /* MMF_HAS_UPROBES can be wrong */
  313. #define MMF_INIT_MASK (MMF_DUMPABLE_MASK | MMF_DUMP_FILTER_MASK)
  314. struct sighand_struct {
  315. atomic_t count;
  316. struct k_sigaction action[_NSIG];
  317. spinlock_t siglock;
  318. wait_queue_head_t signalfd_wqh;
  319. };
  320. struct pacct_struct {
  321. int ac_flag;
  322. long ac_exitcode;
  323. unsigned long ac_mem;
  324. cputime_t ac_utime, ac_stime;
  325. unsigned long ac_minflt, ac_majflt;
  326. };
  327. struct cpu_itimer {
  328. cputime_t expires;
  329. cputime_t incr;
  330. u32 error;
  331. u32 incr_error;
  332. };
  333. /**
  334. * struct cputime - snaphsot of system and user cputime
  335. * @utime: time spent in user mode
  336. * @stime: time spent in system mode
  337. *
  338. * Gathers a generic snapshot of user and system time.
  339. */
  340. struct cputime {
  341. cputime_t utime;
  342. cputime_t stime;
  343. };
  344. /**
  345. * struct task_cputime - collected CPU time counts
  346. * @utime: time spent in user mode, in &cputime_t units
  347. * @stime: time spent in kernel mode, in &cputime_t units
  348. * @sum_exec_runtime: total time spent on the CPU, in nanoseconds
  349. *
  350. * This is an extension of struct cputime that includes the total runtime
  351. * spent by the task from the scheduler point of view.
  352. *
  353. * As a result, this structure groups together three kinds of CPU time
  354. * that are tracked for threads and thread groups. Most things considering
  355. * CPU time want to group these counts together and treat all three
  356. * of them in parallel.
  357. */
  358. struct task_cputime {
  359. cputime_t utime;
  360. cputime_t stime;
  361. unsigned long long sum_exec_runtime;
  362. };
  363. /* Alternate field names when used to cache expirations. */
  364. #define prof_exp stime
  365. #define virt_exp utime
  366. #define sched_exp sum_exec_runtime
  367. #define INIT_CPUTIME \
  368. (struct task_cputime) { \
  369. .utime = 0, \
  370. .stime = 0, \
  371. .sum_exec_runtime = 0, \
  372. }
  373. /*
  374. * Disable preemption until the scheduler is running.
  375. * Reset by start_kernel()->sched_init()->init_idle().
  376. *
  377. * We include PREEMPT_ACTIVE to avoid cond_resched() from working
  378. * before the scheduler is active -- see should_resched().
  379. */
  380. #define INIT_PREEMPT_COUNT (1 + PREEMPT_ACTIVE)
  381. /**
  382. * struct thread_group_cputimer - thread group interval timer counts
  383. * @cputime: thread group interval timers.
  384. * @running: non-zero when there are timers running and
  385. * @cputime receives updates.
  386. * @lock: lock for fields in this struct.
  387. *
  388. * This structure contains the version of task_cputime, above, that is
  389. * used for thread group CPU timer calculations.
  390. */
  391. struct thread_group_cputimer {
  392. struct task_cputime cputime;
  393. int running;
  394. raw_spinlock_t lock;
  395. };
  396. #include <linux/rwsem.h>
  397. struct autogroup;
  398. /*
  399. * NOTE! "signal_struct" does not have its own
  400. * locking, because a shared signal_struct always
  401. * implies a shared sighand_struct, so locking
  402. * sighand_struct is always a proper superset of
  403. * the locking of signal_struct.
  404. */
  405. struct signal_struct {
  406. atomic_t sigcnt;
  407. atomic_t live;
  408. int nr_threads;
  409. wait_queue_head_t wait_chldexit; /* for wait4() */
  410. /* current thread group signal load-balancing target: */
  411. struct task_struct *curr_target;
  412. /* shared signal handling: */
  413. struct sigpending shared_pending;
  414. /* thread group exit support */
  415. int group_exit_code;
  416. /* overloaded:
  417. * - notify group_exit_task when ->count is equal to notify_count
  418. * - everyone except group_exit_task is stopped during signal delivery
  419. * of fatal signals, group_exit_task processes the signal.
  420. */
  421. int notify_count;
  422. struct task_struct *group_exit_task;
  423. /* thread group stop support, overloads group_exit_code too */
  424. int group_stop_count;
  425. unsigned int flags; /* see SIGNAL_* flags below */
  426. /*
  427. * PR_SET_CHILD_SUBREAPER marks a process, like a service
  428. * manager, to re-parent orphan (double-forking) child processes
  429. * to this process instead of 'init'. The service manager is
  430. * able to receive SIGCHLD signals and is able to investigate
  431. * the process until it calls wait(). All children of this
  432. * process will inherit a flag if they should look for a
  433. * child_subreaper process at exit.
  434. */
  435. unsigned int is_child_subreaper:1;
  436. unsigned int has_child_subreaper:1;
  437. /* POSIX.1b Interval Timers */
  438. struct list_head posix_timers;
  439. /* ITIMER_REAL timer for the process */
  440. struct hrtimer real_timer;
  441. struct pid *leader_pid;
  442. ktime_t it_real_incr;
  443. /*
  444. * ITIMER_PROF and ITIMER_VIRTUAL timers for the process, we use
  445. * CPUCLOCK_PROF and CPUCLOCK_VIRT for indexing array as these
  446. * values are defined to 0 and 1 respectively
  447. */
  448. struct cpu_itimer it[2];
  449. /*
  450. * Thread group totals for process CPU timers.
  451. * See thread_group_cputimer(), et al, for details.
  452. */
  453. struct thread_group_cputimer cputimer;
  454. /* Earliest-expiration cache. */
  455. struct task_cputime cputime_expires;
  456. struct list_head cpu_timers[3];
  457. struct pid *tty_old_pgrp;
  458. /* boolean value for session group leader */
  459. int leader;
  460. struct tty_struct *tty; /* NULL if no tty */
  461. #ifdef CONFIG_SCHED_AUTOGROUP
  462. struct autogroup *autogroup;
  463. #endif
  464. /*
  465. * Cumulative resource counters for dead threads in the group,
  466. * and for reaped dead child processes forked by this group.
  467. * Live threads maintain their own counters and add to these
  468. * in __exit_signal, except for the group leader.
  469. */
  470. cputime_t utime, stime, cutime, cstime;
  471. cputime_t gtime;
  472. cputime_t cgtime;
  473. #ifndef CONFIG_VIRT_CPU_ACCOUNTING
  474. struct cputime prev_cputime;
  475. #endif
  476. unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw;
  477. unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
  478. unsigned long inblock, oublock, cinblock, coublock;
  479. unsigned long maxrss, cmaxrss;
  480. struct task_io_accounting ioac;
  481. /*
  482. * Cumulative ns of schedule CPU time fo dead threads in the
  483. * group, not including a zombie group leader, (This only differs
  484. * from jiffies_to_ns(utime + stime) if sched_clock uses something
  485. * other than jiffies.)
  486. */
  487. unsigned long long sum_sched_runtime;
  488. /*
  489. * We don't bother to synchronize most readers of this at all,
  490. * because there is no reader checking a limit that actually needs
  491. * to get both rlim_cur and rlim_max atomically, and either one
  492. * alone is a single word that can safely be read normally.
  493. * getrlimit/setrlimit use task_lock(current->group_leader) to
  494. * protect this instead of the siglock, because they really
  495. * have no need to disable irqs.
  496. */
  497. struct rlimit rlim[RLIM_NLIMITS];
  498. #ifdef CONFIG_BSD_PROCESS_ACCT
  499. struct pacct_struct pacct; /* per-process accounting information */
  500. #endif
  501. #ifdef CONFIG_TASKSTATS
  502. struct taskstats *stats;
  503. #endif
  504. #ifdef CONFIG_AUDIT
  505. unsigned audit_tty;
  506. struct tty_audit_buf *tty_audit_buf;
  507. #endif
  508. #ifdef CONFIG_CGROUPS
  509. /*
  510. * group_rwsem prevents new tasks from entering the threadgroup and
  511. * member tasks from exiting,a more specifically, setting of
  512. * PF_EXITING. fork and exit paths are protected with this rwsem
  513. * using threadgroup_change_begin/end(). Users which require
  514. * threadgroup to remain stable should use threadgroup_[un]lock()
  515. * which also takes care of exec path. Currently, cgroup is the
  516. * only user.
  517. */
  518. struct rw_semaphore group_rwsem;
  519. #endif
  520. oom_flags_t oom_flags;
  521. short oom_score_adj; /* OOM kill score adjustment */
  522. short oom_score_adj_min; /* OOM kill score adjustment min value.
  523. * Only settable by CAP_SYS_RESOURCE. */
  524. struct mutex cred_guard_mutex; /* guard against foreign influences on
  525. * credential calculations
  526. * (notably. ptrace) */
  527. };
  528. /*
  529. * Bits in flags field of signal_struct.
  530. */
  531. #define SIGNAL_STOP_STOPPED 0x00000001 /* job control stop in effect */
  532. #define SIGNAL_STOP_CONTINUED 0x00000002 /* SIGCONT since WCONTINUED reap */
  533. #define SIGNAL_GROUP_EXIT 0x00000004 /* group exit in progress */
  534. /*
  535. * Pending notifications to parent.
  536. */
  537. #define SIGNAL_CLD_STOPPED 0x00000010
  538. #define SIGNAL_CLD_CONTINUED 0x00000020
  539. #define SIGNAL_CLD_MASK (SIGNAL_CLD_STOPPED|SIGNAL_CLD_CONTINUED)
  540. #define SIGNAL_UNKILLABLE 0x00000040 /* for init: ignore fatal signals */
  541. /* If true, all threads except ->group_exit_task have pending SIGKILL */
  542. static inline int signal_group_exit(const struct signal_struct *sig)
  543. {
  544. return (sig->flags & SIGNAL_GROUP_EXIT) ||
  545. (sig->group_exit_task != NULL);
  546. }
  547. /*
  548. * Some day this will be a full-fledged user tracking system..
  549. */
  550. struct user_struct {
  551. atomic_t __count; /* reference count */
  552. atomic_t processes; /* How many processes does this user have? */
  553. atomic_t files; /* How many open files does this user have? */
  554. atomic_t sigpending; /* How many pending signals does this user have? */
  555. #ifdef CONFIG_INOTIFY_USER
  556. atomic_t inotify_watches; /* How many inotify watches does this user have? */
  557. atomic_t inotify_devs; /* How many inotify devs does this user have opened? */
  558. #endif
  559. #ifdef CONFIG_FANOTIFY
  560. atomic_t fanotify_listeners;
  561. #endif
  562. #ifdef CONFIG_EPOLL
  563. atomic_long_t epoll_watches; /* The number of file descriptors currently watched */
  564. #endif
  565. #ifdef CONFIG_POSIX_MQUEUE
  566. /* protected by mq_lock */
  567. unsigned long mq_bytes; /* How many bytes can be allocated to mqueue? */
  568. #endif
  569. unsigned long locked_shm; /* How many pages of mlocked shm ? */
  570. #ifdef CONFIG_KEYS
  571. struct key *uid_keyring; /* UID specific keyring */
  572. struct key *session_keyring; /* UID's default session keyring */
  573. #endif
  574. /* Hash table maintenance information */
  575. struct hlist_node uidhash_node;
  576. kuid_t uid;
  577. #ifdef CONFIG_PERF_EVENTS
  578. atomic_long_t locked_vm;
  579. #endif
  580. };
  581. extern int uids_sysfs_init(void);
  582. extern struct user_struct *find_user(kuid_t);
  583. extern struct user_struct root_user;
  584. #define INIT_USER (&root_user)
  585. struct backing_dev_info;
  586. struct reclaim_state;
  587. #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
  588. struct sched_info {
  589. /* cumulative counters */
  590. unsigned long pcount; /* # of times run on this cpu */
  591. unsigned long long run_delay; /* time spent waiting on a runqueue */
  592. /* timestamps */
  593. unsigned long long last_arrival,/* when we last ran on a cpu */
  594. last_queued; /* when we were last queued to run */
  595. };
  596. #endif /* defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) */
  597. #ifdef CONFIG_TASK_DELAY_ACCT
  598. struct task_delay_info {
  599. spinlock_t lock;
  600. unsigned int flags; /* Private per-task flags */
  601. /* For each stat XXX, add following, aligned appropriately
  602. *
  603. * struct timespec XXX_start, XXX_end;
  604. * u64 XXX_delay;
  605. * u32 XXX_count;
  606. *
  607. * Atomicity of updates to XXX_delay, XXX_count protected by
  608. * single lock above (split into XXX_lock if contention is an issue).
  609. */
  610. /*
  611. * XXX_count is incremented on every XXX operation, the delay
  612. * associated with the operation is added to XXX_delay.
  613. * XXX_delay contains the accumulated delay time in nanoseconds.
  614. */
  615. struct timespec blkio_start, blkio_end; /* Shared by blkio, swapin */
  616. u64 blkio_delay; /* wait for sync block io completion */
  617. u64 swapin_delay; /* wait for swapin block io completion */
  618. u32 blkio_count; /* total count of the number of sync block */
  619. /* io operations performed */
  620. u32 swapin_count; /* total count of the number of swapin block */
  621. /* io operations performed */
  622. struct timespec freepages_start, freepages_end;
  623. u64 freepages_delay; /* wait for memory reclaim */
  624. u32 freepages_count; /* total count of memory reclaim */
  625. };
  626. #endif /* CONFIG_TASK_DELAY_ACCT */
  627. static inline int sched_info_on(void)
  628. {
  629. #ifdef CONFIG_SCHEDSTATS
  630. return 1;
  631. #elif defined(CONFIG_TASK_DELAY_ACCT)
  632. extern int delayacct_on;
  633. return delayacct_on;
  634. #else
  635. return 0;
  636. #endif
  637. }
  638. enum cpu_idle_type {
  639. CPU_IDLE,
  640. CPU_NOT_IDLE,
  641. CPU_NEWLY_IDLE,
  642. CPU_MAX_IDLE_TYPES
  643. };
  644. /*
  645. * Increase resolution of cpu_power calculations
  646. */
  647. #define SCHED_POWER_SHIFT 10
  648. #define SCHED_POWER_SCALE (1L << SCHED_POWER_SHIFT)
  649. /*
  650. * sched-domains (multiprocessor balancing) declarations:
  651. */
  652. #ifdef CONFIG_SMP
  653. #define SD_LOAD_BALANCE 0x0001 /* Do load balancing on this domain. */
  654. #define SD_BALANCE_NEWIDLE 0x0002 /* Balance when about to become idle */
  655. #define SD_BALANCE_EXEC 0x0004 /* Balance on exec */
  656. #define SD_BALANCE_FORK 0x0008 /* Balance on fork, clone */
  657. #define SD_BALANCE_WAKE 0x0010 /* Balance on wakeup */
  658. #define SD_WAKE_AFFINE 0x0020 /* Wake task to waking CPU */
  659. #define SD_SHARE_CPUPOWER 0x0080 /* Domain members share cpu power */
  660. #define SD_SHARE_PKG_RESOURCES 0x0200 /* Domain members share cpu pkg resources */
  661. #define SD_SERIALIZE 0x0400 /* Only a single load balancing instance */
  662. #define SD_ASYM_PACKING 0x0800 /* Place busy groups earlier in the domain */
  663. #define SD_PREFER_SIBLING 0x1000 /* Prefer to place tasks in a sibling domain */
  664. #define SD_OVERLAP 0x2000 /* sched_domains of this level overlap */
  665. extern int __weak arch_sd_sibiling_asym_packing(void);
  666. struct sched_domain_attr {
  667. int relax_domain_level;
  668. };
  669. #define SD_ATTR_INIT (struct sched_domain_attr) { \
  670. .relax_domain_level = -1, \
  671. }
  672. extern int sched_domain_level_max;
  673. struct sched_group;
  674. struct sched_domain {
  675. /* These fields must be setup */
  676. struct sched_domain *parent; /* top domain must be null terminated */
  677. struct sched_domain *child; /* bottom domain must be null terminated */
  678. struct sched_group *groups; /* the balancing groups of the domain */
  679. unsigned long min_interval; /* Minimum balance interval ms */
  680. unsigned long max_interval; /* Maximum balance interval ms */
  681. unsigned int busy_factor; /* less balancing by factor if busy */
  682. unsigned int imbalance_pct; /* No balance until over watermark */
  683. unsigned int cache_nice_tries; /* Leave cache hot tasks for # tries */
  684. unsigned int busy_idx;
  685. unsigned int idle_idx;
  686. unsigned int newidle_idx;
  687. unsigned int wake_idx;
  688. unsigned int forkexec_idx;
  689. unsigned int smt_gain;
  690. int flags; /* See SD_* */
  691. int level;
  692. /* Runtime fields. */
  693. unsigned long last_balance; /* init to jiffies. units in jiffies */
  694. unsigned int balance_interval; /* initialise to 1. units in ms. */
  695. unsigned int nr_balance_failed; /* initialise to 0 */
  696. u64 last_update;
  697. #ifdef CONFIG_SCHEDSTATS
  698. /* load_balance() stats */
  699. unsigned int lb_count[CPU_MAX_IDLE_TYPES];
  700. unsigned int lb_failed[CPU_MAX_IDLE_TYPES];
  701. unsigned int lb_balanced[CPU_MAX_IDLE_TYPES];
  702. unsigned int lb_imbalance[CPU_MAX_IDLE_TYPES];
  703. unsigned int lb_gained[CPU_MAX_IDLE_TYPES];
  704. unsigned int lb_hot_gained[CPU_MAX_IDLE_TYPES];
  705. unsigned int lb_nobusyg[CPU_MAX_IDLE_TYPES];
  706. unsigned int lb_nobusyq[CPU_MAX_IDLE_TYPES];
  707. /* Active load balancing */
  708. unsigned int alb_count;
  709. unsigned int alb_failed;
  710. unsigned int alb_pushed;
  711. /* SD_BALANCE_EXEC stats */
  712. unsigned int sbe_count;
  713. unsigned int sbe_balanced;
  714. unsigned int sbe_pushed;
  715. /* SD_BALANCE_FORK stats */
  716. unsigned int sbf_count;
  717. unsigned int sbf_balanced;
  718. unsigned int sbf_pushed;
  719. /* try_to_wake_up() stats */
  720. unsigned int ttwu_wake_remote;
  721. unsigned int ttwu_move_affine;
  722. unsigned int ttwu_move_balance;
  723. #endif
  724. #ifdef CONFIG_SCHED_DEBUG
  725. char *name;
  726. #endif
  727. union {
  728. void *private; /* used during construction */
  729. struct rcu_head rcu; /* used during destruction */
  730. };
  731. unsigned int span_weight;
  732. /*
  733. * Span of all CPUs in this domain.
  734. *
  735. * NOTE: this field is variable length. (Allocated dynamically
  736. * by attaching extra space to the end of the structure,
  737. * depending on how many CPUs the kernel has booted up with)
  738. */
  739. unsigned long span[0];
  740. };
  741. static inline struct cpumask *sched_domain_span(struct sched_domain *sd)
  742. {
  743. return to_cpumask(sd->span);
  744. }
  745. extern void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
  746. struct sched_domain_attr *dattr_new);
  747. /* Allocate an array of sched domains, for partition_sched_domains(). */
  748. cpumask_var_t *alloc_sched_domains(unsigned int ndoms);
  749. void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms);
  750. unsigned long default_scale_freq_power(struct sched_domain *sd, int cpu);
  751. unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu);
  752. bool cpus_share_cache(int this_cpu, int that_cpu);
  753. #else /* CONFIG_SMP */
  754. struct sched_domain_attr;
  755. static inline void
  756. partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
  757. struct sched_domain_attr *dattr_new)
  758. {
  759. }
  760. static inline bool cpus_share_cache(int this_cpu, int that_cpu)
  761. {
  762. return true;
  763. }
  764. #endif /* !CONFIG_SMP */
  765. struct io_context; /* See blkdev.h */
  766. #ifdef ARCH_HAS_PREFETCH_SWITCH_STACK
  767. extern void prefetch_stack(struct task_struct *t);
  768. #else
  769. static inline void prefetch_stack(struct task_struct *t) { }
  770. #endif
  771. struct audit_context; /* See audit.c */
  772. struct mempolicy;
  773. struct pipe_inode_info;
  774. struct uts_namespace;
  775. struct rq;
  776. struct sched_domain;
  777. /*
  778. * wake flags
  779. */
  780. #define WF_SYNC 0x01 /* waker goes to sleep after wakup */
  781. #define WF_FORK 0x02 /* child wakeup after fork */
  782. #define WF_MIGRATED 0x04 /* internal use, task got migrated */
  783. #define ENQUEUE_WAKEUP 1
  784. #define ENQUEUE_HEAD 2
  785. #ifdef CONFIG_SMP
  786. #define ENQUEUE_WAKING 4 /* sched_class::task_waking was called */
  787. #else
  788. #define ENQUEUE_WAKING 0
  789. #endif
  790. #define DEQUEUE_SLEEP 1
  791. struct sched_class {
  792. const struct sched_class *next;
  793. void (*enqueue_task) (struct rq *rq, struct task_struct *p, int flags);
  794. void (*dequeue_task) (struct rq *rq, struct task_struct *p, int flags);
  795. void (*yield_task) (struct rq *rq);
  796. bool (*yield_to_task) (struct rq *rq, struct task_struct *p, bool preempt);
  797. void (*check_preempt_curr) (struct rq *rq, struct task_struct *p, int flags);
  798. struct task_struct * (*pick_next_task) (struct rq *rq);
  799. void (*put_prev_task) (struct rq *rq, struct task_struct *p);
  800. #ifdef CONFIG_SMP
  801. int (*select_task_rq)(struct task_struct *p, int sd_flag, int flags);
  802. void (*migrate_task_rq)(struct task_struct *p, int next_cpu);
  803. void (*pre_schedule) (struct rq *this_rq, struct task_struct *task);
  804. void (*post_schedule) (struct rq *this_rq);
  805. void (*task_waking) (struct task_struct *task);
  806. void (*task_woken) (struct rq *this_rq, struct task_struct *task);
  807. void (*set_cpus_allowed)(struct task_struct *p,
  808. const struct cpumask *newmask);
  809. void (*rq_online)(struct rq *rq);
  810. void (*rq_offline)(struct rq *rq);
  811. #endif
  812. void (*set_curr_task) (struct rq *rq);
  813. void (*task_tick) (struct rq *rq, struct task_struct *p, int queued);
  814. void (*task_fork) (struct task_struct *p);
  815. void (*switched_from) (struct rq *this_rq, struct task_struct *task);
  816. void (*switched_to) (struct rq *this_rq, struct task_struct *task);
  817. void (*prio_changed) (struct rq *this_rq, struct task_struct *task,
  818. int oldprio);
  819. unsigned int (*get_rr_interval) (struct rq *rq,
  820. struct task_struct *task);
  821. #ifdef CONFIG_FAIR_GROUP_SCHED
  822. void (*task_move_group) (struct task_struct *p, int on_rq);
  823. #endif
  824. };
  825. struct load_weight {
  826. unsigned long weight, inv_weight;
  827. };
  828. struct sched_avg {
  829. /*
  830. * These sums represent an infinite geometric series and so are bound
  831. * above by 1024/(1-y). Thus we only need a u32 to store them for for all
  832. * choices of y < 1-2^(-32)*1024.
  833. */
  834. u32 runnable_avg_sum, runnable_avg_period;
  835. u64 last_runnable_update;
  836. s64 decay_count;
  837. unsigned long load_avg_contrib;
  838. };
  839. #ifdef CONFIG_SCHEDSTATS
  840. struct sched_statistics {
  841. u64 wait_start;
  842. u64 wait_max;
  843. u64 wait_count;
  844. u64 wait_sum;
  845. u64 iowait_count;
  846. u64 iowait_sum;
  847. u64 sleep_start;
  848. u64 sleep_max;
  849. s64 sum_sleep_runtime;
  850. u64 block_start;
  851. u64 block_max;
  852. u64 exec_max;
  853. u64 slice_max;
  854. u64 nr_migrations_cold;
  855. u64 nr_failed_migrations_affine;
  856. u64 nr_failed_migrations_running;
  857. u64 nr_failed_migrations_hot;
  858. u64 nr_forced_migrations;
  859. u64 nr_wakeups;
  860. u64 nr_wakeups_sync;
  861. u64 nr_wakeups_migrate;
  862. u64 nr_wakeups_local;
  863. u64 nr_wakeups_remote;
  864. u64 nr_wakeups_affine;
  865. u64 nr_wakeups_affine_attempts;
  866. u64 nr_wakeups_passive;
  867. u64 nr_wakeups_idle;
  868. };
  869. #endif
  870. struct sched_entity {
  871. struct load_weight load; /* for load-balancing */
  872. struct rb_node run_node;
  873. struct list_head group_node;
  874. unsigned int on_rq;
  875. u64 exec_start;
  876. u64 sum_exec_runtime;
  877. u64 vruntime;
  878. u64 prev_sum_exec_runtime;
  879. u64 nr_migrations;
  880. #ifdef CONFIG_SCHEDSTATS
  881. struct sched_statistics statistics;
  882. #endif
  883. #ifdef CONFIG_FAIR_GROUP_SCHED
  884. struct sched_entity *parent;
  885. /* rq on which this entity is (to be) queued: */
  886. struct cfs_rq *cfs_rq;
  887. /* rq "owned" by this entity/group: */
  888. struct cfs_rq *my_q;
  889. #endif
  890. /*
  891. * Load-tracking only depends on SMP, FAIR_GROUP_SCHED dependency below may be
  892. * removed when useful for applications beyond shares distribution (e.g.
  893. * load-balance).
  894. */
  895. #if defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)
  896. /* Per-entity load-tracking */
  897. struct sched_avg avg;
  898. #endif
  899. };
  900. struct sched_rt_entity {
  901. struct list_head run_list;
  902. unsigned long timeout;
  903. unsigned long watchdog_stamp;
  904. unsigned int time_slice;
  905. struct sched_rt_entity *back;
  906. #ifdef CONFIG_RT_GROUP_SCHED
  907. struct sched_rt_entity *parent;
  908. /* rq on which this entity is (to be) queued: */
  909. struct rt_rq *rt_rq;
  910. /* rq "owned" by this entity/group: */
  911. struct rt_rq *my_q;
  912. #endif
  913. };
  914. struct rcu_node;
  915. enum perf_event_task_context {
  916. perf_invalid_context = -1,
  917. perf_hw_context = 0,
  918. perf_sw_context,
  919. perf_nr_task_contexts,
  920. };
  921. struct task_struct {
  922. volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
  923. void *stack;
  924. atomic_t usage;
  925. unsigned int flags; /* per process flags, defined below */
  926. unsigned int ptrace;
  927. #ifdef CONFIG_SMP
  928. struct llist_node wake_entry;
  929. int on_cpu;
  930. #endif
  931. int on_rq;
  932. int prio, static_prio, normal_prio;
  933. unsigned int rt_priority;
  934. const struct sched_class *sched_class;
  935. struct sched_entity se;
  936. struct sched_rt_entity rt;
  937. #ifdef CONFIG_CGROUP_SCHED
  938. struct task_group *sched_task_group;
  939. #endif
  940. #ifdef CONFIG_PREEMPT_NOTIFIERS
  941. /* list of struct preempt_notifier: */
  942. struct hlist_head preempt_notifiers;
  943. #endif
  944. /*
  945. * fpu_counter contains the number of consecutive context switches
  946. * that the FPU is used. If this is over a threshold, the lazy fpu
  947. * saving becomes unlazy to save the trap. This is an unsigned char
  948. * so that after 256 times the counter wraps and the behavior turns
  949. * lazy again; this to deal with bursty apps that only use FPU for
  950. * a short time
  951. */
  952. unsigned char fpu_counter;
  953. #ifdef CONFIG_BLK_DEV_IO_TRACE
  954. unsigned int btrace_seq;
  955. #endif
  956. unsigned int policy;
  957. int nr_cpus_allowed;
  958. cpumask_t cpus_allowed;
  959. #ifdef CONFIG_PREEMPT_RCU
  960. int rcu_read_lock_nesting;
  961. char rcu_read_unlock_special;
  962. struct list_head rcu_node_entry;
  963. #endif /* #ifdef CONFIG_PREEMPT_RCU */
  964. #ifdef CONFIG_TREE_PREEMPT_RCU
  965. struct rcu_node *rcu_blocked_node;
  966. #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
  967. #ifdef CONFIG_RCU_BOOST
  968. struct rt_mutex *rcu_boost_mutex;
  969. #endif /* #ifdef CONFIG_RCU_BOOST */
  970. #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
  971. struct sched_info sched_info;
  972. #endif
  973. struct list_head tasks;
  974. #ifdef CONFIG_SMP
  975. struct plist_node pushable_tasks;
  976. #endif
  977. struct mm_struct *mm, *active_mm;
  978. #ifdef CONFIG_COMPAT_BRK
  979. unsigned brk_randomized:1;
  980. #endif
  981. #if defined(SPLIT_RSS_COUNTING)
  982. struct task_rss_stat rss_stat;
  983. #endif
  984. /* task state */
  985. int exit_state;
  986. int exit_code, exit_signal;
  987. int pdeath_signal; /* The signal sent when the parent dies */
  988. unsigned int jobctl; /* JOBCTL_*, siglock protected */
  989. /* ??? */
  990. unsigned int personality;
  991. unsigned did_exec:1;
  992. unsigned in_execve:1; /* Tell the LSMs that the process is doing an
  993. * execve */
  994. unsigned in_iowait:1;
  995. /* task may not gain privileges */
  996. unsigned no_new_privs:1;
  997. /* Revert to default priority/policy when forking */
  998. unsigned sched_reset_on_fork:1;
  999. unsigned sched_contributes_to_load:1;
  1000. pid_t pid;
  1001. pid_t tgid;
  1002. #ifdef CONFIG_CC_STACKPROTECTOR
  1003. /* Canary value for the -fstack-protector gcc feature */
  1004. unsigned long stack_canary;
  1005. #endif
  1006. /*
  1007. * pointers to (original) parent process, youngest child, younger sibling,
  1008. * older sibling, respectively. (p->father can be replaced with
  1009. * p->real_parent->pid)
  1010. */
  1011. struct task_struct __rcu *real_parent; /* real parent process */
  1012. struct task_struct __rcu *parent; /* recipient of SIGCHLD, wait4() reports */
  1013. /*
  1014. * children/sibling forms the list of my natural children
  1015. */
  1016. struct list_head children; /* list of my children */
  1017. struct list_head sibling; /* linkage in my parent's children list */
  1018. struct task_struct *group_leader; /* threadgroup leader */
  1019. /*
  1020. * ptraced is the list of tasks this task is using ptrace on.
  1021. * This includes both natural children and PTRACE_ATTACH targets.
  1022. * p->ptrace_entry is p's link on the p->parent->ptraced list.
  1023. */
  1024. struct list_head ptraced;
  1025. struct list_head ptrace_entry;
  1026. /* PID/PID hash table linkage. */
  1027. struct pid_link pids[PIDTYPE_MAX];
  1028. struct list_head thread_group;
  1029. struct completion *vfork_done; /* for vfork() */
  1030. int __user *set_child_tid; /* CLONE_CHILD_SETTID */
  1031. int __user *clear_child_tid; /* CLONE_CHILD_CLEARTID */
  1032. cputime_t utime, stime, utimescaled, stimescaled;
  1033. cputime_t gtime;
  1034. #ifndef CONFIG_VIRT_CPU_ACCOUNTING
  1035. struct cputime prev_cputime;
  1036. #endif
  1037. #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
  1038. seqlock_t vtime_seqlock;
  1039. unsigned long long vtime_snap;
  1040. enum {
  1041. VTIME_SLEEPING = 0,
  1042. VTIME_USER,
  1043. VTIME_SYS,
  1044. } vtime_snap_whence;
  1045. #endif
  1046. unsigned long nvcsw, nivcsw; /* context switch counts */
  1047. struct timespec start_time; /* monotonic time */
  1048. struct timespec real_start_time; /* boot based time */
  1049. /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
  1050. unsigned long min_flt, maj_flt;
  1051. struct task_cputime cputime_expires;
  1052. struct list_head cpu_timers[3];
  1053. /* process credentials */
  1054. const struct cred __rcu *real_cred; /* objective and real subjective task
  1055. * credentials (COW) */
  1056. const struct cred __rcu *cred; /* effective (overridable) subjective task
  1057. * credentials (COW) */
  1058. char comm[TASK_COMM_LEN]; /* executable name excluding path
  1059. - access with [gs]et_task_comm (which lock
  1060. it with task_lock())
  1061. - initialized normally by setup_new_exec */
  1062. /* file system info */
  1063. int link_count, total_link_count;
  1064. #ifdef CONFIG_SYSVIPC
  1065. /* ipc stuff */
  1066. struct sysv_sem sysvsem;
  1067. #endif
  1068. #ifdef CONFIG_DETECT_HUNG_TASK
  1069. /* hung task detection */
  1070. unsigned long last_switch_count;
  1071. #endif
  1072. /* CPU-specific state of this task */
  1073. struct thread_struct thread;
  1074. /* filesystem information */
  1075. struct fs_struct *fs;
  1076. /* open file information */
  1077. struct files_struct *files;
  1078. /* namespaces */
  1079. struct nsproxy *nsproxy;
  1080. /* signal handlers */
  1081. struct signal_struct *signal;
  1082. struct sighand_struct *sighand;
  1083. sigset_t blocked, real_blocked;
  1084. sigset_t saved_sigmask; /* restored if set_restore_sigmask() was used */
  1085. struct sigpending pending;
  1086. unsigned long sas_ss_sp;
  1087. size_t sas_ss_size;
  1088. int (*notifier)(void *priv);
  1089. void *notifier_data;
  1090. sigset_t *notifier_mask;
  1091. struct callback_head *task_works;
  1092. struct audit_context *audit_context;
  1093. #ifdef CONFIG_AUDITSYSCALL
  1094. kuid_t loginuid;
  1095. unsigned int sessionid;
  1096. #endif
  1097. struct seccomp seccomp;
  1098. /* Thread group tracking */
  1099. u32 parent_exec_id;
  1100. u32 self_exec_id;
  1101. /* Protection of (de-)allocation: mm, files, fs, tty, keyrings, mems_allowed,
  1102. * mempolicy */
  1103. spinlock_t alloc_lock;
  1104. /* Protection of the PI data structures: */
  1105. raw_spinlock_t pi_lock;
  1106. #ifdef CONFIG_RT_MUTEXES
  1107. /* PI waiters blocked on a rt_mutex held by this task */
  1108. struct plist_head pi_waiters;
  1109. /* Deadlock detection and priority inheritance handling */
  1110. struct rt_mutex_waiter *pi_blocked_on;
  1111. #endif
  1112. #ifdef CONFIG_DEBUG_MUTEXES
  1113. /* mutex deadlock detection */
  1114. struct mutex_waiter *blocked_on;
  1115. #endif
  1116. #ifdef CONFIG_TRACE_IRQFLAGS
  1117. unsigned int irq_events;
  1118. unsigned long hardirq_enable_ip;
  1119. unsigned long hardirq_disable_ip;
  1120. unsigned int hardirq_enable_event;
  1121. unsigned int hardirq_disable_event;
  1122. int hardirqs_enabled;
  1123. int hardirq_context;
  1124. unsigned long softirq_disable_ip;
  1125. unsigned long softirq_enable_ip;
  1126. unsigned int softirq_disable_event;
  1127. unsigned int softirq_enable_event;
  1128. int softirqs_enabled;
  1129. int softirq_context;
  1130. #endif
  1131. #ifdef CONFIG_LOCKDEP
  1132. # define MAX_LOCK_DEPTH 48UL
  1133. u64 curr_chain_key;
  1134. int lockdep_depth;
  1135. unsigned int lockdep_recursion;
  1136. struct held_lock held_locks[MAX_LOCK_DEPTH];
  1137. gfp_t lockdep_reclaim_gfp;
  1138. #endif
  1139. /* journalling filesystem info */
  1140. void *journal_info;
  1141. /* stacked block device info */
  1142. struct bio_list *bio_list;
  1143. #ifdef CONFIG_BLOCK
  1144. /* stack plugging */
  1145. struct blk_plug *plug;
  1146. #endif
  1147. /* VM state */
  1148. struct reclaim_state *reclaim_state;
  1149. struct backing_dev_info *backing_dev_info;
  1150. struct io_context *io_context;
  1151. unsigned long ptrace_message;
  1152. siginfo_t *last_siginfo; /* For ptrace use. */
  1153. struct task_io_accounting ioac;
  1154. #if defined(CONFIG_TASK_XACCT)
  1155. u64 acct_rss_mem1; /* accumulated rss usage */
  1156. u64 acct_vm_mem1; /* accumulated virtual memory usage */
  1157. cputime_t acct_timexpd; /* stime + utime since last update */
  1158. #endif
  1159. #ifdef CONFIG_CPUSETS
  1160. nodemask_t mems_allowed; /* Protected by alloc_lock */
  1161. seqcount_t mems_allowed_seq; /* Seqence no to catch updates */
  1162. int cpuset_mem_spread_rotor;
  1163. int cpuset_slab_spread_rotor;
  1164. #endif
  1165. #ifdef CONFIG_CGROUPS
  1166. /* Control Group info protected by css_set_lock */
  1167. struct css_set __rcu *cgroups;
  1168. /* cg_list protected by css_set_lock and tsk->alloc_lock */
  1169. struct list_head cg_list;
  1170. #endif
  1171. #ifdef CONFIG_FUTEX
  1172. struct robust_list_head __user *robust_list;
  1173. #ifdef CONFIG_COMPAT
  1174. struct compat_robust_list_head __user *compat_robust_list;
  1175. #endif
  1176. struct list_head pi_state_list;
  1177. struct futex_pi_state *pi_state_cache;
  1178. #endif
  1179. #ifdef CONFIG_PERF_EVENTS
  1180. struct perf_event_context *perf_event_ctxp[perf_nr_task_contexts];
  1181. struct mutex perf_event_mutex;
  1182. struct list_head perf_event_list;
  1183. #endif
  1184. #ifdef CONFIG_NUMA
  1185. struct mempolicy *mempolicy; /* Protected by alloc_lock */
  1186. short il_next;
  1187. short pref_node_fork;
  1188. #endif
  1189. #ifdef CONFIG_NUMA_BALANCING
  1190. int numa_scan_seq;
  1191. int numa_migrate_seq;
  1192. unsigned int numa_scan_period;
  1193. u64 node_stamp; /* migration stamp */
  1194. struct callback_head numa_work;
  1195. #endif /* CONFIG_NUMA_BALANCING */
  1196. struct rcu_head rcu;
  1197. /*
  1198. * cache last used pipe for splice
  1199. */
  1200. struct pipe_inode_info *splice_pipe;
  1201. struct page_frag task_frag;
  1202. #ifdef CONFIG_TASK_DELAY_ACCT
  1203. struct task_delay_info *delays;
  1204. #endif
  1205. #ifdef CONFIG_FAULT_INJECTION
  1206. int make_it_fail;
  1207. #endif
  1208. /*
  1209. * when (nr_dirtied >= nr_dirtied_pause), it's time to call
  1210. * balance_dirty_pages() for some dirty throttling pause
  1211. */
  1212. int nr_dirtied;
  1213. int nr_dirtied_pause;
  1214. unsigned long dirty_paused_when; /* start of a write-and-pause period */
  1215. #ifdef CONFIG_LATENCYTOP
  1216. int latency_record_count;
  1217. struct latency_record latency_record[LT_SAVECOUNT];
  1218. #endif
  1219. /*
  1220. * time slack values; these are used to round up poll() and
  1221. * select() etc timeout values. These are in nanoseconds.
  1222. */
  1223. unsigned long timer_slack_ns;
  1224. unsigned long default_timer_slack_ns;
  1225. #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  1226. /* Index of current stored address in ret_stack */
  1227. int curr_ret_stack;
  1228. /* Stack of return addresses for return function tracing */
  1229. struct ftrace_ret_stack *ret_stack;
  1230. /* time stamp for last schedule */
  1231. unsigned long long ftrace_timestamp;
  1232. /*
  1233. * Number of functions that haven't been traced
  1234. * because of depth overrun.
  1235. */
  1236. atomic_t trace_overrun;
  1237. /* Pause for the tracing */
  1238. atomic_t tracing_graph_pause;
  1239. #endif
  1240. #ifdef CONFIG_TRACING
  1241. /* state flags for use by tracers */
  1242. unsigned long trace;
  1243. /* bitmask and counter of trace recursion */
  1244. unsigned long trace_recursion;
  1245. #endif /* CONFIG_TRACING */
  1246. #ifdef CONFIG_MEMCG /* memcg uses this to do batch job */
  1247. struct memcg_batch_info {
  1248. int do_batch; /* incremented when batch uncharge started */
  1249. struct mem_cgroup *memcg; /* target memcg of uncharge */
  1250. unsigned long nr_pages; /* uncharged usage */
  1251. unsigned long memsw_nr_pages; /* uncharged mem+swap usage */
  1252. } memcg_batch;
  1253. unsigned int memcg_kmem_skip_account;
  1254. #endif
  1255. #ifdef CONFIG_HAVE_HW_BREAKPOINT
  1256. atomic_t ptrace_bp_refcnt;
  1257. #endif
  1258. #ifdef CONFIG_UPROBES
  1259. struct uprobe_task *utask;
  1260. #endif
  1261. };
  1262. /* Future-safe accessor for struct task_struct's cpus_allowed. */
  1263. #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
  1264. #ifdef CONFIG_NUMA_BALANCING
  1265. extern void task_numa_fault(int node, int pages, bool migrated);
  1266. extern void set_numabalancing_state(bool enabled);
  1267. #else
  1268. static inline void task_numa_fault(int node, int pages, bool migrated)
  1269. {
  1270. }
  1271. static inline void set_numabalancing_state(bool enabled)
  1272. {
  1273. }
  1274. #endif
  1275. static inline struct pid *task_pid(struct task_struct *task)
  1276. {
  1277. return task->pids[PIDTYPE_PID].pid;
  1278. }
  1279. static inline struct pid *task_tgid(struct task_struct *task)
  1280. {
  1281. return task->group_leader->pids[PIDTYPE_PID].pid;
  1282. }
  1283. /*
  1284. * Without tasklist or rcu lock it is not safe to dereference
  1285. * the result of task_pgrp/task_session even if task == current,
  1286. * we can race with another thread doing sys_setsid/sys_setpgid.
  1287. */
  1288. static inline struct pid *task_pgrp(struct task_struct *task)
  1289. {
  1290. return task->group_leader->pids[PIDTYPE_PGID].pid;
  1291. }
  1292. static inline struct pid *task_session(struct task_struct *task)
  1293. {
  1294. return task->group_leader->pids[PIDTYPE_SID].pid;
  1295. }
  1296. struct pid_namespace;
  1297. /*
  1298. * the helpers to get the task's different pids as they are seen
  1299. * from various namespaces
  1300. *
  1301. * task_xid_nr() : global id, i.e. the id seen from the init namespace;
  1302. * task_xid_vnr() : virtual id, i.e. the id seen from the pid namespace of
  1303. * current.
  1304. * task_xid_nr_ns() : id seen from the ns specified;
  1305. *
  1306. * set_task_vxid() : assigns a virtual id to a task;
  1307. *
  1308. * see also pid_nr() etc in include/linux/pid.h
  1309. */
  1310. pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
  1311. struct pid_namespace *ns);
  1312. static inline pid_t task_pid_nr(struct task_struct *tsk)
  1313. {
  1314. return tsk->pid;
  1315. }
  1316. static inline pid_t task_pid_nr_ns(struct task_struct *tsk,
  1317. struct pid_namespace *ns)
  1318. {
  1319. return __task_pid_nr_ns(tsk, PIDTYPE_PID, ns);
  1320. }
  1321. static inline pid_t task_pid_vnr(struct task_struct *tsk)
  1322. {
  1323. return __task_pid_nr_ns(tsk, PIDTYPE_PID, NULL);
  1324. }
  1325. static inline pid_t task_tgid_nr(struct task_struct *tsk)
  1326. {
  1327. return tsk->tgid;
  1328. }
  1329. pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns);
  1330. static inline pid_t task_tgid_vnr(struct task_struct *tsk)
  1331. {
  1332. return pid_vnr(task_tgid(tsk));
  1333. }
  1334. static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk,
  1335. struct pid_namespace *ns)
  1336. {
  1337. return __task_pid_nr_ns(tsk, PIDTYPE_PGID, ns);
  1338. }
  1339. static inline pid_t task_pgrp_vnr(struct task_struct *tsk)
  1340. {
  1341. return __task_pid_nr_ns(tsk, PIDTYPE_PGID, NULL);
  1342. }
  1343. static inline pid_t task_session_nr_ns(struct task_struct *tsk,
  1344. struct pid_namespace *ns)
  1345. {
  1346. return __task_pid_nr_ns(tsk, PIDTYPE_SID, ns);
  1347. }
  1348. static inline pid_t task_session_vnr(struct task_struct *tsk)
  1349. {
  1350. return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL);
  1351. }
  1352. /* obsolete, do not use */
  1353. static inline pid_t task_pgrp_nr(struct task_struct *tsk)
  1354. {
  1355. return task_pgrp_nr_ns(tsk, &init_pid_ns);
  1356. }
  1357. /**
  1358. * pid_alive - check that a task structure is not stale
  1359. * @p: Task structure to be checked.
  1360. *
  1361. * Test if a process is not yet dead (at most zombie state)
  1362. * If pid_alive fails, then pointers within the task structure
  1363. * can be stale and must not be dereferenced.
  1364. */
  1365. static inline int pid_alive(struct task_struct *p)
  1366. {
  1367. return p->pids[PIDTYPE_PID].pid != NULL;
  1368. }
  1369. /**
  1370. * is_global_init - check if a task structure is init
  1371. * @tsk: Task structure to be checked.
  1372. *
  1373. * Check if a task structure is the first user space task the kernel created.
  1374. */
  1375. static inline int is_global_init(struct task_struct *tsk)
  1376. {
  1377. return tsk->pid == 1;
  1378. }
  1379. extern struct pid *cad_pid;
  1380. extern void free_task(struct task_struct *tsk);
  1381. #define get_task_struct(tsk) do { atomic_inc(&(tsk)->usage); } while(0)
  1382. extern void __put_task_struct(struct task_struct *t);
  1383. static inline void put_task_struct(struct task_struct *t)
  1384. {
  1385. if (atomic_dec_and_test(&t->usage))
  1386. __put_task_struct(t);
  1387. }
  1388. #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
  1389. extern void task_cputime(struct task_struct *t,
  1390. cputime_t *utime, cputime_t *stime);
  1391. extern void task_cputime_scaled(struct task_struct *t,
  1392. cputime_t *utimescaled, cputime_t *stimescaled);
  1393. extern cputime_t task_gtime(struct task_struct *t);
  1394. #else
  1395. static inline void task_cputime(struct task_struct *t,
  1396. cputime_t *utime, cputime_t *stime)
  1397. {
  1398. if (utime)
  1399. *utime = t->utime;
  1400. if (stime)
  1401. *stime = t->stime;
  1402. }
  1403. static inline void task_cputime_scaled(struct task_struct *t,
  1404. cputime_t *utimescaled,
  1405. cputime_t *stimescaled)
  1406. {
  1407. if (utimescaled)
  1408. *utimescaled = t->utimescaled;
  1409. if (stimescaled)
  1410. *stimescaled = t->stimescaled;
  1411. }
  1412. static inline cputime_t task_gtime(struct task_struct *t)
  1413. {
  1414. return t->gtime;
  1415. }
  1416. #endif
  1417. extern void task_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st);
  1418. extern void thread_group_cputime_adjusted(struct task_struct *p, cputime_t *ut, cputime_t *st);
  1419. /*
  1420. * Per process flags
  1421. */
  1422. #define PF_EXITING 0x00000004 /* getting shut down */
  1423. #define PF_EXITPIDONE 0x00000008 /* pi exit done on shut down */
  1424. #define PF_VCPU 0x00000010 /* I'm a virtual CPU */
  1425. #define PF_WQ_WORKER 0x00000020 /* I'm a workqueue worker */
  1426. #define PF_FORKNOEXEC 0x00000040 /* forked but didn't exec */
  1427. #define PF_MCE_PROCESS 0x00000080 /* process policy on mce errors */
  1428. #define PF_SUPERPRIV 0x00000100 /* used super-user privileges */
  1429. #define PF_DUMPCORE 0x00000200 /* dumped core */
  1430. #define PF_SIGNALED 0x00000400 /* killed by a signal */
  1431. #define PF_MEMALLOC 0x00000800 /* Allocating memory */
  1432. #define PF_NPROC_EXCEEDED 0x00001000 /* set_user noticed that RLIMIT_NPROC was exceeded */
  1433. #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */
  1434. #define PF_USED_ASYNC 0x00004000 /* used async_schedule*(), used by module init */
  1435. #define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */
  1436. #define PF_FROZEN 0x00010000 /* frozen for system suspend */
  1437. #define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */
  1438. #define PF_KSWAPD 0x00040000 /* I am kswapd */
  1439. #define PF_MEMALLOC_NOIO 0x00080000 /* Allocating memory without IO involved */
  1440. #define PF_LESS_THROTTLE 0x00100000 /* Throttle me less: I clean memory */
  1441. #define PF_KTHREAD 0x00200000 /* I am a kernel thread */
  1442. #define PF_RANDOMIZE 0x00400000 /* randomize virtual address space */
  1443. #define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */
  1444. #define PF_SPREAD_PAGE 0x01000000 /* Spread page cache over cpuset */
  1445. #define PF_SPREAD_SLAB 0x02000000 /* Spread some slab caches over cpuset */
  1446. #define PF_THREAD_BOUND 0x04000000 /* Thread bound to specific cpu */
  1447. #define PF_MCE_EARLY 0x08000000 /* Early kill for mce process policy */
  1448. #define PF_MEMPOLICY 0x10000000 /* Non-default NUMA mempolicy */
  1449. #define PF_MUTEX_TESTER 0x20000000 /* Thread belongs to the rt mutex tester */
  1450. #define PF_FREEZER_SKIP 0x40000000 /* Freezer should not count it as freezable */
  1451. /*
  1452. * Only the _current_ task can read/write to tsk->flags, but other
  1453. * tasks can access tsk->flags in readonly mode for example
  1454. * with tsk_used_math (like during threaded core dumping).
  1455. * There is however an exception to this rule during ptrace
  1456. * or during fork: the ptracer task is allowed to write to the
  1457. * child->flags of its traced child (same goes for fork, the parent
  1458. * can write to the child->flags), because we're guaranteed the
  1459. * child is not running and in turn not changing child->flags
  1460. * at the same time the parent does it.
  1461. */
  1462. #define clear_stopped_child_used_math(child) do { (child)->flags &= ~PF_USED_MATH; } while (0)
  1463. #define set_stopped_child_used_math(child) do { (child)->flags |= PF_USED_MATH; } while (0)
  1464. #define clear_used_math() clear_stopped_child_used_math(current)
  1465. #define set_used_math() set_stopped_child_used_math(current)
  1466. #define conditional_stopped_child_used_math(condition, child) \
  1467. do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
  1468. #define conditional_used_math(condition) \
  1469. conditional_stopped_child_used_math(condition, current)
  1470. #define copy_to_stopped_child_used_math(child) \
  1471. do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= current->flags & PF_USED_MATH; } while (0)
  1472. /* NOTE: this will return 0 or PF_USED_MATH, it will never return 1 */
  1473. #define tsk_used_math(p) ((p)->flags & PF_USED_MATH)
  1474. #define used_math() tsk_used_math(current)
  1475. /* __GFP_IO isn't allowed if PF_MEMALLOC_NOIO is set in current->flags */
  1476. static inline gfp_t memalloc_noio_flags(gfp_t flags)
  1477. {
  1478. if (unlikely(current->flags & PF_MEMALLOC_NOIO))
  1479. flags &= ~__GFP_IO;
  1480. return flags;
  1481. }
  1482. static inline unsigned int memalloc_noio_save(void)
  1483. {
  1484. unsigned int flags = current->flags & PF_MEMALLOC_NOIO;
  1485. current->flags |= PF_MEMALLOC_NOIO;
  1486. return flags;
  1487. }
  1488. static inline void memalloc_noio_restore(unsigned int flags)
  1489. {
  1490. current->flags = (current->flags & ~PF_MEMALLOC_NOIO) | flags;
  1491. }
  1492. /*
  1493. * task->jobctl flags
  1494. */
  1495. #define JOBCTL_STOP_SIGMASK 0xffff /* signr of the last group stop */
  1496. #define JOBCTL_STOP_DEQUEUED_BIT 16 /* stop signal dequeued */
  1497. #define JOBCTL_STOP_PENDING_BIT 17 /* task should stop for group stop */
  1498. #define JOBCTL_STOP_CONSUME_BIT 18 /* consume group stop count */
  1499. #define JOBCTL_TRAP_STOP_BIT 19 /* trap for STOP */
  1500. #define JOBCTL_TRAP_NOTIFY_BIT 20 /* trap for NOTIFY */
  1501. #define JOBCTL_TRAPPING_BIT 21 /* switching to TRACED */
  1502. #define JOBCTL_LISTENING_BIT 22 /* ptracer is listening for events */
  1503. #define JOBCTL_STOP_DEQUEUED (1 << JOBCTL_STOP_DEQUEUED_BIT)
  1504. #define JOBCTL_STOP_PENDING (1 << JOBCTL_STOP_PENDING_BIT)
  1505. #define JOBCTL_STOP_CONSUME (1 << JOBCTL_STOP_CONSUME_BIT)
  1506. #define JOBCTL_TRAP_STOP (1 << JOBCTL_TRAP_STOP_BIT)
  1507. #define JOBCTL_TRAP_NOTIFY (1 << JOBCTL_TRAP_NOTIFY_BIT)
  1508. #define JOBCTL_TRAPPING (1 << JOBCTL_TRAPPING_BIT)
  1509. #define JOBCTL_LISTENING (1 << JOBCTL_LISTENING_BIT)
  1510. #define JOBCTL_TRAP_MASK (JOBCTL_TRAP_STOP | JOBCTL_TRAP_NOTIFY)
  1511. #define JOBCTL_PENDING_MASK (JOBCTL_STOP_PENDING | JOBCTL_TRAP_MASK)
  1512. extern bool task_set_jobctl_pending(struct task_struct *task,
  1513. unsigned int mask);
  1514. extern void task_clear_jobctl_trapping(struct task_struct *task);
  1515. extern void task_clear_jobctl_pending(struct task_struct *task,
  1516. unsigned int mask);
  1517. #ifdef CONFIG_PREEMPT_RCU
  1518. #define RCU_READ_UNLOCK_BLOCKED (1 << 0) /* blocked while in RCU read-side. */
  1519. #define RCU_READ_UNLOCK_NEED_QS (1 << 1) /* RCU core needs CPU response. */
  1520. static inline void rcu_copy_process(struct task_struct *p)
  1521. {
  1522. p->rcu_read_lock_nesting = 0;
  1523. p->rcu_read_unlock_special = 0;
  1524. #ifdef CONFIG_TREE_PREEMPT_RCU
  1525. p->rcu_blocked_node = NULL;
  1526. #endif /* #ifdef CONFIG_TREE_PREEMPT_RCU */
  1527. #ifdef CONFIG_RCU_BOOST
  1528. p->rcu_boost_mutex = NULL;
  1529. #endif /* #ifdef CONFIG_RCU_BOOST */
  1530. INIT_LIST_HEAD(&p->rcu_node_entry);
  1531. }
  1532. #else
  1533. static inline void rcu_copy_process(struct task_struct *p)
  1534. {
  1535. }
  1536. #endif
  1537. static inline void tsk_restore_flags(struct task_struct *task,
  1538. unsigned long orig_flags, unsigned long flags)
  1539. {
  1540. task->flags &= ~flags;
  1541. task->flags |= orig_flags & flags;
  1542. }
  1543. #ifdef CONFIG_SMP
  1544. extern void do_set_cpus_allowed(struct task_struct *p,
  1545. const struct cpumask *new_mask);
  1546. extern int set_cpus_allowed_ptr(struct task_struct *p,
  1547. const struct cpumask *new_mask);
  1548. #else
  1549. static inline void do_set_cpus_allowed(struct task_struct *p,
  1550. const struct cpumask *new_mask)
  1551. {
  1552. }
  1553. static inline int set_cpus_allowed_ptr(struct task_struct *p,
  1554. const struct cpumask *new_mask)
  1555. {
  1556. if (!cpumask_test_cpu(0, new_mask))
  1557. return -EINVAL;
  1558. return 0;
  1559. }
  1560. #endif
  1561. #ifdef CONFIG_NO_HZ
  1562. void calc_load_enter_idle(void);
  1563. void calc_load_exit_idle(void);
  1564. #else
  1565. static inline void calc_load_enter_idle(void) { }
  1566. static inline void calc_load_exit_idle(void) { }
  1567. #endif /* CONFIG_NO_HZ */
  1568. #ifndef CONFIG_CPUMASK_OFFSTACK
  1569. static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
  1570. {
  1571. return set_cpus_allowed_ptr(p, &new_mask);
  1572. }
  1573. #endif
  1574. /*
  1575. * Do not use outside of architecture code which knows its limitations.
  1576. *
  1577. * sched_clock() has no promise of monotonicity or bounded drift between
  1578. * CPUs, use (which you should not) requires disabling IRQs.
  1579. *
  1580. * Please use one of the three interfaces below.
  1581. */
  1582. extern unsigned long long notrace sched_clock(void);
  1583. /*
  1584. * See the comment in kernel/sched/clock.c
  1585. */
  1586. extern u64 cpu_clock(int cpu);
  1587. extern u64 local_clock(void);
  1588. extern u64 sched_clock_cpu(int cpu);
  1589. extern void sched_clock_init(void);
  1590. #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
  1591. static inline void sched_clock_tick(void)
  1592. {
  1593. }
  1594. static inline void sched_clock_idle_sleep_event(void)
  1595. {
  1596. }
  1597. static inline void sched_clock_idle_wakeup_event(u64 delta_ns)
  1598. {
  1599. }
  1600. #else
  1601. /*
  1602. * Architectures can set this to 1 if they have specified
  1603. * CONFIG_HAVE_UNSTABLE_SCHED_CLOCK in their arch Kconfig,
  1604. * but then during bootup it turns out that sched_clock()
  1605. * is reliable after all:
  1606. */
  1607. extern int sched_clock_stable;
  1608. extern void sched_clock_tick(void);
  1609. extern void sched_clock_idle_sleep_event(void);
  1610. extern void sched_clock_idle_wakeup_event(u64 delta_ns);
  1611. #endif
  1612. #ifdef CONFIG_IRQ_TIME_ACCOUNTING
  1613. /*
  1614. * An i/f to runtime opt-in for irq time accounting based off of sched_clock.
  1615. * The reason for this explicit opt-in is not to have perf penalty with
  1616. * slow sched_clocks.
  1617. */
  1618. extern void enable_sched_clock_irqtime(void);
  1619. extern void disable_sched_clock_irqtime(void);
  1620. #else
  1621. static inline void enable_sched_clock_irqtime(void) {}
  1622. static inline void disable_sched_clock_irqtime(void) {}
  1623. #endif
  1624. extern unsigned long long
  1625. task_sched_runtime(struct task_struct *task);
  1626. /* sched_exec is called by processes performing an exec */
  1627. #ifdef CONFIG_SMP
  1628. extern void sched_exec(void);
  1629. #else
  1630. #define sched_exec() {}
  1631. #endif
  1632. extern void sched_clock_idle_sleep_event(void);
  1633. extern void sched_clock_idle_wakeup_event(u64 delta_ns);
  1634. #ifdef CONFIG_HOTPLUG_CPU
  1635. extern void idle_task_exit(void);
  1636. #else
  1637. static inline void idle_task_exit(void) {}
  1638. #endif
  1639. #if defined(CONFIG_NO_HZ) && defined(CONFIG_SMP)
  1640. extern void wake_up_idle_cpu(int cpu);
  1641. #else
  1642. static inline void wake_up_idle_cpu(int cpu) { }
  1643. #endif
  1644. #ifdef CONFIG_SCHED_AUTOGROUP
  1645. extern void sched_autogroup_create_attach(struct task_struct *p);
  1646. extern void sched_autogroup_detach(struct task_struct *p);
  1647. extern void sched_autogroup_fork(struct signal_struct *sig);
  1648. extern void sched_autogroup_exit(struct signal_struct *sig);
  1649. #ifdef CONFIG_PROC_FS
  1650. extern void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m);
  1651. extern int proc_sched_autogroup_set_nice(struct task_struct *p, int nice);
  1652. #endif
  1653. #else
  1654. static inline void sched_autogroup_create_attach(struct task_struct *p) { }
  1655. static inline void sched_autogroup_detach(struct task_struct *p) { }
  1656. static inline void sched_autogroup_fork(struct signal_struct *sig) { }
  1657. static inline void sched_autogroup_exit(struct signal_struct *sig) { }
  1658. #endif
  1659. extern bool yield_to(struct task_struct *p, bool preempt);
  1660. extern void set_user_nice(struct task_struct *p, long nice);
  1661. extern int task_prio(const struct task_struct *p);
  1662. extern int task_nice(const struct task_struct *p);
  1663. extern int can_nice(const struct task_struct *p, const int nice);
  1664. extern int task_curr(const struct task_struct *p);
  1665. extern int idle_cpu(int cpu);
  1666. extern int sched_setscheduler(struct task_struct *, int,
  1667. const struct sched_param *);
  1668. extern int sched_setscheduler_nocheck(struct task_struct *, int,
  1669. const struct sched_param *);
  1670. extern struct task_struct *idle_task(int cpu);
  1671. /**
  1672. * is_idle_task - is the specified task an idle task?
  1673. * @p: the task in question.
  1674. */
  1675. static inline bool is_idle_task(const struct task_struct *p)
  1676. {
  1677. return p->pid == 0;
  1678. }
  1679. extern struct task_struct *curr_task(int cpu);
  1680. extern void set_curr_task(int cpu, struct task_struct *p);
  1681. void yield(void);
  1682. /*
  1683. * The default (Linux) execution domain.
  1684. */
  1685. extern struct exec_domain default_exec_domain;
  1686. union thread_union {
  1687. struct thread_info thread_info;
  1688. unsigned long stack[THREAD_SIZE/sizeof(long)];
  1689. };
  1690. #ifndef __HAVE_ARCH_KSTACK_END
  1691. static inline int kstack_end(void *addr)
  1692. {
  1693. /* Reliable end of stack detection:
  1694. * Some APM bios versions misalign the stack
  1695. */
  1696. return !(((unsigned long)addr+sizeof(void*)-1) & (THREAD_SIZE-sizeof(void*)));
  1697. }
  1698. #endif
  1699. extern union thread_union init_thread_union;
  1700. extern struct task_struct init_task;
  1701. extern struct mm_struct init_mm;
  1702. extern struct pid_namespace init_pid_ns;
  1703. /*
  1704. * find a task by one of its numerical ids
  1705. *
  1706. * find_task_by_pid_ns():
  1707. * finds a task by its pid in the specified namespace
  1708. * find_task_by_vpid():
  1709. * finds a task by its virtual pid
  1710. *
  1711. * see also find_vpid() etc in include/linux/pid.h
  1712. */
  1713. extern struct task_struct *find_task_by_vpid(pid_t nr);
  1714. extern struct task_struct *find_task_by_pid_ns(pid_t nr,
  1715. struct pid_namespace *ns);
  1716. extern void __set_special_pids(struct pid *pid);
  1717. /* per-UID process charging. */
  1718. extern struct user_struct * alloc_uid(kuid_t);
  1719. static inline struct user_struct *get_uid(struct user_struct *u)
  1720. {
  1721. atomic_inc(&u->__count);
  1722. return u;
  1723. }
  1724. extern void free_uid(struct user_struct *);
  1725. #include <asm/current.h>
  1726. extern void xtime_update(unsigned long ticks);
  1727. extern int wake_up_state(struct task_struct *tsk, unsigned int state);
  1728. extern int wake_up_process(struct task_struct *tsk);
  1729. extern void wake_up_new_task(struct task_struct *tsk);
  1730. #ifdef CONFIG_SMP
  1731. extern void kick_process(struct task_struct *tsk);
  1732. #else
  1733. static inline void kick_process(struct task_struct *tsk) { }
  1734. #endif
  1735. extern void sched_fork(struct task_struct *p);
  1736. extern void sched_dead(struct task_struct *p);
  1737. extern void proc_caches_init(void);
  1738. extern void flush_signals(struct task_struct *);
  1739. extern void __flush_signals(struct task_struct *);
  1740. extern void ignore_signals(struct task_struct *);
  1741. extern void flush_signal_handlers(struct task_struct *, int force_default);
  1742. extern int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info);
  1743. static inline int dequeue_signal_lock(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
  1744. {
  1745. unsigned long flags;
  1746. int ret;
  1747. spin_lock_irqsave(&tsk->sighand->siglock, flags);
  1748. ret = dequeue_signal(tsk, mask, info);
  1749. spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
  1750. return ret;
  1751. }
  1752. extern void block_all_signals(int (*notifier)(void *priv), void *priv,
  1753. sigset_t *mask);
  1754. extern void unblock_all_signals(void);
  1755. extern void release_task(struct task_struct * p);
  1756. extern int send_sig_info(int, struct siginfo *, struct task_struct *);
  1757. extern int force_sigsegv(int, struct task_struct *);
  1758. extern int force_sig_info(int, struct siginfo *, struct task_struct *);
  1759. extern int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp);
  1760. extern int kill_pid_info(int sig, struct siginfo *info, struct pid *pid);
  1761. extern int kill_pid_info_as_cred(int, struct siginfo *, struct pid *,
  1762. const struct cred *, u32);
  1763. extern int kill_pgrp(struct pid *pid, int sig, int priv);
  1764. extern int kill_pid(struct pid *pid, int sig, int priv);
  1765. extern int kill_proc_info(int, struct siginfo *, pid_t);
  1766. extern __must_check bool do_notify_parent(struct task_struct *, int);
  1767. extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent);
  1768. extern void force_sig(int, struct task_struct *);
  1769. extern int send_sig(int, struct task_struct *, int);
  1770. extern int zap_other_threads(struct task_struct *p);
  1771. extern struct sigqueue *sigqueue_alloc(void);
  1772. extern void sigqueue_free(struct sigqueue *);
  1773. extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group);
  1774. extern int do_sigaction(int, struct k_sigaction *, struct k_sigaction *);
  1775. static inline void restore_saved_sigmask(void)
  1776. {
  1777. if (test_and_clear_restore_sigmask())
  1778. __set_current_blocked(&current->saved_sigmask);
  1779. }
  1780. static inline sigset_t *sigmask_to_save(void)
  1781. {
  1782. sigset_t *res = &current->blocked;
  1783. if (unlikely(test_restore_sigmask()))
  1784. res = &current->saved_sigmask;
  1785. return res;
  1786. }
  1787. static inline int kill_cad_pid(int sig, int priv)
  1788. {
  1789. return kill_pid(cad_pid, sig, priv);
  1790. }
  1791. /* These can be the second arg to send_sig_info/send_group_sig_info. */
  1792. #define SEND_SIG_NOINFO ((struct siginfo *) 0)
  1793. #define SEND_SIG_PRIV ((struct siginfo *) 1)
  1794. #define SEND_SIG_FORCED ((struct siginfo *) 2)
  1795. /*
  1796. * True if we are on the alternate signal stack.
  1797. */
  1798. static inline int on_sig_stack(unsigned long sp)
  1799. {
  1800. #ifdef CONFIG_STACK_GROWSUP
  1801. return sp >= current->sas_ss_sp &&
  1802. sp - current->sas_ss_sp < current->sas_ss_size;
  1803. #else
  1804. return sp > current->sas_ss_sp &&
  1805. sp - current->sas_ss_sp <= current->sas_ss_size;
  1806. #endif
  1807. }
  1808. static inline int sas_ss_flags(unsigned long sp)
  1809. {
  1810. return (current->sas_ss_size == 0 ? SS_DISABLE
  1811. : on_sig_stack(sp) ? SS_ONSTACK : 0);
  1812. }
  1813. static inline unsigned long sigsp(unsigned long sp, struct ksignal *ksig)
  1814. {
  1815. if (unlikely((ksig->ka.sa.sa_flags & SA_ONSTACK)) && ! sas_ss_flags(sp))
  1816. #ifdef CONFIG_STACK_GROWSUP
  1817. return current->sas_ss_sp;
  1818. #else
  1819. return current->sas_ss_sp + current->sas_ss_size;
  1820. #endif
  1821. return sp;
  1822. }
  1823. /*
  1824. * Routines for handling mm_structs
  1825. */
  1826. extern struct mm_struct * mm_alloc(void);
  1827. /* mmdrop drops the mm and the page tables */
  1828. extern void __mmdrop(struct mm_struct *);
  1829. static inline void mmdrop(struct mm_struct * mm)
  1830. {
  1831. if (unlikely(atomic_dec_and_test(&mm->mm_count)))
  1832. __mmdrop(mm);
  1833. }
  1834. /* mmput gets rid of the mappings and all user-space */
  1835. extern void mmput(struct mm_struct *);
  1836. /* Grab a reference to a task's mm, if it is not already going away */
  1837. extern struct mm_struct *get_task_mm(struct task_struct *task);
  1838. /*
  1839. * Grab a reference to a task's mm, if it is not already going away
  1840. * and ptrace_may_access with the mode parameter passed to it
  1841. * succeeds.
  1842. */
  1843. extern struct mm_struct *mm_access(struct task_struct *task, unsigned int mode);
  1844. /* Remove the current tasks stale references to the old mm_struct */
  1845. extern void mm_release(struct task_struct *, struct mm_struct *);
  1846. /* Allocate a new mm structure and copy contents from tsk->mm */
  1847. extern struct mm_struct *dup_mm(struct task_struct *tsk);
  1848. extern int copy_thread(unsigned long, unsigned long, unsigned long,
  1849. struct task_struct *);
  1850. extern void flush_thread(void);
  1851. extern void exit_thread(void);
  1852. extern void exit_files(struct task_struct *);
  1853. extern void __cleanup_sighand(struct sighand_struct *);
  1854. extern void exit_itimers(struct signal_struct *);
  1855. extern void flush_itimer_signals(void);
  1856. extern void do_group_exit(int);
  1857. extern int allow_signal(int);
  1858. extern int disallow_signal(int);
  1859. extern int do_execve(const char *,
  1860. const char __user * const __user *,
  1861. const char __user * const __user *);
  1862. extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *);
  1863. struct task_struct *fork_idle(int);
  1864. extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  1865. extern void set_task_comm(struct task_struct *tsk, char *from);
  1866. extern char *get_task_comm(char *to, struct task_struct *tsk);
  1867. #ifdef CONFIG_SMP
  1868. void scheduler_ipi(void);
  1869. extern unsigned long wait_task_inactive(struct task_struct *, long match_state);
  1870. #else
  1871. static inline void scheduler_ipi(void) { }
  1872. static inline unsigned long wait_task_inactive(struct task_struct *p,
  1873. long match_state)
  1874. {
  1875. return 1;
  1876. }
  1877. #endif
  1878. #define next_task(p) \
  1879. list_entry_rcu((p)->tasks.next, struct task_struct, tasks)
  1880. #define for_each_process(p) \
  1881. for (p = &init_task ; (p = next_task(p)) != &init_task ; )
  1882. extern bool current_is_single_threaded(void);
  1883. /*
  1884. * Careful: do_each_thread/while_each_thread is a double loop so
  1885. * 'break' will not work as expected - use goto instead.
  1886. */
  1887. #define do_each_thread(g, t) \
  1888. for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
  1889. #define while_each_thread(g, t) \
  1890. while ((t = next_thread(t)) != g)
  1891. static inline int get_nr_threads(struct task_struct *tsk)
  1892. {
  1893. return tsk->signal->nr_threads;
  1894. }
  1895. static inline bool thread_group_leader(struct task_struct *p)
  1896. {
  1897. return p->exit_signal >= 0;
  1898. }
  1899. /* Do to the insanities of de_thread it is possible for a process
  1900. * to have the pid of the thread group leader without actually being
  1901. * the thread group leader. For iteration through the pids in proc
  1902. * all we care about is that we have a task with the appropriate
  1903. * pid, we don't actually care if we have the right task.
  1904. */
  1905. static inline int has_group_leader_pid(struct task_struct *p)
  1906. {
  1907. return p->pid == p->tgid;
  1908. }
  1909. static inline
  1910. int same_thread_group(struct task_struct *p1, struct task_struct *p2)
  1911. {
  1912. return p1->tgid == p2->tgid;
  1913. }
  1914. static inline struct task_struct *next_thread(const struct task_struct *p)
  1915. {
  1916. return list_entry_rcu(p->thread_group.next,
  1917. struct task_struct, thread_group);
  1918. }
  1919. static inline int thread_group_empty(struct task_struct *p)
  1920. {
  1921. return list_empty(&p->thread_group);
  1922. }
  1923. #define delay_group_leader(p) \
  1924. (thread_group_leader(p) && !thread_group_empty(p))
  1925. /*
  1926. * Protects ->fs, ->files, ->mm, ->group_info, ->comm, keyring
  1927. * subscriptions and synchronises with wait4(). Also used in procfs. Also
  1928. * pins the final release of task.io_context. Also protects ->cpuset and
  1929. * ->cgroup.subsys[]. And ->vfork_done.
  1930. *
  1931. * Nests both inside and outside of read_lock(&tasklist_lock).
  1932. * It must not be nested with write_lock_irq(&tasklist_lock),
  1933. * neither inside nor outside.
  1934. */
  1935. static inline void task_lock(struct task_struct *p)
  1936. {
  1937. spin_lock(&p->alloc_lock);
  1938. }
  1939. static inline void task_unlock(struct task_struct *p)
  1940. {
  1941. spin_unlock(&p->alloc_lock);
  1942. }
  1943. extern struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
  1944. unsigned long *flags);
  1945. static inline struct sighand_struct *lock_task_sighand(struct task_struct *tsk,
  1946. unsigned long *flags)
  1947. {
  1948. struct sighand_struct *ret;
  1949. ret = __lock_task_sighand(tsk, flags);
  1950. (void)__cond_lock(&tsk->sighand->siglock, ret);
  1951. return ret;
  1952. }
  1953. static inline void unlock_task_sighand(struct task_struct *tsk,
  1954. unsigned long *flags)
  1955. {
  1956. spin_unlock_irqrestore(&tsk->sighand->siglock, *flags);
  1957. }
  1958. #ifdef CONFIG_CGROUPS
  1959. static inline void threadgroup_change_begin(struct task_struct *tsk)
  1960. {
  1961. down_read(&tsk->signal->group_rwsem);
  1962. }
  1963. static inline void threadgroup_change_end(struct task_struct *tsk)
  1964. {
  1965. up_read(&tsk->signal->group_rwsem);
  1966. }
  1967. /**
  1968. * threadgroup_lock - lock threadgroup
  1969. * @tsk: member task of the threadgroup to lock
  1970. *
  1971. * Lock the threadgroup @tsk belongs to. No new task is allowed to enter
  1972. * and member tasks aren't allowed to exit (as indicated by PF_EXITING) or
  1973. * perform exec. This is useful for cases where the threadgroup needs to
  1974. * stay stable across blockable operations.
  1975. *
  1976. * fork and exit paths explicitly call threadgroup_change_{begin|end}() for
  1977. * synchronization. While held, no new task will be added to threadgroup
  1978. * and no existing live task will have its PF_EXITING set.
  1979. *
  1980. * During exec, a task goes and puts its thread group through unusual
  1981. * changes. After de-threading, exclusive access is assumed to resources
  1982. * which are usually shared by tasks in the same group - e.g. sighand may
  1983. * be replaced with a new one. Also, the exec'ing task takes over group
  1984. * leader role including its pid. Exclude these changes while locked by
  1985. * grabbing cred_guard_mutex which is used to synchronize exec path.
  1986. */
  1987. static inline void threadgroup_lock(struct task_struct *tsk)
  1988. {
  1989. /*
  1990. * exec uses exit for de-threading nesting group_rwsem inside
  1991. * cred_guard_mutex. Grab cred_guard_mutex first.
  1992. */
  1993. mutex_lock(&tsk->signal->cred_guard_mutex);
  1994. down_write(&tsk->signal->group_rwsem);
  1995. }
  1996. /**
  1997. * threadgroup_unlock - unlock threadgroup
  1998. * @tsk: member task of the threadgroup to unlock
  1999. *
  2000. * Reverse threadgroup_lock().
  2001. */
  2002. static inline void threadgroup_unlock(struct task_struct *tsk)
  2003. {
  2004. up_write(&tsk->signal->group_rwsem);
  2005. mutex_unlock(&tsk->signal->cred_guard_mutex);
  2006. }
  2007. #else
  2008. static inline void threadgroup_change_begin(struct task_struct *tsk) {}
  2009. static inline void threadgroup_change_end(struct task_struct *tsk) {}
  2010. static inline void threadgroup_lock(struct task_struct *tsk) {}
  2011. static inline void threadgroup_unlock(struct task_struct *tsk) {}
  2012. #endif
  2013. #ifndef __HAVE_THREAD_FUNCTIONS
  2014. #define task_thread_info(task) ((struct thread_info *)(task)->stack)
  2015. #define task_stack_page(task) ((task)->stack)
  2016. static inline void setup_thread_stack(struct task_struct *p, struct task_struct *org)
  2017. {
  2018. *task_thread_info(p) = *task_thread_info(org);
  2019. task_thread_info(p)->task = p;
  2020. }
  2021. static inline unsigned long *end_of_stack(struct task_struct *p)
  2022. {
  2023. return (unsigned long *)(task_thread_info(p) + 1);
  2024. }
  2025. #endif
  2026. static inline int object_is_on_stack(void *obj)
  2027. {
  2028. void *stack = task_stack_page(current);
  2029. return (obj >= stack) && (obj < (stack + THREAD_SIZE));
  2030. }
  2031. extern void thread_info_cache_init(void);
  2032. #ifdef CONFIG_DEBUG_STACK_USAGE
  2033. static inline unsigned long stack_not_used(struct task_struct *p)
  2034. {
  2035. unsigned long *n = end_of_stack(p);
  2036. do { /* Skip over canary */
  2037. n++;
  2038. } while (!*n);
  2039. return (unsigned long)n - (unsigned long)end_of_stack(p);
  2040. }
  2041. #endif
  2042. /* set thread flags in other task's structures
  2043. * - see asm/thread_info.h for TIF_xxxx flags available
  2044. */
  2045. static inline void set_tsk_thread_flag(struct task_struct *tsk, int flag)
  2046. {
  2047. set_ti_thread_flag(task_thread_info(tsk), flag);
  2048. }
  2049. static inline void clear_tsk_thread_flag(struct task_struct *tsk, int flag)
  2050. {
  2051. clear_ti_thread_flag(task_thread_info(tsk), flag);
  2052. }
  2053. static inline int test_and_set_tsk_thread_flag(struct task_struct *tsk, int flag)
  2054. {
  2055. return test_and_set_ti_thread_flag(task_thread_info(tsk), flag);
  2056. }
  2057. static inline int test_and_clear_tsk_thread_flag(struct task_struct *tsk, int flag)
  2058. {
  2059. return test_and_clear_ti_thread_flag(task_thread_info(tsk), flag);
  2060. }
  2061. static inline int test_tsk_thread_flag(struct task_struct *tsk, int flag)
  2062. {
  2063. return test_ti_thread_flag(task_thread_info(tsk), flag);
  2064. }
  2065. static inline void set_tsk_need_resched(struct task_struct *tsk)
  2066. {
  2067. set_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
  2068. }
  2069. static inline void clear_tsk_need_resched(struct task_struct *tsk)
  2070. {
  2071. clear_tsk_thread_flag(tsk,TIF_NEED_RESCHED);
  2072. }
  2073. static inline int test_tsk_need_resched(struct task_struct *tsk)
  2074. {
  2075. return unlikely(test_tsk_thread_flag(tsk,TIF_NEED_RESCHED));
  2076. }
  2077. static inline int restart_syscall(void)
  2078. {
  2079. set_tsk_thread_flag(current, TIF_SIGPENDING);
  2080. return -ERESTARTNOINTR;
  2081. }
  2082. static inline int signal_pending(struct task_struct *p)
  2083. {
  2084. return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
  2085. }
  2086. static inline int __fatal_signal_pending(struct task_struct *p)
  2087. {
  2088. return unlikely(sigismember(&p->pending.signal, SIGKILL));
  2089. }
  2090. static inline int fatal_signal_pending(struct task_struct *p)
  2091. {
  2092. return signal_pending(p) && __fatal_signal_pending(p);
  2093. }
  2094. static inline int signal_pending_state(long state, struct task_struct *p)
  2095. {
  2096. if (!(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))
  2097. return 0;
  2098. if (!signal_pending(p))
  2099. return 0;
  2100. return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p);
  2101. }
  2102. static inline int need_resched(void)
  2103. {
  2104. return unlikely(test_thread_flag(TIF_NEED_RESCHED));
  2105. }
  2106. /*
  2107. * cond_resched() and cond_resched_lock(): latency reduction via
  2108. * explicit rescheduling in places that are safe. The return
  2109. * value indicates whether a reschedule was done in fact.
  2110. * cond_resched_lock() will drop the spinlock before scheduling,
  2111. * cond_resched_softirq() will enable bhs before scheduling.
  2112. */
  2113. extern int _cond_resched(void);
  2114. #define cond_resched() ({ \
  2115. __might_sleep(__FILE__, __LINE__, 0); \
  2116. _cond_resched(); \
  2117. })
  2118. extern int __cond_resched_lock(spinlock_t *lock);
  2119. #ifdef CONFIG_PREEMPT_COUNT
  2120. #define PREEMPT_LOCK_OFFSET PREEMPT_OFFSET
  2121. #else
  2122. #define PREEMPT_LOCK_OFFSET 0
  2123. #endif
  2124. #define cond_resched_lock(lock) ({ \
  2125. __might_sleep(__FILE__, __LINE__, PREEMPT_LOCK_OFFSET); \
  2126. __cond_resched_lock(lock); \
  2127. })
  2128. extern int __cond_resched_softirq(void);
  2129. #define cond_resched_softirq() ({ \
  2130. __might_sleep(__FILE__, __LINE__, SOFTIRQ_DISABLE_OFFSET); \
  2131. __cond_resched_softirq(); \
  2132. })
  2133. /*
  2134. * Does a critical section need to be broken due to another
  2135. * task waiting?: (technically does not depend on CONFIG_PREEMPT,
  2136. * but a general need for low latency)
  2137. */
  2138. static inline int spin_needbreak(spinlock_t *lock)
  2139. {
  2140. #ifdef CONFIG_PREEMPT
  2141. return spin_is_contended(lock);
  2142. #else
  2143. return 0;
  2144. #endif
  2145. }
  2146. /*
  2147. * Thread group CPU time accounting.
  2148. */
  2149. void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times);
  2150. void thread_group_cputimer(struct task_struct *tsk, struct task_cputime *times);
  2151. static inline void thread_group_cputime_init(struct signal_struct *sig)
  2152. {
  2153. raw_spin_lock_init(&sig->cputimer.lock);
  2154. }
  2155. /*
  2156. * Reevaluate whether the task has signals pending delivery.
  2157. * Wake the task if so.
  2158. * This is required every time the blocked sigset_t changes.
  2159. * callers must hold sighand->siglock.
  2160. */
  2161. extern void recalc_sigpending_and_wake(struct task_struct *t);
  2162. extern void recalc_sigpending(void);
  2163. extern void signal_wake_up_state(struct task_struct *t, unsigned int state);
  2164. static inline void signal_wake_up(struct task_struct *t, bool resume)
  2165. {
  2166. signal_wake_up_state(t, resume ? TASK_WAKEKILL : 0);
  2167. }
  2168. static inline void ptrace_signal_wake_up(struct task_struct *t, bool resume)
  2169. {
  2170. signal_wake_up_state(t, resume ? __TASK_TRACED : 0);
  2171. }
  2172. /*
  2173. * Wrappers for p->thread_info->cpu access. No-op on UP.
  2174. */
  2175. #ifdef CONFIG_SMP
  2176. static inline unsigned int task_cpu(const struct task_struct *p)
  2177. {
  2178. return task_thread_info(p)->cpu;
  2179. }
  2180. extern void set_task_cpu(struct task_struct *p, unsigned int cpu);
  2181. #else
  2182. static inline unsigned int task_cpu(const struct task_struct *p)
  2183. {
  2184. return 0;
  2185. }
  2186. static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
  2187. {
  2188. }
  2189. #endif /* CONFIG_SMP */
  2190. extern long sched_setaffinity(pid_t pid, const struct cpumask *new_mask);
  2191. extern long sched_getaffinity(pid_t pid, struct cpumask *mask);
  2192. #ifdef CONFIG_CGROUP_SCHED
  2193. extern struct task_group root_task_group;
  2194. extern struct task_group *sched_create_group(struct task_group *parent);
  2195. extern void sched_online_group(struct task_group *tg,
  2196. struct task_group *parent);
  2197. extern void sched_destroy_group(struct task_group *tg);
  2198. extern void sched_offline_group(struct task_group *tg);
  2199. extern void sched_move_task(struct task_struct *tsk);
  2200. #ifdef CONFIG_FAIR_GROUP_SCHED
  2201. extern int sched_group_set_shares(struct task_group *tg, unsigned long shares);
  2202. extern unsigned long sched_group_shares(struct task_group *tg);
  2203. #endif
  2204. #ifdef CONFIG_RT_GROUP_SCHED
  2205. extern int sched_group_set_rt_runtime(struct task_group *tg,
  2206. long rt_runtime_us);
  2207. extern long sched_group_rt_runtime(struct task_group *tg);
  2208. extern int sched_group_set_rt_period(struct task_group *tg,
  2209. long rt_period_us);
  2210. extern long sched_group_rt_period(struct task_group *tg);
  2211. extern int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk);
  2212. #endif
  2213. #endif /* CONFIG_CGROUP_SCHED */
  2214. extern int task_can_switch_user(struct user_struct *up,
  2215. struct task_struct *tsk);
  2216. #ifdef CONFIG_TASK_XACCT
  2217. static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
  2218. {
  2219. tsk->ioac.rchar += amt;
  2220. }
  2221. static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
  2222. {
  2223. tsk->ioac.wchar += amt;
  2224. }
  2225. static inline void inc_syscr(struct task_struct *tsk)
  2226. {
  2227. tsk->ioac.syscr++;
  2228. }
  2229. static inline void inc_syscw(struct task_struct *tsk)
  2230. {
  2231. tsk->ioac.syscw++;
  2232. }
  2233. #else
  2234. static inline void add_rchar(struct task_struct *tsk, ssize_t amt)
  2235. {
  2236. }
  2237. static inline void add_wchar(struct task_struct *tsk, ssize_t amt)
  2238. {
  2239. }
  2240. static inline void inc_syscr(struct task_struct *tsk)
  2241. {
  2242. }
  2243. static inline void inc_syscw(struct task_struct *tsk)
  2244. {
  2245. }
  2246. #endif
  2247. #ifndef TASK_SIZE_OF
  2248. #define TASK_SIZE_OF(tsk) TASK_SIZE
  2249. #endif
  2250. #ifdef CONFIG_MM_OWNER
  2251. extern void mm_update_next_owner(struct mm_struct *mm);
  2252. extern void mm_init_owner(struct mm_struct *mm, struct task_struct *p);
  2253. #else
  2254. static inline void mm_update_next_owner(struct mm_struct *mm)
  2255. {
  2256. }
  2257. static inline void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
  2258. {
  2259. }
  2260. #endif /* CONFIG_MM_OWNER */
  2261. static inline unsigned long task_rlimit(const struct task_struct *tsk,
  2262. unsigned int limit)
  2263. {
  2264. return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_cur);
  2265. }
  2266. static inline unsigned long task_rlimit_max(const struct task_struct *tsk,
  2267. unsigned int limit)
  2268. {
  2269. return ACCESS_ONCE(tsk->signal->rlim[limit].rlim_max);
  2270. }
  2271. static inline unsigned long rlimit(unsigned int limit)
  2272. {
  2273. return task_rlimit(current, limit);
  2274. }
  2275. static inline unsigned long rlimit_max(unsigned int limit)
  2276. {
  2277. return task_rlimit_max(current, limit);
  2278. }
  2279. #endif