sched_fair.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553
  1. /*
  2. * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
  3. *
  4. * Copyright (C) 2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  5. *
  6. * Interactivity improvements by Mike Galbraith
  7. * (C) 2007 Mike Galbraith <efault@gmx.de>
  8. *
  9. * Various enhancements by Dmitry Adamushko.
  10. * (C) 2007 Dmitry Adamushko <dmitry.adamushko@gmail.com>
  11. *
  12. * Group scheduling enhancements by Srivatsa Vaddagiri
  13. * Copyright IBM Corporation, 2007
  14. * Author: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
  15. *
  16. * Scaled math optimizations by Thomas Gleixner
  17. * Copyright (C) 2007, Thomas Gleixner <tglx@linutronix.de>
  18. *
  19. * Adaptive scheduling granularity, math enhancements by Peter Zijlstra
  20. * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
  21. */
  22. #include <linux/latencytop.h>
  23. /*
  24. * Targeted preemption latency for CPU-bound tasks:
  25. * (default: 20ms * (1 + ilog(ncpus)), units: nanoseconds)
  26. *
  27. * NOTE: this latency value is not the same as the concept of
  28. * 'timeslice length' - timeslices in CFS are of variable length
  29. * and have no persistent notion like in traditional, time-slice
  30. * based scheduling concepts.
  31. *
  32. * (to see the precise effective timeslice length of your workload,
  33. * run vmstat and monitor the context-switches (cs) field)
  34. */
  35. unsigned int sysctl_sched_latency = 20000000ULL;
  36. /*
  37. * Minimal preemption granularity for CPU-bound tasks:
  38. * (default: 4 msec * (1 + ilog(ncpus)), units: nanoseconds)
  39. */
  40. unsigned int sysctl_sched_min_granularity = 4000000ULL;
  41. /*
  42. * is kept at sysctl_sched_latency / sysctl_sched_min_granularity
  43. */
  44. static unsigned int sched_nr_latency = 5;
  45. /*
  46. * After fork, child runs first. (default) If set to 0 then
  47. * parent will (try to) run first.
  48. */
  49. const_debug unsigned int sysctl_sched_child_runs_first = 1;
  50. /*
  51. * sys_sched_yield() compat mode
  52. *
  53. * This option switches the agressive yield implementation of the
  54. * old scheduler back on.
  55. */
  56. unsigned int __read_mostly sysctl_sched_compat_yield;
  57. /*
  58. * SCHED_OTHER wake-up granularity.
  59. * (default: 10 msec * (1 + ilog(ncpus)), units: nanoseconds)
  60. *
  61. * This option delays the preemption effects of decoupled workloads
  62. * and reduces their over-scheduling. Synchronous workloads will still
  63. * have immediate wakeup/sleep latencies.
  64. */
  65. unsigned int sysctl_sched_wakeup_granularity = 10000000UL;
  66. const_debug unsigned int sysctl_sched_migration_cost = 500000UL;
  67. /**************************************************************
  68. * CFS operations on generic schedulable entities:
  69. */
  70. static inline struct task_struct *task_of(struct sched_entity *se)
  71. {
  72. return container_of(se, struct task_struct, se);
  73. }
  74. #ifdef CONFIG_FAIR_GROUP_SCHED
  75. /* cpu runqueue to which this cfs_rq is attached */
  76. static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
  77. {
  78. return cfs_rq->rq;
  79. }
  80. /* An entity is a task if it doesn't "own" a runqueue */
  81. #define entity_is_task(se) (!se->my_q)
  82. /* Walk up scheduling entities hierarchy */
  83. #define for_each_sched_entity(se) \
  84. for (; se; se = se->parent)
  85. static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
  86. {
  87. return p->se.cfs_rq;
  88. }
  89. /* runqueue on which this entity is (to be) queued */
  90. static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
  91. {
  92. return se->cfs_rq;
  93. }
  94. /* runqueue "owned" by this group */
  95. static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
  96. {
  97. return grp->my_q;
  98. }
  99. /* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on
  100. * another cpu ('this_cpu')
  101. */
  102. static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
  103. {
  104. return cfs_rq->tg->cfs_rq[this_cpu];
  105. }
  106. /* Iterate thr' all leaf cfs_rq's on a runqueue */
  107. #define for_each_leaf_cfs_rq(rq, cfs_rq) \
  108. list_for_each_entry_rcu(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
  109. /* Do the two (enqueued) entities belong to the same group ? */
  110. static inline int
  111. is_same_group(struct sched_entity *se, struct sched_entity *pse)
  112. {
  113. if (se->cfs_rq == pse->cfs_rq)
  114. return 1;
  115. return 0;
  116. }
  117. static inline struct sched_entity *parent_entity(struct sched_entity *se)
  118. {
  119. return se->parent;
  120. }
  121. #else /* CONFIG_FAIR_GROUP_SCHED */
  122. static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
  123. {
  124. return container_of(cfs_rq, struct rq, cfs);
  125. }
  126. #define entity_is_task(se) 1
  127. #define for_each_sched_entity(se) \
  128. for (; se; se = NULL)
  129. static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
  130. {
  131. return &task_rq(p)->cfs;
  132. }
  133. static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
  134. {
  135. struct task_struct *p = task_of(se);
  136. struct rq *rq = task_rq(p);
  137. return &rq->cfs;
  138. }
  139. /* runqueue "owned" by this group */
  140. static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
  141. {
  142. return NULL;
  143. }
  144. static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
  145. {
  146. return &cpu_rq(this_cpu)->cfs;
  147. }
  148. #define for_each_leaf_cfs_rq(rq, cfs_rq) \
  149. for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
  150. static inline int
  151. is_same_group(struct sched_entity *se, struct sched_entity *pse)
  152. {
  153. return 1;
  154. }
  155. static inline struct sched_entity *parent_entity(struct sched_entity *se)
  156. {
  157. return NULL;
  158. }
  159. #endif /* CONFIG_FAIR_GROUP_SCHED */
  160. /**************************************************************
  161. * Scheduling class tree data structure manipulation methods:
  162. */
  163. static inline u64 max_vruntime(u64 min_vruntime, u64 vruntime)
  164. {
  165. s64 delta = (s64)(vruntime - min_vruntime);
  166. if (delta > 0)
  167. min_vruntime = vruntime;
  168. return min_vruntime;
  169. }
  170. static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime)
  171. {
  172. s64 delta = (s64)(vruntime - min_vruntime);
  173. if (delta < 0)
  174. min_vruntime = vruntime;
  175. return min_vruntime;
  176. }
  177. static inline s64 entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se)
  178. {
  179. return se->vruntime - cfs_rq->min_vruntime;
  180. }
  181. /*
  182. * Enqueue an entity into the rb-tree:
  183. */
  184. static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  185. {
  186. struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
  187. struct rb_node *parent = NULL;
  188. struct sched_entity *entry;
  189. s64 key = entity_key(cfs_rq, se);
  190. int leftmost = 1;
  191. /*
  192. * Find the right place in the rbtree:
  193. */
  194. while (*link) {
  195. parent = *link;
  196. entry = rb_entry(parent, struct sched_entity, run_node);
  197. /*
  198. * We dont care about collisions. Nodes with
  199. * the same key stay together.
  200. */
  201. if (key < entity_key(cfs_rq, entry)) {
  202. link = &parent->rb_left;
  203. } else {
  204. link = &parent->rb_right;
  205. leftmost = 0;
  206. }
  207. }
  208. /*
  209. * Maintain a cache of leftmost tree entries (it is frequently
  210. * used):
  211. */
  212. if (leftmost) {
  213. cfs_rq->rb_leftmost = &se->run_node;
  214. /*
  215. * maintain cfs_rq->min_vruntime to be a monotonic increasing
  216. * value tracking the leftmost vruntime in the tree.
  217. */
  218. cfs_rq->min_vruntime =
  219. max_vruntime(cfs_rq->min_vruntime, se->vruntime);
  220. }
  221. rb_link_node(&se->run_node, parent, link);
  222. rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
  223. }
  224. static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  225. {
  226. if (cfs_rq->rb_leftmost == &se->run_node) {
  227. struct rb_node *next_node;
  228. struct sched_entity *next;
  229. next_node = rb_next(&se->run_node);
  230. cfs_rq->rb_leftmost = next_node;
  231. if (next_node) {
  232. next = rb_entry(next_node,
  233. struct sched_entity, run_node);
  234. cfs_rq->min_vruntime =
  235. max_vruntime(cfs_rq->min_vruntime,
  236. next->vruntime);
  237. }
  238. }
  239. if (cfs_rq->next == se)
  240. cfs_rq->next = NULL;
  241. rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
  242. }
  243. static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq)
  244. {
  245. return cfs_rq->rb_leftmost;
  246. }
  247. static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq)
  248. {
  249. return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node);
  250. }
  251. static inline struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
  252. {
  253. struct rb_node *last = rb_last(&cfs_rq->tasks_timeline);
  254. if (!last)
  255. return NULL;
  256. return rb_entry(last, struct sched_entity, run_node);
  257. }
  258. /**************************************************************
  259. * Scheduling class statistics methods:
  260. */
  261. #ifdef CONFIG_SCHED_DEBUG
  262. int sched_nr_latency_handler(struct ctl_table *table, int write,
  263. struct file *filp, void __user *buffer, size_t *lenp,
  264. loff_t *ppos)
  265. {
  266. int ret = proc_dointvec_minmax(table, write, filp, buffer, lenp, ppos);
  267. if (ret || !write)
  268. return ret;
  269. sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency,
  270. sysctl_sched_min_granularity);
  271. return 0;
  272. }
  273. #endif
  274. /*
  275. * The idea is to set a period in which each task runs once.
  276. *
  277. * When there are too many tasks (sysctl_sched_nr_latency) we have to stretch
  278. * this period because otherwise the slices get too small.
  279. *
  280. * p = (nr <= nl) ? l : l*nr/nl
  281. */
  282. static u64 __sched_period(unsigned long nr_running)
  283. {
  284. u64 period = sysctl_sched_latency;
  285. unsigned long nr_latency = sched_nr_latency;
  286. if (unlikely(nr_running > nr_latency)) {
  287. period = sysctl_sched_min_granularity;
  288. period *= nr_running;
  289. }
  290. return period;
  291. }
  292. /*
  293. * We calculate the wall-time slice from the period by taking a part
  294. * proportional to the weight.
  295. *
  296. * s = p*w/rw
  297. */
  298. static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
  299. {
  300. u64 slice = __sched_period(cfs_rq->nr_running);
  301. for_each_sched_entity(se) {
  302. cfs_rq = cfs_rq_of(se);
  303. slice *= se->load.weight;
  304. do_div(slice, cfs_rq->load.weight);
  305. }
  306. return slice;
  307. }
  308. /*
  309. * We calculate the vruntime slice of a to be inserted task
  310. *
  311. * vs = s/w = p/rw
  312. */
  313. static u64 sched_vslice_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
  314. {
  315. unsigned long nr_running = cfs_rq->nr_running;
  316. unsigned long weight;
  317. u64 vslice;
  318. if (!se->on_rq)
  319. nr_running++;
  320. vslice = __sched_period(nr_running);
  321. for_each_sched_entity(se) {
  322. cfs_rq = cfs_rq_of(se);
  323. weight = cfs_rq->load.weight;
  324. if (!se->on_rq)
  325. weight += se->load.weight;
  326. vslice *= NICE_0_LOAD;
  327. do_div(vslice, weight);
  328. }
  329. return vslice;
  330. }
  331. /*
  332. * Update the current task's runtime statistics. Skip current tasks that
  333. * are not in our scheduling class.
  334. */
  335. static inline void
  336. __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr,
  337. unsigned long delta_exec)
  338. {
  339. unsigned long delta_exec_weighted;
  340. schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));
  341. curr->sum_exec_runtime += delta_exec;
  342. schedstat_add(cfs_rq, exec_clock, delta_exec);
  343. delta_exec_weighted = delta_exec;
  344. if (unlikely(curr->load.weight != NICE_0_LOAD)) {
  345. delta_exec_weighted = calc_delta_fair(delta_exec_weighted,
  346. &curr->load);
  347. }
  348. curr->vruntime += delta_exec_weighted;
  349. }
  350. static void update_curr(struct cfs_rq *cfs_rq)
  351. {
  352. struct sched_entity *curr = cfs_rq->curr;
  353. u64 now = rq_of(cfs_rq)->clock;
  354. unsigned long delta_exec;
  355. if (unlikely(!curr))
  356. return;
  357. /*
  358. * Get the amount of time the current task was running
  359. * since the last time we changed load (this cannot
  360. * overflow on 32 bits):
  361. */
  362. delta_exec = (unsigned long)(now - curr->exec_start);
  363. __update_curr(cfs_rq, curr, delta_exec);
  364. curr->exec_start = now;
  365. if (entity_is_task(curr)) {
  366. struct task_struct *curtask = task_of(curr);
  367. cpuacct_charge(curtask, delta_exec);
  368. }
  369. }
  370. static inline void
  371. update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
  372. {
  373. schedstat_set(se->wait_start, rq_of(cfs_rq)->clock);
  374. }
  375. /*
  376. * Task is being enqueued - update stats:
  377. */
  378. static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  379. {
  380. /*
  381. * Are we enqueueing a waiting task? (for current tasks
  382. * a dequeue/enqueue event is a NOP)
  383. */
  384. if (se != cfs_rq->curr)
  385. update_stats_wait_start(cfs_rq, se);
  386. }
  387. static void
  388. update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
  389. {
  390. schedstat_set(se->wait_max, max(se->wait_max,
  391. rq_of(cfs_rq)->clock - se->wait_start));
  392. schedstat_set(se->wait_count, se->wait_count + 1);
  393. schedstat_set(se->wait_sum, se->wait_sum +
  394. rq_of(cfs_rq)->clock - se->wait_start);
  395. schedstat_set(se->wait_start, 0);
  396. }
  397. static inline void
  398. update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  399. {
  400. /*
  401. * Mark the end of the wait period if dequeueing a
  402. * waiting task:
  403. */
  404. if (se != cfs_rq->curr)
  405. update_stats_wait_end(cfs_rq, se);
  406. }
  407. /*
  408. * We are picking a new current task - update its stats:
  409. */
  410. static inline void
  411. update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
  412. {
  413. /*
  414. * We are starting a new run period:
  415. */
  416. se->exec_start = rq_of(cfs_rq)->clock;
  417. }
  418. /**************************************************
  419. * Scheduling class queueing methods:
  420. */
  421. static void
  422. account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  423. {
  424. update_load_add(&cfs_rq->load, se->load.weight);
  425. cfs_rq->nr_running++;
  426. se->on_rq = 1;
  427. list_add(&se->group_node, &cfs_rq->tasks);
  428. }
  429. static void
  430. account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  431. {
  432. update_load_sub(&cfs_rq->load, se->load.weight);
  433. cfs_rq->nr_running--;
  434. se->on_rq = 0;
  435. list_del_init(&se->group_node);
  436. }
  437. static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
  438. {
  439. #ifdef CONFIG_SCHEDSTATS
  440. if (se->sleep_start) {
  441. u64 delta = rq_of(cfs_rq)->clock - se->sleep_start;
  442. struct task_struct *tsk = task_of(se);
  443. if ((s64)delta < 0)
  444. delta = 0;
  445. if (unlikely(delta > se->sleep_max))
  446. se->sleep_max = delta;
  447. se->sleep_start = 0;
  448. se->sum_sleep_runtime += delta;
  449. account_scheduler_latency(tsk, delta >> 10, 1);
  450. }
  451. if (se->block_start) {
  452. u64 delta = rq_of(cfs_rq)->clock - se->block_start;
  453. struct task_struct *tsk = task_of(se);
  454. if ((s64)delta < 0)
  455. delta = 0;
  456. if (unlikely(delta > se->block_max))
  457. se->block_max = delta;
  458. se->block_start = 0;
  459. se->sum_sleep_runtime += delta;
  460. /*
  461. * Blocking time is in units of nanosecs, so shift by 20 to
  462. * get a milliseconds-range estimation of the amount of
  463. * time that the task spent sleeping:
  464. */
  465. if (unlikely(prof_on == SLEEP_PROFILING)) {
  466. profile_hits(SLEEP_PROFILING, (void *)get_wchan(tsk),
  467. delta >> 20);
  468. }
  469. account_scheduler_latency(tsk, delta >> 10, 0);
  470. }
  471. #endif
  472. }
  473. static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se)
  474. {
  475. #ifdef CONFIG_SCHED_DEBUG
  476. s64 d = se->vruntime - cfs_rq->min_vruntime;
  477. if (d < 0)
  478. d = -d;
  479. if (d > 3*sysctl_sched_latency)
  480. schedstat_inc(cfs_rq, nr_spread_over);
  481. #endif
  482. }
  483. static void
  484. place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)
  485. {
  486. u64 vruntime;
  487. if (first_fair(cfs_rq)) {
  488. vruntime = min_vruntime(cfs_rq->min_vruntime,
  489. __pick_next_entity(cfs_rq)->vruntime);
  490. } else
  491. vruntime = cfs_rq->min_vruntime;
  492. /*
  493. * The 'current' period is already promised to the current tasks,
  494. * however the extra weight of the new task will slow them down a
  495. * little, place the new task so that it fits in the slot that
  496. * stays open at the end.
  497. */
  498. if (initial && sched_feat(START_DEBIT))
  499. vruntime += sched_vslice_add(cfs_rq, se);
  500. if (!initial) {
  501. /* sleeps upto a single latency don't count. */
  502. if (sched_feat(NEW_FAIR_SLEEPERS))
  503. vruntime -= sysctl_sched_latency;
  504. /* ensure we never gain time by being placed backwards. */
  505. vruntime = max_vruntime(se->vruntime, vruntime);
  506. }
  507. se->vruntime = vruntime;
  508. }
  509. static void
  510. enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
  511. {
  512. /*
  513. * Update run-time statistics of the 'current'.
  514. */
  515. update_curr(cfs_rq);
  516. account_entity_enqueue(cfs_rq, se);
  517. if (wakeup) {
  518. place_entity(cfs_rq, se, 0);
  519. enqueue_sleeper(cfs_rq, se);
  520. }
  521. update_stats_enqueue(cfs_rq, se);
  522. check_spread(cfs_rq, se);
  523. if (se != cfs_rq->curr)
  524. __enqueue_entity(cfs_rq, se);
  525. }
  526. static void update_avg(u64 *avg, u64 sample)
  527. {
  528. s64 diff = sample - *avg;
  529. *avg += diff >> 3;
  530. }
  531. static void update_avg_stats(struct cfs_rq *cfs_rq, struct sched_entity *se)
  532. {
  533. if (!se->last_wakeup)
  534. return;
  535. update_avg(&se->avg_overlap, se->sum_exec_runtime - se->last_wakeup);
  536. se->last_wakeup = 0;
  537. }
  538. static void
  539. dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int sleep)
  540. {
  541. /*
  542. * Update run-time statistics of the 'current'.
  543. */
  544. update_curr(cfs_rq);
  545. update_stats_dequeue(cfs_rq, se);
  546. if (sleep) {
  547. update_avg_stats(cfs_rq, se);
  548. #ifdef CONFIG_SCHEDSTATS
  549. if (entity_is_task(se)) {
  550. struct task_struct *tsk = task_of(se);
  551. if (tsk->state & TASK_INTERRUPTIBLE)
  552. se->sleep_start = rq_of(cfs_rq)->clock;
  553. if (tsk->state & TASK_UNINTERRUPTIBLE)
  554. se->block_start = rq_of(cfs_rq)->clock;
  555. }
  556. #endif
  557. }
  558. if (se != cfs_rq->curr)
  559. __dequeue_entity(cfs_rq, se);
  560. account_entity_dequeue(cfs_rq, se);
  561. }
  562. /*
  563. * Preempt the current task with a newly woken task if needed:
  564. */
  565. static void
  566. check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
  567. {
  568. unsigned long ideal_runtime, delta_exec;
  569. ideal_runtime = sched_slice(cfs_rq, curr);
  570. delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
  571. if (delta_exec > ideal_runtime)
  572. resched_task(rq_of(cfs_rq)->curr);
  573. }
  574. static void
  575. set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  576. {
  577. /* 'current' is not kept within the tree. */
  578. if (se->on_rq) {
  579. /*
  580. * Any task has to be enqueued before it get to execute on
  581. * a CPU. So account for the time it spent waiting on the
  582. * runqueue.
  583. */
  584. update_stats_wait_end(cfs_rq, se);
  585. __dequeue_entity(cfs_rq, se);
  586. }
  587. update_stats_curr_start(cfs_rq, se);
  588. cfs_rq->curr = se;
  589. #ifdef CONFIG_SCHEDSTATS
  590. /*
  591. * Track our maximum slice length, if the CPU's load is at
  592. * least twice that of our own weight (i.e. dont track it
  593. * when there are only lesser-weight tasks around):
  594. */
  595. if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) {
  596. se->slice_max = max(se->slice_max,
  597. se->sum_exec_runtime - se->prev_sum_exec_runtime);
  598. }
  599. #endif
  600. se->prev_sum_exec_runtime = se->sum_exec_runtime;
  601. }
  602. static int
  603. wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se);
  604. static struct sched_entity *
  605. pick_next(struct cfs_rq *cfs_rq, struct sched_entity *se)
  606. {
  607. if (!cfs_rq->next)
  608. return se;
  609. if (wakeup_preempt_entity(cfs_rq->next, se) != 0)
  610. return se;
  611. return cfs_rq->next;
  612. }
  613. static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
  614. {
  615. struct sched_entity *se = NULL;
  616. if (first_fair(cfs_rq)) {
  617. se = __pick_next_entity(cfs_rq);
  618. se = pick_next(cfs_rq, se);
  619. set_next_entity(cfs_rq, se);
  620. }
  621. return se;
  622. }
  623. static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
  624. {
  625. /*
  626. * If still on the runqueue then deactivate_task()
  627. * was not called and update_curr() has to be done:
  628. */
  629. if (prev->on_rq)
  630. update_curr(cfs_rq);
  631. check_spread(cfs_rq, prev);
  632. if (prev->on_rq) {
  633. update_stats_wait_start(cfs_rq, prev);
  634. /* Put 'current' back into the tree. */
  635. __enqueue_entity(cfs_rq, prev);
  636. }
  637. cfs_rq->curr = NULL;
  638. }
  639. static void
  640. entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
  641. {
  642. /*
  643. * Update run-time statistics of the 'current'.
  644. */
  645. update_curr(cfs_rq);
  646. #ifdef CONFIG_SCHED_HRTICK
  647. /*
  648. * queued ticks are scheduled to match the slice, so don't bother
  649. * validating it and just reschedule.
  650. */
  651. if (queued) {
  652. resched_task(rq_of(cfs_rq)->curr);
  653. return;
  654. }
  655. /*
  656. * don't let the period tick interfere with the hrtick preemption
  657. */
  658. if (!sched_feat(DOUBLE_TICK) &&
  659. hrtimer_active(&rq_of(cfs_rq)->hrtick_timer))
  660. return;
  661. #endif
  662. if (cfs_rq->nr_running > 1 || !sched_feat(WAKEUP_PREEMPT))
  663. check_preempt_tick(cfs_rq, curr);
  664. }
  665. /**************************************************
  666. * CFS operations on tasks:
  667. */
  668. #ifdef CONFIG_SCHED_HRTICK
  669. static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
  670. {
  671. int requeue = rq->curr == p;
  672. struct sched_entity *se = &p->se;
  673. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  674. WARN_ON(task_rq(p) != rq);
  675. if (hrtick_enabled(rq) && cfs_rq->nr_running > 1) {
  676. u64 slice = sched_slice(cfs_rq, se);
  677. u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime;
  678. s64 delta = slice - ran;
  679. if (delta < 0) {
  680. if (rq->curr == p)
  681. resched_task(p);
  682. return;
  683. }
  684. /*
  685. * Don't schedule slices shorter than 10000ns, that just
  686. * doesn't make sense. Rely on vruntime for fairness.
  687. */
  688. if (!requeue)
  689. delta = max(10000LL, delta);
  690. hrtick_start(rq, delta, requeue);
  691. }
  692. }
  693. #else
  694. static inline void
  695. hrtick_start_fair(struct rq *rq, struct task_struct *p)
  696. {
  697. }
  698. #endif
  699. /*
  700. * The enqueue_task method is called before nr_running is
  701. * increased. Here we update the fair scheduling stats and
  702. * then put the task into the rbtree:
  703. */
  704. static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup)
  705. {
  706. struct cfs_rq *cfs_rq;
  707. struct sched_entity *se = &p->se;
  708. for_each_sched_entity(se) {
  709. if (se->on_rq)
  710. break;
  711. cfs_rq = cfs_rq_of(se);
  712. enqueue_entity(cfs_rq, se, wakeup);
  713. wakeup = 1;
  714. }
  715. hrtick_start_fair(rq, rq->curr);
  716. }
  717. /*
  718. * The dequeue_task method is called before nr_running is
  719. * decreased. We remove the task from the rbtree and
  720. * update the fair scheduling stats:
  721. */
  722. static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep)
  723. {
  724. struct cfs_rq *cfs_rq;
  725. struct sched_entity *se = &p->se;
  726. for_each_sched_entity(se) {
  727. cfs_rq = cfs_rq_of(se);
  728. dequeue_entity(cfs_rq, se, sleep);
  729. /* Don't dequeue parent if it has other entities besides us */
  730. if (cfs_rq->load.weight)
  731. break;
  732. sleep = 1;
  733. }
  734. hrtick_start_fair(rq, rq->curr);
  735. }
  736. /*
  737. * sched_yield() support is very simple - we dequeue and enqueue.
  738. *
  739. * If compat_yield is turned on then we requeue to the end of the tree.
  740. */
  741. static void yield_task_fair(struct rq *rq)
  742. {
  743. struct task_struct *curr = rq->curr;
  744. struct cfs_rq *cfs_rq = task_cfs_rq(curr);
  745. struct sched_entity *rightmost, *se = &curr->se;
  746. /*
  747. * Are we the only task in the tree?
  748. */
  749. if (unlikely(cfs_rq->nr_running == 1))
  750. return;
  751. if (likely(!sysctl_sched_compat_yield) && curr->policy != SCHED_BATCH) {
  752. update_rq_clock(rq);
  753. /*
  754. * Update run-time statistics of the 'current'.
  755. */
  756. update_curr(cfs_rq);
  757. return;
  758. }
  759. /*
  760. * Find the rightmost entry in the rbtree:
  761. */
  762. rightmost = __pick_last_entity(cfs_rq);
  763. /*
  764. * Already in the rightmost position?
  765. */
  766. if (unlikely(!rightmost || rightmost->vruntime < se->vruntime))
  767. return;
  768. /*
  769. * Minimally necessary key value to be last in the tree:
  770. * Upon rescheduling, sched_class::put_prev_task() will place
  771. * 'current' within the tree based on its new key value.
  772. */
  773. se->vruntime = rightmost->vruntime + 1;
  774. }
  775. /*
  776. * wake_idle() will wake a task on an idle cpu if task->cpu is
  777. * not idle and an idle cpu is available. The span of cpus to
  778. * search starts with cpus closest then further out as needed,
  779. * so we always favor a closer, idle cpu.
  780. *
  781. * Returns the CPU we should wake onto.
  782. */
  783. #if defined(ARCH_HAS_SCHED_WAKE_IDLE)
  784. static int wake_idle(int cpu, struct task_struct *p)
  785. {
  786. cpumask_t tmp;
  787. struct sched_domain *sd;
  788. int i;
  789. /*
  790. * If it is idle, then it is the best cpu to run this task.
  791. *
  792. * This cpu is also the best, if it has more than one task already.
  793. * Siblings must be also busy(in most cases) as they didn't already
  794. * pickup the extra load from this cpu and hence we need not check
  795. * sibling runqueue info. This will avoid the checks and cache miss
  796. * penalities associated with that.
  797. */
  798. if (idle_cpu(cpu) || cpu_rq(cpu)->cfs.nr_running > 1)
  799. return cpu;
  800. for_each_domain(cpu, sd) {
  801. if ((sd->flags & SD_WAKE_IDLE)
  802. || ((sd->flags & SD_WAKE_IDLE_FAR)
  803. && !task_hot(p, task_rq(p)->clock, sd))) {
  804. cpus_and(tmp, sd->span, p->cpus_allowed);
  805. for_each_cpu_mask(i, tmp) {
  806. if (idle_cpu(i)) {
  807. if (i != task_cpu(p)) {
  808. schedstat_inc(p,
  809. se.nr_wakeups_idle);
  810. }
  811. return i;
  812. }
  813. }
  814. } else {
  815. break;
  816. }
  817. }
  818. return cpu;
  819. }
  820. #else
  821. static inline int wake_idle(int cpu, struct task_struct *p)
  822. {
  823. return cpu;
  824. }
  825. #endif
  826. #ifdef CONFIG_SMP
  827. static const struct sched_class fair_sched_class;
  828. static int
  829. wake_affine(struct rq *rq, struct sched_domain *this_sd, struct rq *this_rq,
  830. struct task_struct *p, int prev_cpu, int this_cpu, int sync,
  831. int idx, unsigned long load, unsigned long this_load,
  832. unsigned int imbalance)
  833. {
  834. struct task_struct *curr = this_rq->curr;
  835. unsigned long tl = this_load;
  836. unsigned long tl_per_task;
  837. int balanced;
  838. if (!(this_sd->flags & SD_WAKE_AFFINE) || !sched_feat(AFFINE_WAKEUPS))
  839. return 0;
  840. /*
  841. * If sync wakeup then subtract the (maximum possible)
  842. * effect of the currently running task from the load
  843. * of the current CPU:
  844. */
  845. if (sync)
  846. tl -= current->se.load.weight;
  847. balanced = 100*(tl + p->se.load.weight) <= imbalance*load;
  848. /*
  849. * If the currently running task will sleep within
  850. * a reasonable amount of time then attract this newly
  851. * woken task:
  852. */
  853. if (sync && balanced && curr->sched_class == &fair_sched_class) {
  854. if (curr->se.avg_overlap < sysctl_sched_migration_cost &&
  855. p->se.avg_overlap < sysctl_sched_migration_cost)
  856. return 1;
  857. }
  858. schedstat_inc(p, se.nr_wakeups_affine_attempts);
  859. tl_per_task = cpu_avg_load_per_task(this_cpu);
  860. if ((tl <= load && tl + target_load(prev_cpu, idx) <= tl_per_task) ||
  861. balanced) {
  862. /*
  863. * This domain has SD_WAKE_AFFINE and
  864. * p is cache cold in this domain, and
  865. * there is no bad imbalance.
  866. */
  867. schedstat_inc(this_sd, ttwu_move_affine);
  868. schedstat_inc(p, se.nr_wakeups_affine);
  869. return 1;
  870. }
  871. return 0;
  872. }
  873. static int select_task_rq_fair(struct task_struct *p, int sync)
  874. {
  875. struct sched_domain *sd, *this_sd = NULL;
  876. int prev_cpu, this_cpu, new_cpu;
  877. unsigned long load, this_load;
  878. struct rq *rq, *this_rq;
  879. unsigned int imbalance;
  880. int idx;
  881. prev_cpu = task_cpu(p);
  882. rq = task_rq(p);
  883. this_cpu = smp_processor_id();
  884. this_rq = cpu_rq(this_cpu);
  885. new_cpu = prev_cpu;
  886. /*
  887. * 'this_sd' is the first domain that both
  888. * this_cpu and prev_cpu are present in:
  889. */
  890. for_each_domain(this_cpu, sd) {
  891. if (cpu_isset(prev_cpu, sd->span)) {
  892. this_sd = sd;
  893. break;
  894. }
  895. }
  896. if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
  897. goto out;
  898. /*
  899. * Check for affine wakeup and passive balancing possibilities.
  900. */
  901. if (!this_sd)
  902. goto out;
  903. idx = this_sd->wake_idx;
  904. imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
  905. load = source_load(prev_cpu, idx);
  906. this_load = target_load(this_cpu, idx);
  907. if (wake_affine(rq, this_sd, this_rq, p, prev_cpu, this_cpu, sync, idx,
  908. load, this_load, imbalance))
  909. return this_cpu;
  910. if (prev_cpu == this_cpu)
  911. goto out;
  912. /*
  913. * Start passive balancing when half the imbalance_pct
  914. * limit is reached.
  915. */
  916. if (this_sd->flags & SD_WAKE_BALANCE) {
  917. if (imbalance*this_load <= 100*load) {
  918. schedstat_inc(this_sd, ttwu_move_balance);
  919. schedstat_inc(p, se.nr_wakeups_passive);
  920. return this_cpu;
  921. }
  922. }
  923. out:
  924. return wake_idle(new_cpu, p);
  925. }
  926. #endif /* CONFIG_SMP */
  927. static unsigned long wakeup_gran(struct sched_entity *se)
  928. {
  929. unsigned long gran = sysctl_sched_wakeup_granularity;
  930. /*
  931. * More easily preempt - nice tasks, while not making
  932. * it harder for + nice tasks.
  933. */
  934. if (unlikely(se->load.weight > NICE_0_LOAD))
  935. gran = calc_delta_fair(gran, &se->load);
  936. return gran;
  937. }
  938. /*
  939. * Should 'se' preempt 'curr'.
  940. *
  941. * |s1
  942. * |s2
  943. * |s3
  944. * g
  945. * |<--->|c
  946. *
  947. * w(c, s1) = -1
  948. * w(c, s2) = 0
  949. * w(c, s3) = 1
  950. *
  951. */
  952. static int
  953. wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se)
  954. {
  955. s64 gran, vdiff = curr->vruntime - se->vruntime;
  956. if (vdiff < 0)
  957. return -1;
  958. gran = wakeup_gran(curr);
  959. if (vdiff > gran)
  960. return 1;
  961. return 0;
  962. }
  963. /* return depth at which a sched entity is present in the hierarchy */
  964. static inline int depth_se(struct sched_entity *se)
  965. {
  966. int depth = 0;
  967. for_each_sched_entity(se)
  968. depth++;
  969. return depth;
  970. }
  971. /*
  972. * Preempt the current task with a newly woken task if needed:
  973. */
  974. static void check_preempt_wakeup(struct rq *rq, struct task_struct *p)
  975. {
  976. struct task_struct *curr = rq->curr;
  977. struct cfs_rq *cfs_rq = task_cfs_rq(curr);
  978. struct sched_entity *se = &curr->se, *pse = &p->se;
  979. int se_depth, pse_depth;
  980. if (unlikely(rt_prio(p->prio))) {
  981. update_rq_clock(rq);
  982. update_curr(cfs_rq);
  983. resched_task(curr);
  984. return;
  985. }
  986. se->last_wakeup = se->sum_exec_runtime;
  987. if (unlikely(se == pse))
  988. return;
  989. cfs_rq_of(pse)->next = pse;
  990. /*
  991. * Batch tasks do not preempt (their preemption is driven by
  992. * the tick):
  993. */
  994. if (unlikely(p->policy == SCHED_BATCH))
  995. return;
  996. if (!sched_feat(WAKEUP_PREEMPT))
  997. return;
  998. /*
  999. * preemption test can be made between sibling entities who are in the
  1000. * same cfs_rq i.e who have a common parent. Walk up the hierarchy of
  1001. * both tasks until we find their ancestors who are siblings of common
  1002. * parent.
  1003. */
  1004. /* First walk up until both entities are at same depth */
  1005. se_depth = depth_se(se);
  1006. pse_depth = depth_se(pse);
  1007. while (se_depth > pse_depth) {
  1008. se_depth--;
  1009. se = parent_entity(se);
  1010. }
  1011. while (pse_depth > se_depth) {
  1012. pse_depth--;
  1013. pse = parent_entity(pse);
  1014. }
  1015. while (!is_same_group(se, pse)) {
  1016. se = parent_entity(se);
  1017. pse = parent_entity(pse);
  1018. }
  1019. if (wakeup_preempt_entity(se, pse) == 1)
  1020. resched_task(curr);
  1021. }
  1022. static struct task_struct *pick_next_task_fair(struct rq *rq)
  1023. {
  1024. struct task_struct *p;
  1025. struct cfs_rq *cfs_rq = &rq->cfs;
  1026. struct sched_entity *se;
  1027. if (unlikely(!cfs_rq->nr_running))
  1028. return NULL;
  1029. do {
  1030. se = pick_next_entity(cfs_rq);
  1031. cfs_rq = group_cfs_rq(se);
  1032. } while (cfs_rq);
  1033. p = task_of(se);
  1034. hrtick_start_fair(rq, p);
  1035. return p;
  1036. }
  1037. /*
  1038. * Account for a descheduled task:
  1039. */
  1040. static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
  1041. {
  1042. struct sched_entity *se = &prev->se;
  1043. struct cfs_rq *cfs_rq;
  1044. for_each_sched_entity(se) {
  1045. cfs_rq = cfs_rq_of(se);
  1046. put_prev_entity(cfs_rq, se);
  1047. }
  1048. }
  1049. #ifdef CONFIG_SMP
  1050. /**************************************************
  1051. * Fair scheduling class load-balancing methods:
  1052. */
  1053. /*
  1054. * Load-balancing iterator. Note: while the runqueue stays locked
  1055. * during the whole iteration, the current task might be
  1056. * dequeued so the iterator has to be dequeue-safe. Here we
  1057. * achieve that by always pre-iterating before returning
  1058. * the current task:
  1059. */
  1060. static struct task_struct *
  1061. __load_balance_iterator(struct cfs_rq *cfs_rq, struct list_head *next)
  1062. {
  1063. struct task_struct *p = NULL;
  1064. struct sched_entity *se;
  1065. while (next != &cfs_rq->tasks) {
  1066. se = list_entry(next, struct sched_entity, group_node);
  1067. next = next->next;
  1068. /* Skip over entities that are not tasks */
  1069. if (entity_is_task(se)) {
  1070. p = task_of(se);
  1071. break;
  1072. }
  1073. }
  1074. cfs_rq->balance_iterator = next;
  1075. return p;
  1076. }
  1077. static struct task_struct *load_balance_start_fair(void *arg)
  1078. {
  1079. struct cfs_rq *cfs_rq = arg;
  1080. return __load_balance_iterator(cfs_rq, cfs_rq->tasks.next);
  1081. }
  1082. static struct task_struct *load_balance_next_fair(void *arg)
  1083. {
  1084. struct cfs_rq *cfs_rq = arg;
  1085. return __load_balance_iterator(cfs_rq, cfs_rq->balance_iterator);
  1086. }
  1087. #ifdef CONFIG_FAIR_GROUP_SCHED
  1088. static int cfs_rq_best_prio(struct cfs_rq *cfs_rq)
  1089. {
  1090. struct sched_entity *curr;
  1091. struct task_struct *p;
  1092. if (!cfs_rq->nr_running || !first_fair(cfs_rq))
  1093. return MAX_PRIO;
  1094. curr = cfs_rq->curr;
  1095. if (!curr)
  1096. curr = __pick_next_entity(cfs_rq);
  1097. p = task_of(curr);
  1098. return p->prio;
  1099. }
  1100. #endif
  1101. static unsigned long
  1102. load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
  1103. unsigned long max_load_move,
  1104. struct sched_domain *sd, enum cpu_idle_type idle,
  1105. int *all_pinned, int *this_best_prio)
  1106. {
  1107. struct cfs_rq *busy_cfs_rq;
  1108. long rem_load_move = max_load_move;
  1109. struct rq_iterator cfs_rq_iterator;
  1110. cfs_rq_iterator.start = load_balance_start_fair;
  1111. cfs_rq_iterator.next = load_balance_next_fair;
  1112. for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
  1113. #ifdef CONFIG_FAIR_GROUP_SCHED
  1114. struct cfs_rq *this_cfs_rq;
  1115. long imbalance;
  1116. unsigned long maxload;
  1117. this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu);
  1118. imbalance = busy_cfs_rq->load.weight - this_cfs_rq->load.weight;
  1119. /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */
  1120. if (imbalance <= 0)
  1121. continue;
  1122. /* Don't pull more than imbalance/2 */
  1123. imbalance /= 2;
  1124. maxload = min(rem_load_move, imbalance);
  1125. *this_best_prio = cfs_rq_best_prio(this_cfs_rq);
  1126. #else
  1127. # define maxload rem_load_move
  1128. #endif
  1129. /*
  1130. * pass busy_cfs_rq argument into
  1131. * load_balance_[start|next]_fair iterators
  1132. */
  1133. cfs_rq_iterator.arg = busy_cfs_rq;
  1134. rem_load_move -= balance_tasks(this_rq, this_cpu, busiest,
  1135. maxload, sd, idle, all_pinned,
  1136. this_best_prio,
  1137. &cfs_rq_iterator);
  1138. if (rem_load_move <= 0)
  1139. break;
  1140. }
  1141. return max_load_move - rem_load_move;
  1142. }
  1143. static int
  1144. move_one_task_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
  1145. struct sched_domain *sd, enum cpu_idle_type idle)
  1146. {
  1147. struct cfs_rq *busy_cfs_rq;
  1148. struct rq_iterator cfs_rq_iterator;
  1149. cfs_rq_iterator.start = load_balance_start_fair;
  1150. cfs_rq_iterator.next = load_balance_next_fair;
  1151. for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
  1152. /*
  1153. * pass busy_cfs_rq argument into
  1154. * load_balance_[start|next]_fair iterators
  1155. */
  1156. cfs_rq_iterator.arg = busy_cfs_rq;
  1157. if (iter_move_one_task(this_rq, this_cpu, busiest, sd, idle,
  1158. &cfs_rq_iterator))
  1159. return 1;
  1160. }
  1161. return 0;
  1162. }
  1163. #endif
  1164. /*
  1165. * scheduler tick hitting a task of our scheduling class:
  1166. */
  1167. static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
  1168. {
  1169. struct cfs_rq *cfs_rq;
  1170. struct sched_entity *se = &curr->se;
  1171. for_each_sched_entity(se) {
  1172. cfs_rq = cfs_rq_of(se);
  1173. entity_tick(cfs_rq, se, queued);
  1174. }
  1175. }
  1176. #define swap(a, b) do { typeof(a) tmp = (a); (a) = (b); (b) = tmp; } while (0)
  1177. /*
  1178. * Share the fairness runtime between parent and child, thus the
  1179. * total amount of pressure for CPU stays equal - new tasks
  1180. * get a chance to run but frequent forkers are not allowed to
  1181. * monopolize the CPU. Note: the parent runqueue is locked,
  1182. * the child is not running yet.
  1183. */
  1184. static void task_new_fair(struct rq *rq, struct task_struct *p)
  1185. {
  1186. struct cfs_rq *cfs_rq = task_cfs_rq(p);
  1187. struct sched_entity *se = &p->se, *curr = cfs_rq->curr;
  1188. int this_cpu = smp_processor_id();
  1189. sched_info_queued(p);
  1190. update_curr(cfs_rq);
  1191. place_entity(cfs_rq, se, 1);
  1192. /* 'curr' will be NULL if the child belongs to a different group */
  1193. if (sysctl_sched_child_runs_first && this_cpu == task_cpu(p) &&
  1194. curr && curr->vruntime < se->vruntime) {
  1195. /*
  1196. * Upon rescheduling, sched_class::put_prev_task() will place
  1197. * 'current' within the tree based on its new key value.
  1198. */
  1199. swap(curr->vruntime, se->vruntime);
  1200. }
  1201. enqueue_task_fair(rq, p, 0);
  1202. resched_task(rq->curr);
  1203. }
  1204. /*
  1205. * Priority of the task has changed. Check to see if we preempt
  1206. * the current task.
  1207. */
  1208. static void prio_changed_fair(struct rq *rq, struct task_struct *p,
  1209. int oldprio, int running)
  1210. {
  1211. /*
  1212. * Reschedule if we are currently running on this runqueue and
  1213. * our priority decreased, or if we are not currently running on
  1214. * this runqueue and our priority is higher than the current's
  1215. */
  1216. if (running) {
  1217. if (p->prio > oldprio)
  1218. resched_task(rq->curr);
  1219. } else
  1220. check_preempt_curr(rq, p);
  1221. }
  1222. /*
  1223. * We switched to the sched_fair class.
  1224. */
  1225. static void switched_to_fair(struct rq *rq, struct task_struct *p,
  1226. int running)
  1227. {
  1228. /*
  1229. * We were most likely switched from sched_rt, so
  1230. * kick off the schedule if running, otherwise just see
  1231. * if we can still preempt the current task.
  1232. */
  1233. if (running)
  1234. resched_task(rq->curr);
  1235. else
  1236. check_preempt_curr(rq, p);
  1237. }
  1238. /* Account for a task changing its policy or group.
  1239. *
  1240. * This routine is mostly called to set cfs_rq->curr field when a task
  1241. * migrates between groups/classes.
  1242. */
  1243. static void set_curr_task_fair(struct rq *rq)
  1244. {
  1245. struct sched_entity *se = &rq->curr->se;
  1246. for_each_sched_entity(se)
  1247. set_next_entity(cfs_rq_of(se), se);
  1248. }
  1249. #ifdef CONFIG_FAIR_GROUP_SCHED
  1250. static void moved_group_fair(struct task_struct *p)
  1251. {
  1252. struct cfs_rq *cfs_rq = task_cfs_rq(p);
  1253. update_curr(cfs_rq);
  1254. place_entity(cfs_rq, &p->se, 1);
  1255. }
  1256. #endif
  1257. /*
  1258. * All the scheduling class methods:
  1259. */
  1260. static const struct sched_class fair_sched_class = {
  1261. .next = &idle_sched_class,
  1262. .enqueue_task = enqueue_task_fair,
  1263. .dequeue_task = dequeue_task_fair,
  1264. .yield_task = yield_task_fair,
  1265. #ifdef CONFIG_SMP
  1266. .select_task_rq = select_task_rq_fair,
  1267. #endif /* CONFIG_SMP */
  1268. .check_preempt_curr = check_preempt_wakeup,
  1269. .pick_next_task = pick_next_task_fair,
  1270. .put_prev_task = put_prev_task_fair,
  1271. #ifdef CONFIG_SMP
  1272. .load_balance = load_balance_fair,
  1273. .move_one_task = move_one_task_fair,
  1274. #endif
  1275. .set_curr_task = set_curr_task_fair,
  1276. .task_tick = task_tick_fair,
  1277. .task_new = task_new_fair,
  1278. .prio_changed = prio_changed_fair,
  1279. .switched_to = switched_to_fair,
  1280. #ifdef CONFIG_FAIR_GROUP_SCHED
  1281. .moved_group = moved_group_fair,
  1282. #endif
  1283. };
  1284. #ifdef CONFIG_SCHED_DEBUG
  1285. static void print_cfs_stats(struct seq_file *m, int cpu)
  1286. {
  1287. struct cfs_rq *cfs_rq;
  1288. rcu_read_lock();
  1289. for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
  1290. print_cfs_rq(m, cpu, cfs_rq);
  1291. rcu_read_unlock();
  1292. }
  1293. #endif