sched.h 90 KB

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