sched.h 83 KB

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