fair.c 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331
  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. #include <linux/sched.h>
  24. #include <linux/cpumask.h>
  25. #include <linux/slab.h>
  26. #include <linux/profile.h>
  27. #include <linux/interrupt.h>
  28. #include <trace/events/sched.h>
  29. #include "sched.h"
  30. /*
  31. * Targeted preemption latency for CPU-bound tasks:
  32. * (default: 6ms * (1 + ilog(ncpus)), units: nanoseconds)
  33. *
  34. * NOTE: this latency value is not the same as the concept of
  35. * 'timeslice length' - timeslices in CFS are of variable length
  36. * and have no persistent notion like in traditional, time-slice
  37. * based scheduling concepts.
  38. *
  39. * (to see the precise effective timeslice length of your workload,
  40. * run vmstat and monitor the context-switches (cs) field)
  41. */
  42. unsigned int sysctl_sched_latency = 6000000ULL;
  43. unsigned int normalized_sysctl_sched_latency = 6000000ULL;
  44. /*
  45. * The initial- and re-scaling of tunables is configurable
  46. * (default SCHED_TUNABLESCALING_LOG = *(1+ilog(ncpus))
  47. *
  48. * Options are:
  49. * SCHED_TUNABLESCALING_NONE - unscaled, always *1
  50. * SCHED_TUNABLESCALING_LOG - scaled logarithmical, *1+ilog(ncpus)
  51. * SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus
  52. */
  53. enum sched_tunable_scaling sysctl_sched_tunable_scaling
  54. = SCHED_TUNABLESCALING_LOG;
  55. /*
  56. * Minimal preemption granularity for CPU-bound tasks:
  57. * (default: 0.75 msec * (1 + ilog(ncpus)), units: nanoseconds)
  58. */
  59. unsigned int sysctl_sched_min_granularity = 750000ULL;
  60. unsigned int normalized_sysctl_sched_min_granularity = 750000ULL;
  61. /*
  62. * is kept at sysctl_sched_latency / sysctl_sched_min_granularity
  63. */
  64. static unsigned int sched_nr_latency = 8;
  65. /*
  66. * After fork, child runs first. If set to 0 (default) then
  67. * parent will (try to) run first.
  68. */
  69. unsigned int sysctl_sched_child_runs_first __read_mostly;
  70. /*
  71. * SCHED_OTHER wake-up granularity.
  72. * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds)
  73. *
  74. * This option delays the preemption effects of decoupled workloads
  75. * and reduces their over-scheduling. Synchronous workloads will still
  76. * have immediate wakeup/sleep latencies.
  77. */
  78. unsigned int sysctl_sched_wakeup_granularity = 1000000UL;
  79. unsigned int normalized_sysctl_sched_wakeup_granularity = 1000000UL;
  80. const_debug unsigned int sysctl_sched_migration_cost = 500000UL;
  81. /*
  82. * The exponential sliding window over which load is averaged for shares
  83. * distribution.
  84. * (default: 10msec)
  85. */
  86. unsigned int __read_mostly sysctl_sched_shares_window = 10000000UL;
  87. #ifdef CONFIG_CFS_BANDWIDTH
  88. /*
  89. * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool
  90. * each time a cfs_rq requests quota.
  91. *
  92. * Note: in the case that the slice exceeds the runtime remaining (either due
  93. * to consumption or the quota being specified to be smaller than the slice)
  94. * we will always only issue the remaining available time.
  95. *
  96. * default: 5 msec, units: microseconds
  97. */
  98. unsigned int sysctl_sched_cfs_bandwidth_slice = 5000UL;
  99. #endif
  100. /*
  101. * Increase the granularity value when there are more CPUs,
  102. * because with more CPUs the 'effective latency' as visible
  103. * to users decreases. But the relationship is not linear,
  104. * so pick a second-best guess by going with the log2 of the
  105. * number of CPUs.
  106. *
  107. * This idea comes from the SD scheduler of Con Kolivas:
  108. */
  109. static int get_update_sysctl_factor(void)
  110. {
  111. unsigned int cpus = min_t(int, num_online_cpus(), 8);
  112. unsigned int factor;
  113. switch (sysctl_sched_tunable_scaling) {
  114. case SCHED_TUNABLESCALING_NONE:
  115. factor = 1;
  116. break;
  117. case SCHED_TUNABLESCALING_LINEAR:
  118. factor = cpus;
  119. break;
  120. case SCHED_TUNABLESCALING_LOG:
  121. default:
  122. factor = 1 + ilog2(cpus);
  123. break;
  124. }
  125. return factor;
  126. }
  127. static void update_sysctl(void)
  128. {
  129. unsigned int factor = get_update_sysctl_factor();
  130. #define SET_SYSCTL(name) \
  131. (sysctl_##name = (factor) * normalized_sysctl_##name)
  132. SET_SYSCTL(sched_min_granularity);
  133. SET_SYSCTL(sched_latency);
  134. SET_SYSCTL(sched_wakeup_granularity);
  135. #undef SET_SYSCTL
  136. }
  137. void sched_init_granularity(void)
  138. {
  139. update_sysctl();
  140. }
  141. #if BITS_PER_LONG == 32
  142. # define WMULT_CONST (~0UL)
  143. #else
  144. # define WMULT_CONST (1UL << 32)
  145. #endif
  146. #define WMULT_SHIFT 32
  147. /*
  148. * Shift right and round:
  149. */
  150. #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
  151. /*
  152. * delta *= weight / lw
  153. */
  154. static unsigned long
  155. calc_delta_mine(unsigned long delta_exec, unsigned long weight,
  156. struct load_weight *lw)
  157. {
  158. u64 tmp;
  159. /*
  160. * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched
  161. * entities since MIN_SHARES = 2. Treat weight as 1 if less than
  162. * 2^SCHED_LOAD_RESOLUTION.
  163. */
  164. if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION)))
  165. tmp = (u64)delta_exec * scale_load_down(weight);
  166. else
  167. tmp = (u64)delta_exec;
  168. if (!lw->inv_weight) {
  169. unsigned long w = scale_load_down(lw->weight);
  170. if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST))
  171. lw->inv_weight = 1;
  172. else if (unlikely(!w))
  173. lw->inv_weight = WMULT_CONST;
  174. else
  175. lw->inv_weight = WMULT_CONST / w;
  176. }
  177. /*
  178. * Check whether we'd overflow the 64-bit multiplication:
  179. */
  180. if (unlikely(tmp > WMULT_CONST))
  181. tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
  182. WMULT_SHIFT/2);
  183. else
  184. tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
  185. return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
  186. }
  187. const struct sched_class fair_sched_class;
  188. /**************************************************************
  189. * CFS operations on generic schedulable entities:
  190. */
  191. #ifdef CONFIG_FAIR_GROUP_SCHED
  192. /* cpu runqueue to which this cfs_rq is attached */
  193. static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
  194. {
  195. return cfs_rq->rq;
  196. }
  197. /* An entity is a task if it doesn't "own" a runqueue */
  198. #define entity_is_task(se) (!se->my_q)
  199. static inline struct task_struct *task_of(struct sched_entity *se)
  200. {
  201. #ifdef CONFIG_SCHED_DEBUG
  202. WARN_ON_ONCE(!entity_is_task(se));
  203. #endif
  204. return container_of(se, struct task_struct, se);
  205. }
  206. /* Walk up scheduling entities hierarchy */
  207. #define for_each_sched_entity(se) \
  208. for (; se; se = se->parent)
  209. static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
  210. {
  211. return p->se.cfs_rq;
  212. }
  213. /* runqueue on which this entity is (to be) queued */
  214. static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
  215. {
  216. return se->cfs_rq;
  217. }
  218. /* runqueue "owned" by this group */
  219. static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
  220. {
  221. return grp->my_q;
  222. }
  223. static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
  224. {
  225. if (!cfs_rq->on_list) {
  226. /*
  227. * Ensure we either appear before our parent (if already
  228. * enqueued) or force our parent to appear after us when it is
  229. * enqueued. The fact that we always enqueue bottom-up
  230. * reduces this to two cases.
  231. */
  232. if (cfs_rq->tg->parent &&
  233. cfs_rq->tg->parent->cfs_rq[cpu_of(rq_of(cfs_rq))]->on_list) {
  234. list_add_rcu(&cfs_rq->leaf_cfs_rq_list,
  235. &rq_of(cfs_rq)->leaf_cfs_rq_list);
  236. } else {
  237. list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
  238. &rq_of(cfs_rq)->leaf_cfs_rq_list);
  239. }
  240. cfs_rq->on_list = 1;
  241. }
  242. }
  243. static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
  244. {
  245. if (cfs_rq->on_list) {
  246. list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
  247. cfs_rq->on_list = 0;
  248. }
  249. }
  250. /* Iterate thr' all leaf cfs_rq's on a runqueue */
  251. #define for_each_leaf_cfs_rq(rq, cfs_rq) \
  252. list_for_each_entry_rcu(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
  253. /* Do the two (enqueued) entities belong to the same group ? */
  254. static inline int
  255. is_same_group(struct sched_entity *se, struct sched_entity *pse)
  256. {
  257. if (se->cfs_rq == pse->cfs_rq)
  258. return 1;
  259. return 0;
  260. }
  261. static inline struct sched_entity *parent_entity(struct sched_entity *se)
  262. {
  263. return se->parent;
  264. }
  265. /* return depth at which a sched entity is present in the hierarchy */
  266. static inline int depth_se(struct sched_entity *se)
  267. {
  268. int depth = 0;
  269. for_each_sched_entity(se)
  270. depth++;
  271. return depth;
  272. }
  273. static void
  274. find_matching_se(struct sched_entity **se, struct sched_entity **pse)
  275. {
  276. int se_depth, pse_depth;
  277. /*
  278. * preemption test can be made between sibling entities who are in the
  279. * same cfs_rq i.e who have a common parent. Walk up the hierarchy of
  280. * both tasks until we find their ancestors who are siblings of common
  281. * parent.
  282. */
  283. /* First walk up until both entities are at same depth */
  284. se_depth = depth_se(*se);
  285. pse_depth = depth_se(*pse);
  286. while (se_depth > pse_depth) {
  287. se_depth--;
  288. *se = parent_entity(*se);
  289. }
  290. while (pse_depth > se_depth) {
  291. pse_depth--;
  292. *pse = parent_entity(*pse);
  293. }
  294. while (!is_same_group(*se, *pse)) {
  295. *se = parent_entity(*se);
  296. *pse = parent_entity(*pse);
  297. }
  298. }
  299. #else /* !CONFIG_FAIR_GROUP_SCHED */
  300. static inline struct task_struct *task_of(struct sched_entity *se)
  301. {
  302. return container_of(se, struct task_struct, se);
  303. }
  304. static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
  305. {
  306. return container_of(cfs_rq, struct rq, cfs);
  307. }
  308. #define entity_is_task(se) 1
  309. #define for_each_sched_entity(se) \
  310. for (; se; se = NULL)
  311. static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
  312. {
  313. return &task_rq(p)->cfs;
  314. }
  315. static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
  316. {
  317. struct task_struct *p = task_of(se);
  318. struct rq *rq = task_rq(p);
  319. return &rq->cfs;
  320. }
  321. /* runqueue "owned" by this group */
  322. static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
  323. {
  324. return NULL;
  325. }
  326. static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
  327. {
  328. }
  329. static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
  330. {
  331. }
  332. #define for_each_leaf_cfs_rq(rq, cfs_rq) \
  333. for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
  334. static inline int
  335. is_same_group(struct sched_entity *se, struct sched_entity *pse)
  336. {
  337. return 1;
  338. }
  339. static inline struct sched_entity *parent_entity(struct sched_entity *se)
  340. {
  341. return NULL;
  342. }
  343. static inline void
  344. find_matching_se(struct sched_entity **se, struct sched_entity **pse)
  345. {
  346. }
  347. #endif /* CONFIG_FAIR_GROUP_SCHED */
  348. static __always_inline
  349. void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec);
  350. /**************************************************************
  351. * Scheduling class tree data structure manipulation methods:
  352. */
  353. static inline u64 max_vruntime(u64 min_vruntime, u64 vruntime)
  354. {
  355. s64 delta = (s64)(vruntime - min_vruntime);
  356. if (delta > 0)
  357. min_vruntime = vruntime;
  358. return min_vruntime;
  359. }
  360. static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime)
  361. {
  362. s64 delta = (s64)(vruntime - min_vruntime);
  363. if (delta < 0)
  364. min_vruntime = vruntime;
  365. return min_vruntime;
  366. }
  367. static inline int entity_before(struct sched_entity *a,
  368. struct sched_entity *b)
  369. {
  370. return (s64)(a->vruntime - b->vruntime) < 0;
  371. }
  372. static void update_min_vruntime(struct cfs_rq *cfs_rq)
  373. {
  374. u64 vruntime = cfs_rq->min_vruntime;
  375. if (cfs_rq->curr)
  376. vruntime = cfs_rq->curr->vruntime;
  377. if (cfs_rq->rb_leftmost) {
  378. struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost,
  379. struct sched_entity,
  380. run_node);
  381. if (!cfs_rq->curr)
  382. vruntime = se->vruntime;
  383. else
  384. vruntime = min_vruntime(vruntime, se->vruntime);
  385. }
  386. cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
  387. #ifndef CONFIG_64BIT
  388. smp_wmb();
  389. cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
  390. #endif
  391. }
  392. /*
  393. * Enqueue an entity into the rb-tree:
  394. */
  395. static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  396. {
  397. struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
  398. struct rb_node *parent = NULL;
  399. struct sched_entity *entry;
  400. int leftmost = 1;
  401. /*
  402. * Find the right place in the rbtree:
  403. */
  404. while (*link) {
  405. parent = *link;
  406. entry = rb_entry(parent, struct sched_entity, run_node);
  407. /*
  408. * We dont care about collisions. Nodes with
  409. * the same key stay together.
  410. */
  411. if (entity_before(se, entry)) {
  412. link = &parent->rb_left;
  413. } else {
  414. link = &parent->rb_right;
  415. leftmost = 0;
  416. }
  417. }
  418. /*
  419. * Maintain a cache of leftmost tree entries (it is frequently
  420. * used):
  421. */
  422. if (leftmost)
  423. cfs_rq->rb_leftmost = &se->run_node;
  424. rb_link_node(&se->run_node, parent, link);
  425. rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
  426. }
  427. static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  428. {
  429. if (cfs_rq->rb_leftmost == &se->run_node) {
  430. struct rb_node *next_node;
  431. next_node = rb_next(&se->run_node);
  432. cfs_rq->rb_leftmost = next_node;
  433. }
  434. rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
  435. }
  436. struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq)
  437. {
  438. struct rb_node *left = cfs_rq->rb_leftmost;
  439. if (!left)
  440. return NULL;
  441. return rb_entry(left, struct sched_entity, run_node);
  442. }
  443. static struct sched_entity *__pick_next_entity(struct sched_entity *se)
  444. {
  445. struct rb_node *next = rb_next(&se->run_node);
  446. if (!next)
  447. return NULL;
  448. return rb_entry(next, struct sched_entity, run_node);
  449. }
  450. #ifdef CONFIG_SCHED_DEBUG
  451. struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
  452. {
  453. struct rb_node *last = rb_last(&cfs_rq->tasks_timeline);
  454. if (!last)
  455. return NULL;
  456. return rb_entry(last, struct sched_entity, run_node);
  457. }
  458. /**************************************************************
  459. * Scheduling class statistics methods:
  460. */
  461. int sched_proc_update_handler(struct ctl_table *table, int write,
  462. void __user *buffer, size_t *lenp,
  463. loff_t *ppos)
  464. {
  465. int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
  466. int factor = get_update_sysctl_factor();
  467. if (ret || !write)
  468. return ret;
  469. sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency,
  470. sysctl_sched_min_granularity);
  471. #define WRT_SYSCTL(name) \
  472. (normalized_sysctl_##name = sysctl_##name / (factor))
  473. WRT_SYSCTL(sched_min_granularity);
  474. WRT_SYSCTL(sched_latency);
  475. WRT_SYSCTL(sched_wakeup_granularity);
  476. #undef WRT_SYSCTL
  477. return 0;
  478. }
  479. #endif
  480. /*
  481. * delta /= w
  482. */
  483. static inline unsigned long
  484. calc_delta_fair(unsigned long delta, struct sched_entity *se)
  485. {
  486. if (unlikely(se->load.weight != NICE_0_LOAD))
  487. delta = calc_delta_mine(delta, NICE_0_LOAD, &se->load);
  488. return delta;
  489. }
  490. /*
  491. * The idea is to set a period in which each task runs once.
  492. *
  493. * When there are too many tasks (sysctl_sched_nr_latency) we have to stretch
  494. * this period because otherwise the slices get too small.
  495. *
  496. * p = (nr <= nl) ? l : l*nr/nl
  497. */
  498. static u64 __sched_period(unsigned long nr_running)
  499. {
  500. u64 period = sysctl_sched_latency;
  501. unsigned long nr_latency = sched_nr_latency;
  502. if (unlikely(nr_running > nr_latency)) {
  503. period = sysctl_sched_min_granularity;
  504. period *= nr_running;
  505. }
  506. return period;
  507. }
  508. /*
  509. * We calculate the wall-time slice from the period by taking a part
  510. * proportional to the weight.
  511. *
  512. * s = p*P[w/rw]
  513. */
  514. static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
  515. {
  516. u64 slice = __sched_period(cfs_rq->nr_running + !se->on_rq);
  517. for_each_sched_entity(se) {
  518. struct load_weight *load;
  519. struct load_weight lw;
  520. cfs_rq = cfs_rq_of(se);
  521. load = &cfs_rq->load;
  522. if (unlikely(!se->on_rq)) {
  523. lw = cfs_rq->load;
  524. update_load_add(&lw, se->load.weight);
  525. load = &lw;
  526. }
  527. slice = calc_delta_mine(slice, se->load.weight, load);
  528. }
  529. return slice;
  530. }
  531. /*
  532. * We calculate the vruntime slice of a to be inserted task
  533. *
  534. * vs = s/w
  535. */
  536. static u64 sched_vslice(struct cfs_rq *cfs_rq, struct sched_entity *se)
  537. {
  538. return calc_delta_fair(sched_slice(cfs_rq, se), se);
  539. }
  540. static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update);
  541. static void update_cfs_shares(struct cfs_rq *cfs_rq);
  542. /*
  543. * Update the current task's runtime statistics. Skip current tasks that
  544. * are not in our scheduling class.
  545. */
  546. static inline void
  547. __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr,
  548. unsigned long delta_exec)
  549. {
  550. unsigned long delta_exec_weighted;
  551. schedstat_set(curr->statistics.exec_max,
  552. max((u64)delta_exec, curr->statistics.exec_max));
  553. curr->sum_exec_runtime += delta_exec;
  554. schedstat_add(cfs_rq, exec_clock, delta_exec);
  555. delta_exec_weighted = calc_delta_fair(delta_exec, curr);
  556. curr->vruntime += delta_exec_weighted;
  557. update_min_vruntime(cfs_rq);
  558. #if defined CONFIG_SMP && defined CONFIG_FAIR_GROUP_SCHED
  559. cfs_rq->load_unacc_exec_time += delta_exec;
  560. #endif
  561. }
  562. static void update_curr(struct cfs_rq *cfs_rq)
  563. {
  564. struct sched_entity *curr = cfs_rq->curr;
  565. u64 now = rq_of(cfs_rq)->clock_task;
  566. unsigned long delta_exec;
  567. if (unlikely(!curr))
  568. return;
  569. /*
  570. * Get the amount of time the current task was running
  571. * since the last time we changed load (this cannot
  572. * overflow on 32 bits):
  573. */
  574. delta_exec = (unsigned long)(now - curr->exec_start);
  575. if (!delta_exec)
  576. return;
  577. __update_curr(cfs_rq, curr, delta_exec);
  578. curr->exec_start = now;
  579. if (entity_is_task(curr)) {
  580. struct task_struct *curtask = task_of(curr);
  581. trace_sched_stat_runtime(curtask, delta_exec, curr->vruntime);
  582. cpuacct_charge(curtask, delta_exec);
  583. account_group_exec_runtime(curtask, delta_exec);
  584. }
  585. account_cfs_rq_runtime(cfs_rq, delta_exec);
  586. }
  587. static inline void
  588. update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
  589. {
  590. schedstat_set(se->statistics.wait_start, rq_of(cfs_rq)->clock);
  591. }
  592. /*
  593. * Task is being enqueued - update stats:
  594. */
  595. static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  596. {
  597. /*
  598. * Are we enqueueing a waiting task? (for current tasks
  599. * a dequeue/enqueue event is a NOP)
  600. */
  601. if (se != cfs_rq->curr)
  602. update_stats_wait_start(cfs_rq, se);
  603. }
  604. static void
  605. update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
  606. {
  607. schedstat_set(se->statistics.wait_max, max(se->statistics.wait_max,
  608. rq_of(cfs_rq)->clock - se->statistics.wait_start));
  609. schedstat_set(se->statistics.wait_count, se->statistics.wait_count + 1);
  610. schedstat_set(se->statistics.wait_sum, se->statistics.wait_sum +
  611. rq_of(cfs_rq)->clock - se->statistics.wait_start);
  612. #ifdef CONFIG_SCHEDSTATS
  613. if (entity_is_task(se)) {
  614. trace_sched_stat_wait(task_of(se),
  615. rq_of(cfs_rq)->clock - se->statistics.wait_start);
  616. }
  617. #endif
  618. schedstat_set(se->statistics.wait_start, 0);
  619. }
  620. static inline void
  621. update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  622. {
  623. /*
  624. * Mark the end of the wait period if dequeueing a
  625. * waiting task:
  626. */
  627. if (se != cfs_rq->curr)
  628. update_stats_wait_end(cfs_rq, se);
  629. }
  630. /*
  631. * We are picking a new current task - update its stats:
  632. */
  633. static inline void
  634. update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
  635. {
  636. /*
  637. * We are starting a new run period:
  638. */
  639. se->exec_start = rq_of(cfs_rq)->clock_task;
  640. }
  641. /**************************************************
  642. * Scheduling class queueing methods:
  643. */
  644. static void
  645. account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  646. {
  647. update_load_add(&cfs_rq->load, se->load.weight);
  648. if (!parent_entity(se))
  649. update_load_add(&rq_of(cfs_rq)->load, se->load.weight);
  650. #ifdef CONFIG_SMP
  651. if (entity_is_task(se))
  652. list_add(&se->group_node, &rq_of(cfs_rq)->cfs_tasks);
  653. #endif
  654. cfs_rq->nr_running++;
  655. }
  656. static void
  657. account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
  658. {
  659. update_load_sub(&cfs_rq->load, se->load.weight);
  660. if (!parent_entity(se))
  661. update_load_sub(&rq_of(cfs_rq)->load, se->load.weight);
  662. if (entity_is_task(se))
  663. list_del_init(&se->group_node);
  664. cfs_rq->nr_running--;
  665. }
  666. #ifdef CONFIG_FAIR_GROUP_SCHED
  667. /* we need this in update_cfs_load and load-balance functions below */
  668. static inline int throttled_hierarchy(struct cfs_rq *cfs_rq);
  669. # ifdef CONFIG_SMP
  670. static void update_cfs_rq_load_contribution(struct cfs_rq *cfs_rq,
  671. int global_update)
  672. {
  673. struct task_group *tg = cfs_rq->tg;
  674. long load_avg;
  675. load_avg = div64_u64(cfs_rq->load_avg, cfs_rq->load_period+1);
  676. load_avg -= cfs_rq->load_contribution;
  677. if (global_update || abs(load_avg) > cfs_rq->load_contribution / 8) {
  678. atomic_add(load_avg, &tg->load_weight);
  679. cfs_rq->load_contribution += load_avg;
  680. }
  681. }
  682. static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
  683. {
  684. u64 period = sysctl_sched_shares_window;
  685. u64 now, delta;
  686. unsigned long load = cfs_rq->load.weight;
  687. if (cfs_rq->tg == &root_task_group || throttled_hierarchy(cfs_rq))
  688. return;
  689. now = rq_of(cfs_rq)->clock_task;
  690. delta = now - cfs_rq->load_stamp;
  691. /* truncate load history at 4 idle periods */
  692. if (cfs_rq->load_stamp > cfs_rq->load_last &&
  693. now - cfs_rq->load_last > 4 * period) {
  694. cfs_rq->load_period = 0;
  695. cfs_rq->load_avg = 0;
  696. delta = period - 1;
  697. }
  698. cfs_rq->load_stamp = now;
  699. cfs_rq->load_unacc_exec_time = 0;
  700. cfs_rq->load_period += delta;
  701. if (load) {
  702. cfs_rq->load_last = now;
  703. cfs_rq->load_avg += delta * load;
  704. }
  705. /* consider updating load contribution on each fold or truncate */
  706. if (global_update || cfs_rq->load_period > period
  707. || !cfs_rq->load_period)
  708. update_cfs_rq_load_contribution(cfs_rq, global_update);
  709. while (cfs_rq->load_period > period) {
  710. /*
  711. * Inline assembly required to prevent the compiler
  712. * optimising this loop into a divmod call.
  713. * See __iter_div_u64_rem() for another example of this.
  714. */
  715. asm("" : "+rm" (cfs_rq->load_period));
  716. cfs_rq->load_period /= 2;
  717. cfs_rq->load_avg /= 2;
  718. }
  719. if (!cfs_rq->curr && !cfs_rq->nr_running && !cfs_rq->load_avg)
  720. list_del_leaf_cfs_rq(cfs_rq);
  721. }
  722. static inline long calc_tg_weight(struct task_group *tg, struct cfs_rq *cfs_rq)
  723. {
  724. long tg_weight;
  725. /*
  726. * Use this CPU's actual weight instead of the last load_contribution
  727. * to gain a more accurate current total weight. See
  728. * update_cfs_rq_load_contribution().
  729. */
  730. tg_weight = atomic_read(&tg->load_weight);
  731. tg_weight -= cfs_rq->load_contribution;
  732. tg_weight += cfs_rq->load.weight;
  733. return tg_weight;
  734. }
  735. static long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg)
  736. {
  737. long tg_weight, load, shares;
  738. tg_weight = calc_tg_weight(tg, cfs_rq);
  739. load = cfs_rq->load.weight;
  740. shares = (tg->shares * load);
  741. if (tg_weight)
  742. shares /= tg_weight;
  743. if (shares < MIN_SHARES)
  744. shares = MIN_SHARES;
  745. if (shares > tg->shares)
  746. shares = tg->shares;
  747. return shares;
  748. }
  749. static void update_entity_shares_tick(struct cfs_rq *cfs_rq)
  750. {
  751. if (cfs_rq->load_unacc_exec_time > sysctl_sched_shares_window) {
  752. update_cfs_load(cfs_rq, 0);
  753. update_cfs_shares(cfs_rq);
  754. }
  755. }
  756. # else /* CONFIG_SMP */
  757. static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
  758. {
  759. }
  760. static inline long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg)
  761. {
  762. return tg->shares;
  763. }
  764. static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq)
  765. {
  766. }
  767. # endif /* CONFIG_SMP */
  768. static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
  769. unsigned long weight)
  770. {
  771. if (se->on_rq) {
  772. /* commit outstanding execution time */
  773. if (cfs_rq->curr == se)
  774. update_curr(cfs_rq);
  775. account_entity_dequeue(cfs_rq, se);
  776. }
  777. update_load_set(&se->load, weight);
  778. if (se->on_rq)
  779. account_entity_enqueue(cfs_rq, se);
  780. }
  781. static void update_cfs_shares(struct cfs_rq *cfs_rq)
  782. {
  783. struct task_group *tg;
  784. struct sched_entity *se;
  785. long shares;
  786. tg = cfs_rq->tg;
  787. se = tg->se[cpu_of(rq_of(cfs_rq))];
  788. if (!se || throttled_hierarchy(cfs_rq))
  789. return;
  790. #ifndef CONFIG_SMP
  791. if (likely(se->load.weight == tg->shares))
  792. return;
  793. #endif
  794. shares = calc_cfs_shares(cfs_rq, tg);
  795. reweight_entity(cfs_rq_of(se), se, shares);
  796. }
  797. #else /* CONFIG_FAIR_GROUP_SCHED */
  798. static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
  799. {
  800. }
  801. static inline void update_cfs_shares(struct cfs_rq *cfs_rq)
  802. {
  803. }
  804. static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq)
  805. {
  806. }
  807. #endif /* CONFIG_FAIR_GROUP_SCHED */
  808. static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
  809. {
  810. #ifdef CONFIG_SCHEDSTATS
  811. struct task_struct *tsk = NULL;
  812. if (entity_is_task(se))
  813. tsk = task_of(se);
  814. if (se->statistics.sleep_start) {
  815. u64 delta = rq_of(cfs_rq)->clock - se->statistics.sleep_start;
  816. if ((s64)delta < 0)
  817. delta = 0;
  818. if (unlikely(delta > se->statistics.sleep_max))
  819. se->statistics.sleep_max = delta;
  820. se->statistics.sleep_start = 0;
  821. se->statistics.sum_sleep_runtime += delta;
  822. if (tsk) {
  823. account_scheduler_latency(tsk, delta >> 10, 1);
  824. trace_sched_stat_sleep(tsk, delta);
  825. }
  826. }
  827. if (se->statistics.block_start) {
  828. u64 delta = rq_of(cfs_rq)->clock - se->statistics.block_start;
  829. if ((s64)delta < 0)
  830. delta = 0;
  831. if (unlikely(delta > se->statistics.block_max))
  832. se->statistics.block_max = delta;
  833. se->statistics.block_start = 0;
  834. se->statistics.sum_sleep_runtime += delta;
  835. if (tsk) {
  836. if (tsk->in_iowait) {
  837. se->statistics.iowait_sum += delta;
  838. se->statistics.iowait_count++;
  839. trace_sched_stat_iowait(tsk, delta);
  840. }
  841. trace_sched_stat_blocked(tsk, delta);
  842. /*
  843. * Blocking time is in units of nanosecs, so shift by
  844. * 20 to get a milliseconds-range estimation of the
  845. * amount of time that the task spent sleeping:
  846. */
  847. if (unlikely(prof_on == SLEEP_PROFILING)) {
  848. profile_hits(SLEEP_PROFILING,
  849. (void *)get_wchan(tsk),
  850. delta >> 20);
  851. }
  852. account_scheduler_latency(tsk, delta >> 10, 0);
  853. }
  854. }
  855. #endif
  856. }
  857. static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se)
  858. {
  859. #ifdef CONFIG_SCHED_DEBUG
  860. s64 d = se->vruntime - cfs_rq->min_vruntime;
  861. if (d < 0)
  862. d = -d;
  863. if (d > 3*sysctl_sched_latency)
  864. schedstat_inc(cfs_rq, nr_spread_over);
  865. #endif
  866. }
  867. static void
  868. place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)
  869. {
  870. u64 vruntime = cfs_rq->min_vruntime;
  871. /*
  872. * The 'current' period is already promised to the current tasks,
  873. * however the extra weight of the new task will slow them down a
  874. * little, place the new task so that it fits in the slot that
  875. * stays open at the end.
  876. */
  877. if (initial && sched_feat(START_DEBIT))
  878. vruntime += sched_vslice(cfs_rq, se);
  879. /* sleeps up to a single latency don't count. */
  880. if (!initial) {
  881. unsigned long thresh = sysctl_sched_latency;
  882. /*
  883. * Halve their sleep time's effect, to allow
  884. * for a gentler effect of sleepers:
  885. */
  886. if (sched_feat(GENTLE_FAIR_SLEEPERS))
  887. thresh >>= 1;
  888. vruntime -= thresh;
  889. }
  890. /* ensure we never gain time by being placed backwards. */
  891. vruntime = max_vruntime(se->vruntime, vruntime);
  892. se->vruntime = vruntime;
  893. }
  894. static void check_enqueue_throttle(struct cfs_rq *cfs_rq);
  895. static void
  896. enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
  897. {
  898. /*
  899. * Update the normalized vruntime before updating min_vruntime
  900. * through callig update_curr().
  901. */
  902. if (!(flags & ENQUEUE_WAKEUP) || (flags & ENQUEUE_WAKING))
  903. se->vruntime += cfs_rq->min_vruntime;
  904. /*
  905. * Update run-time statistics of the 'current'.
  906. */
  907. update_curr(cfs_rq);
  908. update_cfs_load(cfs_rq, 0);
  909. account_entity_enqueue(cfs_rq, se);
  910. update_cfs_shares(cfs_rq);
  911. if (flags & ENQUEUE_WAKEUP) {
  912. place_entity(cfs_rq, se, 0);
  913. enqueue_sleeper(cfs_rq, se);
  914. }
  915. update_stats_enqueue(cfs_rq, se);
  916. check_spread(cfs_rq, se);
  917. if (se != cfs_rq->curr)
  918. __enqueue_entity(cfs_rq, se);
  919. se->on_rq = 1;
  920. if (cfs_rq->nr_running == 1) {
  921. list_add_leaf_cfs_rq(cfs_rq);
  922. check_enqueue_throttle(cfs_rq);
  923. }
  924. }
  925. static void __clear_buddies_last(struct sched_entity *se)
  926. {
  927. for_each_sched_entity(se) {
  928. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  929. if (cfs_rq->last == se)
  930. cfs_rq->last = NULL;
  931. else
  932. break;
  933. }
  934. }
  935. static void __clear_buddies_next(struct sched_entity *se)
  936. {
  937. for_each_sched_entity(se) {
  938. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  939. if (cfs_rq->next == se)
  940. cfs_rq->next = NULL;
  941. else
  942. break;
  943. }
  944. }
  945. static void __clear_buddies_skip(struct sched_entity *se)
  946. {
  947. for_each_sched_entity(se) {
  948. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  949. if (cfs_rq->skip == se)
  950. cfs_rq->skip = NULL;
  951. else
  952. break;
  953. }
  954. }
  955. static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
  956. {
  957. if (cfs_rq->last == se)
  958. __clear_buddies_last(se);
  959. if (cfs_rq->next == se)
  960. __clear_buddies_next(se);
  961. if (cfs_rq->skip == se)
  962. __clear_buddies_skip(se);
  963. }
  964. static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq);
  965. static void
  966. dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
  967. {
  968. /*
  969. * Update run-time statistics of the 'current'.
  970. */
  971. update_curr(cfs_rq);
  972. update_stats_dequeue(cfs_rq, se);
  973. if (flags & DEQUEUE_SLEEP) {
  974. #ifdef CONFIG_SCHEDSTATS
  975. if (entity_is_task(se)) {
  976. struct task_struct *tsk = task_of(se);
  977. if (tsk->state & TASK_INTERRUPTIBLE)
  978. se->statistics.sleep_start = rq_of(cfs_rq)->clock;
  979. if (tsk->state & TASK_UNINTERRUPTIBLE)
  980. se->statistics.block_start = rq_of(cfs_rq)->clock;
  981. }
  982. #endif
  983. }
  984. clear_buddies(cfs_rq, se);
  985. if (se != cfs_rq->curr)
  986. __dequeue_entity(cfs_rq, se);
  987. se->on_rq = 0;
  988. update_cfs_load(cfs_rq, 0);
  989. account_entity_dequeue(cfs_rq, se);
  990. /*
  991. * Normalize the entity after updating the min_vruntime because the
  992. * update can refer to the ->curr item and we need to reflect this
  993. * movement in our normalized position.
  994. */
  995. if (!(flags & DEQUEUE_SLEEP))
  996. se->vruntime -= cfs_rq->min_vruntime;
  997. /* return excess runtime on last dequeue */
  998. return_cfs_rq_runtime(cfs_rq);
  999. update_min_vruntime(cfs_rq);
  1000. update_cfs_shares(cfs_rq);
  1001. }
  1002. /*
  1003. * Preempt the current task with a newly woken task if needed:
  1004. */
  1005. static void
  1006. check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
  1007. {
  1008. unsigned long ideal_runtime, delta_exec;
  1009. struct sched_entity *se;
  1010. s64 delta;
  1011. ideal_runtime = sched_slice(cfs_rq, curr);
  1012. delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
  1013. if (delta_exec > ideal_runtime) {
  1014. resched_task(rq_of(cfs_rq)->curr);
  1015. /*
  1016. * The current task ran long enough, ensure it doesn't get
  1017. * re-elected due to buddy favours.
  1018. */
  1019. clear_buddies(cfs_rq, curr);
  1020. return;
  1021. }
  1022. /*
  1023. * Ensure that a task that missed wakeup preemption by a
  1024. * narrow margin doesn't have to wait for a full slice.
  1025. * This also mitigates buddy induced latencies under load.
  1026. */
  1027. if (delta_exec < sysctl_sched_min_granularity)
  1028. return;
  1029. se = __pick_first_entity(cfs_rq);
  1030. delta = curr->vruntime - se->vruntime;
  1031. if (delta < 0)
  1032. return;
  1033. if (delta > ideal_runtime)
  1034. resched_task(rq_of(cfs_rq)->curr);
  1035. }
  1036. static void
  1037. set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
  1038. {
  1039. /* 'current' is not kept within the tree. */
  1040. if (se->on_rq) {
  1041. /*
  1042. * Any task has to be enqueued before it get to execute on
  1043. * a CPU. So account for the time it spent waiting on the
  1044. * runqueue.
  1045. */
  1046. update_stats_wait_end(cfs_rq, se);
  1047. __dequeue_entity(cfs_rq, se);
  1048. }
  1049. update_stats_curr_start(cfs_rq, se);
  1050. cfs_rq->curr = se;
  1051. #ifdef CONFIG_SCHEDSTATS
  1052. /*
  1053. * Track our maximum slice length, if the CPU's load is at
  1054. * least twice that of our own weight (i.e. dont track it
  1055. * when there are only lesser-weight tasks around):
  1056. */
  1057. if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) {
  1058. se->statistics.slice_max = max(se->statistics.slice_max,
  1059. se->sum_exec_runtime - se->prev_sum_exec_runtime);
  1060. }
  1061. #endif
  1062. se->prev_sum_exec_runtime = se->sum_exec_runtime;
  1063. }
  1064. static int
  1065. wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se);
  1066. /*
  1067. * Pick the next process, keeping these things in mind, in this order:
  1068. * 1) keep things fair between processes/task groups
  1069. * 2) pick the "next" process, since someone really wants that to run
  1070. * 3) pick the "last" process, for cache locality
  1071. * 4) do not run the "skip" process, if something else is available
  1072. */
  1073. static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
  1074. {
  1075. struct sched_entity *se = __pick_first_entity(cfs_rq);
  1076. struct sched_entity *left = se;
  1077. /*
  1078. * Avoid running the skip buddy, if running something else can
  1079. * be done without getting too unfair.
  1080. */
  1081. if (cfs_rq->skip == se) {
  1082. struct sched_entity *second = __pick_next_entity(se);
  1083. if (second && wakeup_preempt_entity(second, left) < 1)
  1084. se = second;
  1085. }
  1086. /*
  1087. * Prefer last buddy, try to return the CPU to a preempted task.
  1088. */
  1089. if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1)
  1090. se = cfs_rq->last;
  1091. /*
  1092. * Someone really wants this to run. If it's not unfair, run it.
  1093. */
  1094. if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1)
  1095. se = cfs_rq->next;
  1096. clear_buddies(cfs_rq, se);
  1097. return se;
  1098. }
  1099. static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq);
  1100. static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
  1101. {
  1102. /*
  1103. * If still on the runqueue then deactivate_task()
  1104. * was not called and update_curr() has to be done:
  1105. */
  1106. if (prev->on_rq)
  1107. update_curr(cfs_rq);
  1108. /* throttle cfs_rqs exceeding runtime */
  1109. check_cfs_rq_runtime(cfs_rq);
  1110. check_spread(cfs_rq, prev);
  1111. if (prev->on_rq) {
  1112. update_stats_wait_start(cfs_rq, prev);
  1113. /* Put 'current' back into the tree. */
  1114. __enqueue_entity(cfs_rq, prev);
  1115. }
  1116. cfs_rq->curr = NULL;
  1117. }
  1118. static void
  1119. entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
  1120. {
  1121. /*
  1122. * Update run-time statistics of the 'current'.
  1123. */
  1124. update_curr(cfs_rq);
  1125. /*
  1126. * Update share accounting for long-running entities.
  1127. */
  1128. update_entity_shares_tick(cfs_rq);
  1129. #ifdef CONFIG_SCHED_HRTICK
  1130. /*
  1131. * queued ticks are scheduled to match the slice, so don't bother
  1132. * validating it and just reschedule.
  1133. */
  1134. if (queued) {
  1135. resched_task(rq_of(cfs_rq)->curr);
  1136. return;
  1137. }
  1138. /*
  1139. * don't let the period tick interfere with the hrtick preemption
  1140. */
  1141. if (!sched_feat(DOUBLE_TICK) &&
  1142. hrtimer_active(&rq_of(cfs_rq)->hrtick_timer))
  1143. return;
  1144. #endif
  1145. if (cfs_rq->nr_running > 1)
  1146. check_preempt_tick(cfs_rq, curr);
  1147. }
  1148. /**************************************************
  1149. * CFS bandwidth control machinery
  1150. */
  1151. #ifdef CONFIG_CFS_BANDWIDTH
  1152. #ifdef HAVE_JUMP_LABEL
  1153. static struct static_key __cfs_bandwidth_used;
  1154. static inline bool cfs_bandwidth_used(void)
  1155. {
  1156. return static_key_false(&__cfs_bandwidth_used);
  1157. }
  1158. void account_cfs_bandwidth_used(int enabled, int was_enabled)
  1159. {
  1160. /* only need to count groups transitioning between enabled/!enabled */
  1161. if (enabled && !was_enabled)
  1162. static_key_slow_inc(&__cfs_bandwidth_used);
  1163. else if (!enabled && was_enabled)
  1164. static_key_slow_dec(&__cfs_bandwidth_used);
  1165. }
  1166. #else /* HAVE_JUMP_LABEL */
  1167. static bool cfs_bandwidth_used(void)
  1168. {
  1169. return true;
  1170. }
  1171. void account_cfs_bandwidth_used(int enabled, int was_enabled) {}
  1172. #endif /* HAVE_JUMP_LABEL */
  1173. /*
  1174. * default period for cfs group bandwidth.
  1175. * default: 0.1s, units: nanoseconds
  1176. */
  1177. static inline u64 default_cfs_period(void)
  1178. {
  1179. return 100000000ULL;
  1180. }
  1181. static inline u64 sched_cfs_bandwidth_slice(void)
  1182. {
  1183. return (u64)sysctl_sched_cfs_bandwidth_slice * NSEC_PER_USEC;
  1184. }
  1185. /*
  1186. * Replenish runtime according to assigned quota and update expiration time.
  1187. * We use sched_clock_cpu directly instead of rq->clock to avoid adding
  1188. * additional synchronization around rq->lock.
  1189. *
  1190. * requires cfs_b->lock
  1191. */
  1192. void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b)
  1193. {
  1194. u64 now;
  1195. if (cfs_b->quota == RUNTIME_INF)
  1196. return;
  1197. now = sched_clock_cpu(smp_processor_id());
  1198. cfs_b->runtime = cfs_b->quota;
  1199. cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period);
  1200. }
  1201. static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
  1202. {
  1203. return &tg->cfs_bandwidth;
  1204. }
  1205. /* returns 0 on failure to allocate runtime */
  1206. static int assign_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1207. {
  1208. struct task_group *tg = cfs_rq->tg;
  1209. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
  1210. u64 amount = 0, min_amount, expires;
  1211. /* note: this is a positive sum as runtime_remaining <= 0 */
  1212. min_amount = sched_cfs_bandwidth_slice() - cfs_rq->runtime_remaining;
  1213. raw_spin_lock(&cfs_b->lock);
  1214. if (cfs_b->quota == RUNTIME_INF)
  1215. amount = min_amount;
  1216. else {
  1217. /*
  1218. * If the bandwidth pool has become inactive, then at least one
  1219. * period must have elapsed since the last consumption.
  1220. * Refresh the global state and ensure bandwidth timer becomes
  1221. * active.
  1222. */
  1223. if (!cfs_b->timer_active) {
  1224. __refill_cfs_bandwidth_runtime(cfs_b);
  1225. __start_cfs_bandwidth(cfs_b);
  1226. }
  1227. if (cfs_b->runtime > 0) {
  1228. amount = min(cfs_b->runtime, min_amount);
  1229. cfs_b->runtime -= amount;
  1230. cfs_b->idle = 0;
  1231. }
  1232. }
  1233. expires = cfs_b->runtime_expires;
  1234. raw_spin_unlock(&cfs_b->lock);
  1235. cfs_rq->runtime_remaining += amount;
  1236. /*
  1237. * we may have advanced our local expiration to account for allowed
  1238. * spread between our sched_clock and the one on which runtime was
  1239. * issued.
  1240. */
  1241. if ((s64)(expires - cfs_rq->runtime_expires) > 0)
  1242. cfs_rq->runtime_expires = expires;
  1243. return cfs_rq->runtime_remaining > 0;
  1244. }
  1245. /*
  1246. * Note: This depends on the synchronization provided by sched_clock and the
  1247. * fact that rq->clock snapshots this value.
  1248. */
  1249. static void expire_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1250. {
  1251. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
  1252. struct rq *rq = rq_of(cfs_rq);
  1253. /* if the deadline is ahead of our clock, nothing to do */
  1254. if (likely((s64)(rq->clock - cfs_rq->runtime_expires) < 0))
  1255. return;
  1256. if (cfs_rq->runtime_remaining < 0)
  1257. return;
  1258. /*
  1259. * If the local deadline has passed we have to consider the
  1260. * possibility that our sched_clock is 'fast' and the global deadline
  1261. * has not truly expired.
  1262. *
  1263. * Fortunately we can check determine whether this the case by checking
  1264. * whether the global deadline has advanced.
  1265. */
  1266. if ((s64)(cfs_rq->runtime_expires - cfs_b->runtime_expires) >= 0) {
  1267. /* extend local deadline, drift is bounded above by 2 ticks */
  1268. cfs_rq->runtime_expires += TICK_NSEC;
  1269. } else {
  1270. /* global deadline is ahead, expiration has passed */
  1271. cfs_rq->runtime_remaining = 0;
  1272. }
  1273. }
  1274. static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
  1275. unsigned long delta_exec)
  1276. {
  1277. /* dock delta_exec before expiring quota (as it could span periods) */
  1278. cfs_rq->runtime_remaining -= delta_exec;
  1279. expire_cfs_rq_runtime(cfs_rq);
  1280. if (likely(cfs_rq->runtime_remaining > 0))
  1281. return;
  1282. /*
  1283. * if we're unable to extend our runtime we resched so that the active
  1284. * hierarchy can be throttled
  1285. */
  1286. if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr))
  1287. resched_task(rq_of(cfs_rq)->curr);
  1288. }
  1289. static __always_inline
  1290. void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec)
  1291. {
  1292. if (!cfs_bandwidth_used() || !cfs_rq->runtime_enabled)
  1293. return;
  1294. __account_cfs_rq_runtime(cfs_rq, delta_exec);
  1295. }
  1296. static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
  1297. {
  1298. return cfs_bandwidth_used() && cfs_rq->throttled;
  1299. }
  1300. /* check whether cfs_rq, or any parent, is throttled */
  1301. static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
  1302. {
  1303. return cfs_bandwidth_used() && cfs_rq->throttle_count;
  1304. }
  1305. /*
  1306. * Ensure that neither of the group entities corresponding to src_cpu or
  1307. * dest_cpu are members of a throttled hierarchy when performing group
  1308. * load-balance operations.
  1309. */
  1310. static inline int throttled_lb_pair(struct task_group *tg,
  1311. int src_cpu, int dest_cpu)
  1312. {
  1313. struct cfs_rq *src_cfs_rq, *dest_cfs_rq;
  1314. src_cfs_rq = tg->cfs_rq[src_cpu];
  1315. dest_cfs_rq = tg->cfs_rq[dest_cpu];
  1316. return throttled_hierarchy(src_cfs_rq) ||
  1317. throttled_hierarchy(dest_cfs_rq);
  1318. }
  1319. /* updated child weight may affect parent so we have to do this bottom up */
  1320. static int tg_unthrottle_up(struct task_group *tg, void *data)
  1321. {
  1322. struct rq *rq = data;
  1323. struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
  1324. cfs_rq->throttle_count--;
  1325. #ifdef CONFIG_SMP
  1326. if (!cfs_rq->throttle_count) {
  1327. u64 delta = rq->clock_task - cfs_rq->load_stamp;
  1328. /* leaving throttled state, advance shares averaging windows */
  1329. cfs_rq->load_stamp += delta;
  1330. cfs_rq->load_last += delta;
  1331. /* update entity weight now that we are on_rq again */
  1332. update_cfs_shares(cfs_rq);
  1333. }
  1334. #endif
  1335. return 0;
  1336. }
  1337. static int tg_throttle_down(struct task_group *tg, void *data)
  1338. {
  1339. struct rq *rq = data;
  1340. struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
  1341. /* group is entering throttled state, record last load */
  1342. if (!cfs_rq->throttle_count)
  1343. update_cfs_load(cfs_rq, 0);
  1344. cfs_rq->throttle_count++;
  1345. return 0;
  1346. }
  1347. static void throttle_cfs_rq(struct cfs_rq *cfs_rq)
  1348. {
  1349. struct rq *rq = rq_of(cfs_rq);
  1350. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
  1351. struct sched_entity *se;
  1352. long task_delta, dequeue = 1;
  1353. se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
  1354. /* account load preceding throttle */
  1355. rcu_read_lock();
  1356. walk_tg_tree_from(cfs_rq->tg, tg_throttle_down, tg_nop, (void *)rq);
  1357. rcu_read_unlock();
  1358. task_delta = cfs_rq->h_nr_running;
  1359. for_each_sched_entity(se) {
  1360. struct cfs_rq *qcfs_rq = cfs_rq_of(se);
  1361. /* throttled entity or throttle-on-deactivate */
  1362. if (!se->on_rq)
  1363. break;
  1364. if (dequeue)
  1365. dequeue_entity(qcfs_rq, se, DEQUEUE_SLEEP);
  1366. qcfs_rq->h_nr_running -= task_delta;
  1367. if (qcfs_rq->load.weight)
  1368. dequeue = 0;
  1369. }
  1370. if (!se)
  1371. rq->nr_running -= task_delta;
  1372. cfs_rq->throttled = 1;
  1373. cfs_rq->throttled_timestamp = rq->clock;
  1374. raw_spin_lock(&cfs_b->lock);
  1375. list_add_tail_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq);
  1376. raw_spin_unlock(&cfs_b->lock);
  1377. }
  1378. void unthrottle_cfs_rq(struct cfs_rq *cfs_rq)
  1379. {
  1380. struct rq *rq = rq_of(cfs_rq);
  1381. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
  1382. struct sched_entity *se;
  1383. int enqueue = 1;
  1384. long task_delta;
  1385. se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
  1386. cfs_rq->throttled = 0;
  1387. raw_spin_lock(&cfs_b->lock);
  1388. cfs_b->throttled_time += rq->clock - cfs_rq->throttled_timestamp;
  1389. list_del_rcu(&cfs_rq->throttled_list);
  1390. raw_spin_unlock(&cfs_b->lock);
  1391. cfs_rq->throttled_timestamp = 0;
  1392. update_rq_clock(rq);
  1393. /* update hierarchical throttle state */
  1394. walk_tg_tree_from(cfs_rq->tg, tg_nop, tg_unthrottle_up, (void *)rq);
  1395. if (!cfs_rq->load.weight)
  1396. return;
  1397. task_delta = cfs_rq->h_nr_running;
  1398. for_each_sched_entity(se) {
  1399. if (se->on_rq)
  1400. enqueue = 0;
  1401. cfs_rq = cfs_rq_of(se);
  1402. if (enqueue)
  1403. enqueue_entity(cfs_rq, se, ENQUEUE_WAKEUP);
  1404. cfs_rq->h_nr_running += task_delta;
  1405. if (cfs_rq_throttled(cfs_rq))
  1406. break;
  1407. }
  1408. if (!se)
  1409. rq->nr_running += task_delta;
  1410. /* determine whether we need to wake up potentially idle cpu */
  1411. if (rq->curr == rq->idle && rq->cfs.nr_running)
  1412. resched_task(rq->curr);
  1413. }
  1414. static u64 distribute_cfs_runtime(struct cfs_bandwidth *cfs_b,
  1415. u64 remaining, u64 expires)
  1416. {
  1417. struct cfs_rq *cfs_rq;
  1418. u64 runtime = remaining;
  1419. rcu_read_lock();
  1420. list_for_each_entry_rcu(cfs_rq, &cfs_b->throttled_cfs_rq,
  1421. throttled_list) {
  1422. struct rq *rq = rq_of(cfs_rq);
  1423. raw_spin_lock(&rq->lock);
  1424. if (!cfs_rq_throttled(cfs_rq))
  1425. goto next;
  1426. runtime = -cfs_rq->runtime_remaining + 1;
  1427. if (runtime > remaining)
  1428. runtime = remaining;
  1429. remaining -= runtime;
  1430. cfs_rq->runtime_remaining += runtime;
  1431. cfs_rq->runtime_expires = expires;
  1432. /* we check whether we're throttled above */
  1433. if (cfs_rq->runtime_remaining > 0)
  1434. unthrottle_cfs_rq(cfs_rq);
  1435. next:
  1436. raw_spin_unlock(&rq->lock);
  1437. if (!remaining)
  1438. break;
  1439. }
  1440. rcu_read_unlock();
  1441. return remaining;
  1442. }
  1443. /*
  1444. * Responsible for refilling a task_group's bandwidth and unthrottling its
  1445. * cfs_rqs as appropriate. If there has been no activity within the last
  1446. * period the timer is deactivated until scheduling resumes; cfs_b->idle is
  1447. * used to track this state.
  1448. */
  1449. static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun)
  1450. {
  1451. u64 runtime, runtime_expires;
  1452. int idle = 1, throttled;
  1453. raw_spin_lock(&cfs_b->lock);
  1454. /* no need to continue the timer with no bandwidth constraint */
  1455. if (cfs_b->quota == RUNTIME_INF)
  1456. goto out_unlock;
  1457. throttled = !list_empty(&cfs_b->throttled_cfs_rq);
  1458. /* idle depends on !throttled (for the case of a large deficit) */
  1459. idle = cfs_b->idle && !throttled;
  1460. cfs_b->nr_periods += overrun;
  1461. /* if we're going inactive then everything else can be deferred */
  1462. if (idle)
  1463. goto out_unlock;
  1464. __refill_cfs_bandwidth_runtime(cfs_b);
  1465. if (!throttled) {
  1466. /* mark as potentially idle for the upcoming period */
  1467. cfs_b->idle = 1;
  1468. goto out_unlock;
  1469. }
  1470. /* account preceding periods in which throttling occurred */
  1471. cfs_b->nr_throttled += overrun;
  1472. /*
  1473. * There are throttled entities so we must first use the new bandwidth
  1474. * to unthrottle them before making it generally available. This
  1475. * ensures that all existing debts will be paid before a new cfs_rq is
  1476. * allowed to run.
  1477. */
  1478. runtime = cfs_b->runtime;
  1479. runtime_expires = cfs_b->runtime_expires;
  1480. cfs_b->runtime = 0;
  1481. /*
  1482. * This check is repeated as we are holding onto the new bandwidth
  1483. * while we unthrottle. This can potentially race with an unthrottled
  1484. * group trying to acquire new bandwidth from the global pool.
  1485. */
  1486. while (throttled && runtime > 0) {
  1487. raw_spin_unlock(&cfs_b->lock);
  1488. /* we can't nest cfs_b->lock while distributing bandwidth */
  1489. runtime = distribute_cfs_runtime(cfs_b, runtime,
  1490. runtime_expires);
  1491. raw_spin_lock(&cfs_b->lock);
  1492. throttled = !list_empty(&cfs_b->throttled_cfs_rq);
  1493. }
  1494. /* return (any) remaining runtime */
  1495. cfs_b->runtime = runtime;
  1496. /*
  1497. * While we are ensured activity in the period following an
  1498. * unthrottle, this also covers the case in which the new bandwidth is
  1499. * insufficient to cover the existing bandwidth deficit. (Forcing the
  1500. * timer to remain active while there are any throttled entities.)
  1501. */
  1502. cfs_b->idle = 0;
  1503. out_unlock:
  1504. if (idle)
  1505. cfs_b->timer_active = 0;
  1506. raw_spin_unlock(&cfs_b->lock);
  1507. return idle;
  1508. }
  1509. /* a cfs_rq won't donate quota below this amount */
  1510. static const u64 min_cfs_rq_runtime = 1 * NSEC_PER_MSEC;
  1511. /* minimum remaining period time to redistribute slack quota */
  1512. static const u64 min_bandwidth_expiration = 2 * NSEC_PER_MSEC;
  1513. /* how long we wait to gather additional slack before distributing */
  1514. static const u64 cfs_bandwidth_slack_period = 5 * NSEC_PER_MSEC;
  1515. /* are we near the end of the current quota period? */
  1516. static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire)
  1517. {
  1518. struct hrtimer *refresh_timer = &cfs_b->period_timer;
  1519. u64 remaining;
  1520. /* if the call-back is running a quota refresh is already occurring */
  1521. if (hrtimer_callback_running(refresh_timer))
  1522. return 1;
  1523. /* is a quota refresh about to occur? */
  1524. remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer));
  1525. if (remaining < min_expire)
  1526. return 1;
  1527. return 0;
  1528. }
  1529. static void start_cfs_slack_bandwidth(struct cfs_bandwidth *cfs_b)
  1530. {
  1531. u64 min_left = cfs_bandwidth_slack_period + min_bandwidth_expiration;
  1532. /* if there's a quota refresh soon don't bother with slack */
  1533. if (runtime_refresh_within(cfs_b, min_left))
  1534. return;
  1535. start_bandwidth_timer(&cfs_b->slack_timer,
  1536. ns_to_ktime(cfs_bandwidth_slack_period));
  1537. }
  1538. /* we know any runtime found here is valid as update_curr() precedes return */
  1539. static void __return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1540. {
  1541. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
  1542. s64 slack_runtime = cfs_rq->runtime_remaining - min_cfs_rq_runtime;
  1543. if (slack_runtime <= 0)
  1544. return;
  1545. raw_spin_lock(&cfs_b->lock);
  1546. if (cfs_b->quota != RUNTIME_INF &&
  1547. cfs_rq->runtime_expires == cfs_b->runtime_expires) {
  1548. cfs_b->runtime += slack_runtime;
  1549. /* we are under rq->lock, defer unthrottling using a timer */
  1550. if (cfs_b->runtime > sched_cfs_bandwidth_slice() &&
  1551. !list_empty(&cfs_b->throttled_cfs_rq))
  1552. start_cfs_slack_bandwidth(cfs_b);
  1553. }
  1554. raw_spin_unlock(&cfs_b->lock);
  1555. /* even if it's not valid for return we don't want to try again */
  1556. cfs_rq->runtime_remaining -= slack_runtime;
  1557. }
  1558. static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1559. {
  1560. if (!cfs_bandwidth_used())
  1561. return;
  1562. if (!cfs_rq->runtime_enabled || cfs_rq->nr_running)
  1563. return;
  1564. __return_cfs_rq_runtime(cfs_rq);
  1565. }
  1566. /*
  1567. * This is done with a timer (instead of inline with bandwidth return) since
  1568. * it's necessary to juggle rq->locks to unthrottle their respective cfs_rqs.
  1569. */
  1570. static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b)
  1571. {
  1572. u64 runtime = 0, slice = sched_cfs_bandwidth_slice();
  1573. u64 expires;
  1574. /* confirm we're still not at a refresh boundary */
  1575. if (runtime_refresh_within(cfs_b, min_bandwidth_expiration))
  1576. return;
  1577. raw_spin_lock(&cfs_b->lock);
  1578. if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice) {
  1579. runtime = cfs_b->runtime;
  1580. cfs_b->runtime = 0;
  1581. }
  1582. expires = cfs_b->runtime_expires;
  1583. raw_spin_unlock(&cfs_b->lock);
  1584. if (!runtime)
  1585. return;
  1586. runtime = distribute_cfs_runtime(cfs_b, runtime, expires);
  1587. raw_spin_lock(&cfs_b->lock);
  1588. if (expires == cfs_b->runtime_expires)
  1589. cfs_b->runtime = runtime;
  1590. raw_spin_unlock(&cfs_b->lock);
  1591. }
  1592. /*
  1593. * When a group wakes up we want to make sure that its quota is not already
  1594. * expired/exceeded, otherwise it may be allowed to steal additional ticks of
  1595. * runtime as update_curr() throttling can not not trigger until it's on-rq.
  1596. */
  1597. static void check_enqueue_throttle(struct cfs_rq *cfs_rq)
  1598. {
  1599. if (!cfs_bandwidth_used())
  1600. return;
  1601. /* an active group must be handled by the update_curr()->put() path */
  1602. if (!cfs_rq->runtime_enabled || cfs_rq->curr)
  1603. return;
  1604. /* ensure the group is not already throttled */
  1605. if (cfs_rq_throttled(cfs_rq))
  1606. return;
  1607. /* update runtime allocation */
  1608. account_cfs_rq_runtime(cfs_rq, 0);
  1609. if (cfs_rq->runtime_remaining <= 0)
  1610. throttle_cfs_rq(cfs_rq);
  1611. }
  1612. /* conditionally throttle active cfs_rq's from put_prev_entity() */
  1613. static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1614. {
  1615. if (!cfs_bandwidth_used())
  1616. return;
  1617. if (likely(!cfs_rq->runtime_enabled || cfs_rq->runtime_remaining > 0))
  1618. return;
  1619. /*
  1620. * it's possible for a throttled entity to be forced into a running
  1621. * state (e.g. set_curr_task), in this case we're finished.
  1622. */
  1623. if (cfs_rq_throttled(cfs_rq))
  1624. return;
  1625. throttle_cfs_rq(cfs_rq);
  1626. }
  1627. static inline u64 default_cfs_period(void);
  1628. static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun);
  1629. static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b);
  1630. static enum hrtimer_restart sched_cfs_slack_timer(struct hrtimer *timer)
  1631. {
  1632. struct cfs_bandwidth *cfs_b =
  1633. container_of(timer, struct cfs_bandwidth, slack_timer);
  1634. do_sched_cfs_slack_timer(cfs_b);
  1635. return HRTIMER_NORESTART;
  1636. }
  1637. static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer)
  1638. {
  1639. struct cfs_bandwidth *cfs_b =
  1640. container_of(timer, struct cfs_bandwidth, period_timer);
  1641. ktime_t now;
  1642. int overrun;
  1643. int idle = 0;
  1644. for (;;) {
  1645. now = hrtimer_cb_get_time(timer);
  1646. overrun = hrtimer_forward(timer, now, cfs_b->period);
  1647. if (!overrun)
  1648. break;
  1649. idle = do_sched_cfs_period_timer(cfs_b, overrun);
  1650. }
  1651. return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
  1652. }
  1653. void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
  1654. {
  1655. raw_spin_lock_init(&cfs_b->lock);
  1656. cfs_b->runtime = 0;
  1657. cfs_b->quota = RUNTIME_INF;
  1658. cfs_b->period = ns_to_ktime(default_cfs_period());
  1659. INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
  1660. hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
  1661. cfs_b->period_timer.function = sched_cfs_period_timer;
  1662. hrtimer_init(&cfs_b->slack_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
  1663. cfs_b->slack_timer.function = sched_cfs_slack_timer;
  1664. }
  1665. static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
  1666. {
  1667. cfs_rq->runtime_enabled = 0;
  1668. INIT_LIST_HEAD(&cfs_rq->throttled_list);
  1669. }
  1670. /* requires cfs_b->lock, may release to reprogram timer */
  1671. void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
  1672. {
  1673. /*
  1674. * The timer may be active because we're trying to set a new bandwidth
  1675. * period or because we're racing with the tear-down path
  1676. * (timer_active==0 becomes visible before the hrtimer call-back
  1677. * terminates). In either case we ensure that it's re-programmed
  1678. */
  1679. while (unlikely(hrtimer_active(&cfs_b->period_timer))) {
  1680. raw_spin_unlock(&cfs_b->lock);
  1681. /* ensure cfs_b->lock is available while we wait */
  1682. hrtimer_cancel(&cfs_b->period_timer);
  1683. raw_spin_lock(&cfs_b->lock);
  1684. /* if someone else restarted the timer then we're done */
  1685. if (cfs_b->timer_active)
  1686. return;
  1687. }
  1688. cfs_b->timer_active = 1;
  1689. start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period);
  1690. }
  1691. static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
  1692. {
  1693. hrtimer_cancel(&cfs_b->period_timer);
  1694. hrtimer_cancel(&cfs_b->slack_timer);
  1695. }
  1696. void unthrottle_offline_cfs_rqs(struct rq *rq)
  1697. {
  1698. struct cfs_rq *cfs_rq;
  1699. for_each_leaf_cfs_rq(rq, cfs_rq) {
  1700. struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
  1701. if (!cfs_rq->runtime_enabled)
  1702. continue;
  1703. /*
  1704. * clock_task is not advancing so we just need to make sure
  1705. * there's some valid quota amount
  1706. */
  1707. cfs_rq->runtime_remaining = cfs_b->quota;
  1708. if (cfs_rq_throttled(cfs_rq))
  1709. unthrottle_cfs_rq(cfs_rq);
  1710. }
  1711. }
  1712. #else /* CONFIG_CFS_BANDWIDTH */
  1713. static __always_inline
  1714. void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec) {}
  1715. static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
  1716. static void check_enqueue_throttle(struct cfs_rq *cfs_rq) {}
  1717. static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
  1718. static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
  1719. {
  1720. return 0;
  1721. }
  1722. static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
  1723. {
  1724. return 0;
  1725. }
  1726. static inline int throttled_lb_pair(struct task_group *tg,
  1727. int src_cpu, int dest_cpu)
  1728. {
  1729. return 0;
  1730. }
  1731. void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
  1732. #ifdef CONFIG_FAIR_GROUP_SCHED
  1733. static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
  1734. #endif
  1735. static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
  1736. {
  1737. return NULL;
  1738. }
  1739. static inline void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
  1740. void unthrottle_offline_cfs_rqs(struct rq *rq) {}
  1741. #endif /* CONFIG_CFS_BANDWIDTH */
  1742. /**************************************************
  1743. * CFS operations on tasks:
  1744. */
  1745. #ifdef CONFIG_SCHED_HRTICK
  1746. static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
  1747. {
  1748. struct sched_entity *se = &p->se;
  1749. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  1750. WARN_ON(task_rq(p) != rq);
  1751. if (cfs_rq->nr_running > 1) {
  1752. u64 slice = sched_slice(cfs_rq, se);
  1753. u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime;
  1754. s64 delta = slice - ran;
  1755. if (delta < 0) {
  1756. if (rq->curr == p)
  1757. resched_task(p);
  1758. return;
  1759. }
  1760. /*
  1761. * Don't schedule slices shorter than 10000ns, that just
  1762. * doesn't make sense. Rely on vruntime for fairness.
  1763. */
  1764. if (rq->curr != p)
  1765. delta = max_t(s64, 10000LL, delta);
  1766. hrtick_start(rq, delta);
  1767. }
  1768. }
  1769. /*
  1770. * called from enqueue/dequeue and updates the hrtick when the
  1771. * current task is from our class and nr_running is low enough
  1772. * to matter.
  1773. */
  1774. static void hrtick_update(struct rq *rq)
  1775. {
  1776. struct task_struct *curr = rq->curr;
  1777. if (!hrtick_enabled(rq) || curr->sched_class != &fair_sched_class)
  1778. return;
  1779. if (cfs_rq_of(&curr->se)->nr_running < sched_nr_latency)
  1780. hrtick_start_fair(rq, curr);
  1781. }
  1782. #else /* !CONFIG_SCHED_HRTICK */
  1783. static inline void
  1784. hrtick_start_fair(struct rq *rq, struct task_struct *p)
  1785. {
  1786. }
  1787. static inline void hrtick_update(struct rq *rq)
  1788. {
  1789. }
  1790. #endif
  1791. /*
  1792. * The enqueue_task method is called before nr_running is
  1793. * increased. Here we update the fair scheduling stats and
  1794. * then put the task into the rbtree:
  1795. */
  1796. static void
  1797. enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
  1798. {
  1799. struct cfs_rq *cfs_rq;
  1800. struct sched_entity *se = &p->se;
  1801. for_each_sched_entity(se) {
  1802. if (se->on_rq)
  1803. break;
  1804. cfs_rq = cfs_rq_of(se);
  1805. enqueue_entity(cfs_rq, se, flags);
  1806. /*
  1807. * end evaluation on encountering a throttled cfs_rq
  1808. *
  1809. * note: in the case of encountering a throttled cfs_rq we will
  1810. * post the final h_nr_running increment below.
  1811. */
  1812. if (cfs_rq_throttled(cfs_rq))
  1813. break;
  1814. cfs_rq->h_nr_running++;
  1815. flags = ENQUEUE_WAKEUP;
  1816. }
  1817. for_each_sched_entity(se) {
  1818. cfs_rq = cfs_rq_of(se);
  1819. cfs_rq->h_nr_running++;
  1820. if (cfs_rq_throttled(cfs_rq))
  1821. break;
  1822. update_cfs_load(cfs_rq, 0);
  1823. update_cfs_shares(cfs_rq);
  1824. }
  1825. if (!se)
  1826. inc_nr_running(rq);
  1827. hrtick_update(rq);
  1828. }
  1829. static void set_next_buddy(struct sched_entity *se);
  1830. /*
  1831. * The dequeue_task method is called before nr_running is
  1832. * decreased. We remove the task from the rbtree and
  1833. * update the fair scheduling stats:
  1834. */
  1835. static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
  1836. {
  1837. struct cfs_rq *cfs_rq;
  1838. struct sched_entity *se = &p->se;
  1839. int task_sleep = flags & DEQUEUE_SLEEP;
  1840. for_each_sched_entity(se) {
  1841. cfs_rq = cfs_rq_of(se);
  1842. dequeue_entity(cfs_rq, se, flags);
  1843. /*
  1844. * end evaluation on encountering a throttled cfs_rq
  1845. *
  1846. * note: in the case of encountering a throttled cfs_rq we will
  1847. * post the final h_nr_running decrement below.
  1848. */
  1849. if (cfs_rq_throttled(cfs_rq))
  1850. break;
  1851. cfs_rq->h_nr_running--;
  1852. /* Don't dequeue parent if it has other entities besides us */
  1853. if (cfs_rq->load.weight) {
  1854. /*
  1855. * Bias pick_next to pick a task from this cfs_rq, as
  1856. * p is sleeping when it is within its sched_slice.
  1857. */
  1858. if (task_sleep && parent_entity(se))
  1859. set_next_buddy(parent_entity(se));
  1860. /* avoid re-evaluating load for this entity */
  1861. se = parent_entity(se);
  1862. break;
  1863. }
  1864. flags |= DEQUEUE_SLEEP;
  1865. }
  1866. for_each_sched_entity(se) {
  1867. cfs_rq = cfs_rq_of(se);
  1868. cfs_rq->h_nr_running--;
  1869. if (cfs_rq_throttled(cfs_rq))
  1870. break;
  1871. update_cfs_load(cfs_rq, 0);
  1872. update_cfs_shares(cfs_rq);
  1873. }
  1874. if (!se)
  1875. dec_nr_running(rq);
  1876. hrtick_update(rq);
  1877. }
  1878. #ifdef CONFIG_SMP
  1879. /* Used instead of source_load when we know the type == 0 */
  1880. static unsigned long weighted_cpuload(const int cpu)
  1881. {
  1882. return cpu_rq(cpu)->load.weight;
  1883. }
  1884. /*
  1885. * Return a low guess at the load of a migration-source cpu weighted
  1886. * according to the scheduling class and "nice" value.
  1887. *
  1888. * We want to under-estimate the load of migration sources, to
  1889. * balance conservatively.
  1890. */
  1891. static unsigned long source_load(int cpu, int type)
  1892. {
  1893. struct rq *rq = cpu_rq(cpu);
  1894. unsigned long total = weighted_cpuload(cpu);
  1895. if (type == 0 || !sched_feat(LB_BIAS))
  1896. return total;
  1897. return min(rq->cpu_load[type-1], total);
  1898. }
  1899. /*
  1900. * Return a high guess at the load of a migration-target cpu weighted
  1901. * according to the scheduling class and "nice" value.
  1902. */
  1903. static unsigned long target_load(int cpu, int type)
  1904. {
  1905. struct rq *rq = cpu_rq(cpu);
  1906. unsigned long total = weighted_cpuload(cpu);
  1907. if (type == 0 || !sched_feat(LB_BIAS))
  1908. return total;
  1909. return max(rq->cpu_load[type-1], total);
  1910. }
  1911. static unsigned long power_of(int cpu)
  1912. {
  1913. return cpu_rq(cpu)->cpu_power;
  1914. }
  1915. static unsigned long cpu_avg_load_per_task(int cpu)
  1916. {
  1917. struct rq *rq = cpu_rq(cpu);
  1918. unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
  1919. if (nr_running)
  1920. return rq->load.weight / nr_running;
  1921. return 0;
  1922. }
  1923. static void task_waking_fair(struct task_struct *p)
  1924. {
  1925. struct sched_entity *se = &p->se;
  1926. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  1927. u64 min_vruntime;
  1928. #ifndef CONFIG_64BIT
  1929. u64 min_vruntime_copy;
  1930. do {
  1931. min_vruntime_copy = cfs_rq->min_vruntime_copy;
  1932. smp_rmb();
  1933. min_vruntime = cfs_rq->min_vruntime;
  1934. } while (min_vruntime != min_vruntime_copy);
  1935. #else
  1936. min_vruntime = cfs_rq->min_vruntime;
  1937. #endif
  1938. se->vruntime -= min_vruntime;
  1939. }
  1940. #ifdef CONFIG_FAIR_GROUP_SCHED
  1941. /*
  1942. * effective_load() calculates the load change as seen from the root_task_group
  1943. *
  1944. * Adding load to a group doesn't make a group heavier, but can cause movement
  1945. * of group shares between cpus. Assuming the shares were perfectly aligned one
  1946. * can calculate the shift in shares.
  1947. *
  1948. * Calculate the effective load difference if @wl is added (subtracted) to @tg
  1949. * on this @cpu and results in a total addition (subtraction) of @wg to the
  1950. * total group weight.
  1951. *
  1952. * Given a runqueue weight distribution (rw_i) we can compute a shares
  1953. * distribution (s_i) using:
  1954. *
  1955. * s_i = rw_i / \Sum rw_j (1)
  1956. *
  1957. * Suppose we have 4 CPUs and our @tg is a direct child of the root group and
  1958. * has 7 equal weight tasks, distributed as below (rw_i), with the resulting
  1959. * shares distribution (s_i):
  1960. *
  1961. * rw_i = { 2, 4, 1, 0 }
  1962. * s_i = { 2/7, 4/7, 1/7, 0 }
  1963. *
  1964. * As per wake_affine() we're interested in the load of two CPUs (the CPU the
  1965. * task used to run on and the CPU the waker is running on), we need to
  1966. * compute the effect of waking a task on either CPU and, in case of a sync
  1967. * wakeup, compute the effect of the current task going to sleep.
  1968. *
  1969. * So for a change of @wl to the local @cpu with an overall group weight change
  1970. * of @wl we can compute the new shares distribution (s'_i) using:
  1971. *
  1972. * s'_i = (rw_i + @wl) / (@wg + \Sum rw_j) (2)
  1973. *
  1974. * Suppose we're interested in CPUs 0 and 1, and want to compute the load
  1975. * differences in waking a task to CPU 0. The additional task changes the
  1976. * weight and shares distributions like:
  1977. *
  1978. * rw'_i = { 3, 4, 1, 0 }
  1979. * s'_i = { 3/8, 4/8, 1/8, 0 }
  1980. *
  1981. * We can then compute the difference in effective weight by using:
  1982. *
  1983. * dw_i = S * (s'_i - s_i) (3)
  1984. *
  1985. * Where 'S' is the group weight as seen by its parent.
  1986. *
  1987. * Therefore the effective change in loads on CPU 0 would be 5/56 (3/8 - 2/7)
  1988. * times the weight of the group. The effect on CPU 1 would be -4/56 (4/8 -
  1989. * 4/7) times the weight of the group.
  1990. */
  1991. static long effective_load(struct task_group *tg, int cpu, long wl, long wg)
  1992. {
  1993. struct sched_entity *se = tg->se[cpu];
  1994. if (!tg->parent) /* the trivial, non-cgroup case */
  1995. return wl;
  1996. for_each_sched_entity(se) {
  1997. long w, W;
  1998. tg = se->my_q->tg;
  1999. /*
  2000. * W = @wg + \Sum rw_j
  2001. */
  2002. W = wg + calc_tg_weight(tg, se->my_q);
  2003. /*
  2004. * w = rw_i + @wl
  2005. */
  2006. w = se->my_q->load.weight + wl;
  2007. /*
  2008. * wl = S * s'_i; see (2)
  2009. */
  2010. if (W > 0 && w < W)
  2011. wl = (w * tg->shares) / W;
  2012. else
  2013. wl = tg->shares;
  2014. /*
  2015. * Per the above, wl is the new se->load.weight value; since
  2016. * those are clipped to [MIN_SHARES, ...) do so now. See
  2017. * calc_cfs_shares().
  2018. */
  2019. if (wl < MIN_SHARES)
  2020. wl = MIN_SHARES;
  2021. /*
  2022. * wl = dw_i = S * (s'_i - s_i); see (3)
  2023. */
  2024. wl -= se->load.weight;
  2025. /*
  2026. * Recursively apply this logic to all parent groups to compute
  2027. * the final effective load change on the root group. Since
  2028. * only the @tg group gets extra weight, all parent groups can
  2029. * only redistribute existing shares. @wl is the shift in shares
  2030. * resulting from this level per the above.
  2031. */
  2032. wg = 0;
  2033. }
  2034. return wl;
  2035. }
  2036. #else
  2037. static inline unsigned long effective_load(struct task_group *tg, int cpu,
  2038. unsigned long wl, unsigned long wg)
  2039. {
  2040. return wl;
  2041. }
  2042. #endif
  2043. static int wake_affine(struct sched_domain *sd, struct task_struct *p, int sync)
  2044. {
  2045. s64 this_load, load;
  2046. int idx, this_cpu, prev_cpu;
  2047. unsigned long tl_per_task;
  2048. struct task_group *tg;
  2049. unsigned long weight;
  2050. int balanced;
  2051. idx = sd->wake_idx;
  2052. this_cpu = smp_processor_id();
  2053. prev_cpu = task_cpu(p);
  2054. load = source_load(prev_cpu, idx);
  2055. this_load = target_load(this_cpu, idx);
  2056. /*
  2057. * If sync wakeup then subtract the (maximum possible)
  2058. * effect of the currently running task from the load
  2059. * of the current CPU:
  2060. */
  2061. if (sync) {
  2062. tg = task_group(current);
  2063. weight = current->se.load.weight;
  2064. this_load += effective_load(tg, this_cpu, -weight, -weight);
  2065. load += effective_load(tg, prev_cpu, 0, -weight);
  2066. }
  2067. tg = task_group(p);
  2068. weight = p->se.load.weight;
  2069. /*
  2070. * In low-load situations, where prev_cpu is idle and this_cpu is idle
  2071. * due to the sync cause above having dropped this_load to 0, we'll
  2072. * always have an imbalance, but there's really nothing you can do
  2073. * about that, so that's good too.
  2074. *
  2075. * Otherwise check if either cpus are near enough in load to allow this
  2076. * task to be woken on this_cpu.
  2077. */
  2078. if (this_load > 0) {
  2079. s64 this_eff_load, prev_eff_load;
  2080. this_eff_load = 100;
  2081. this_eff_load *= power_of(prev_cpu);
  2082. this_eff_load *= this_load +
  2083. effective_load(tg, this_cpu, weight, weight);
  2084. prev_eff_load = 100 + (sd->imbalance_pct - 100) / 2;
  2085. prev_eff_load *= power_of(this_cpu);
  2086. prev_eff_load *= load + effective_load(tg, prev_cpu, 0, weight);
  2087. balanced = this_eff_load <= prev_eff_load;
  2088. } else
  2089. balanced = true;
  2090. /*
  2091. * If the currently running task will sleep within
  2092. * a reasonable amount of time then attract this newly
  2093. * woken task:
  2094. */
  2095. if (sync && balanced)
  2096. return 1;
  2097. schedstat_inc(p, se.statistics.nr_wakeups_affine_attempts);
  2098. tl_per_task = cpu_avg_load_per_task(this_cpu);
  2099. if (balanced ||
  2100. (this_load <= load &&
  2101. this_load + target_load(prev_cpu, idx) <= tl_per_task)) {
  2102. /*
  2103. * This domain has SD_WAKE_AFFINE and
  2104. * p is cache cold in this domain, and
  2105. * there is no bad imbalance.
  2106. */
  2107. schedstat_inc(sd, ttwu_move_affine);
  2108. schedstat_inc(p, se.statistics.nr_wakeups_affine);
  2109. return 1;
  2110. }
  2111. return 0;
  2112. }
  2113. /*
  2114. * find_idlest_group finds and returns the least busy CPU group within the
  2115. * domain.
  2116. */
  2117. static struct sched_group *
  2118. find_idlest_group(struct sched_domain *sd, struct task_struct *p,
  2119. int this_cpu, int load_idx)
  2120. {
  2121. struct sched_group *idlest = NULL, *group = sd->groups;
  2122. unsigned long min_load = ULONG_MAX, this_load = 0;
  2123. int imbalance = 100 + (sd->imbalance_pct-100)/2;
  2124. do {
  2125. unsigned long load, avg_load;
  2126. int local_group;
  2127. int i;
  2128. /* Skip over this group if it has no CPUs allowed */
  2129. if (!cpumask_intersects(sched_group_cpus(group),
  2130. tsk_cpus_allowed(p)))
  2131. continue;
  2132. local_group = cpumask_test_cpu(this_cpu,
  2133. sched_group_cpus(group));
  2134. /* Tally up the load of all CPUs in the group */
  2135. avg_load = 0;
  2136. for_each_cpu(i, sched_group_cpus(group)) {
  2137. /* Bias balancing toward cpus of our domain */
  2138. if (local_group)
  2139. load = source_load(i, load_idx);
  2140. else
  2141. load = target_load(i, load_idx);
  2142. avg_load += load;
  2143. }
  2144. /* Adjust by relative CPU power of the group */
  2145. avg_load = (avg_load * SCHED_POWER_SCALE) / group->sgp->power;
  2146. if (local_group) {
  2147. this_load = avg_load;
  2148. } else if (avg_load < min_load) {
  2149. min_load = avg_load;
  2150. idlest = group;
  2151. }
  2152. } while (group = group->next, group != sd->groups);
  2153. if (!idlest || 100*this_load < imbalance*min_load)
  2154. return NULL;
  2155. return idlest;
  2156. }
  2157. /*
  2158. * find_idlest_cpu - find the idlest cpu among the cpus in group.
  2159. */
  2160. static int
  2161. find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
  2162. {
  2163. unsigned long load, min_load = ULONG_MAX;
  2164. int idlest = -1;
  2165. int i;
  2166. /* Traverse only the allowed CPUs */
  2167. for_each_cpu_and(i, sched_group_cpus(group), tsk_cpus_allowed(p)) {
  2168. load = weighted_cpuload(i);
  2169. if (load < min_load || (load == min_load && i == this_cpu)) {
  2170. min_load = load;
  2171. idlest = i;
  2172. }
  2173. }
  2174. return idlest;
  2175. }
  2176. /*
  2177. * Try and locate an idle CPU in the sched_domain.
  2178. */
  2179. static int select_idle_sibling(struct task_struct *p, int target)
  2180. {
  2181. int cpu = smp_processor_id();
  2182. int prev_cpu = task_cpu(p);
  2183. struct sched_domain *sd;
  2184. struct sched_group *sg;
  2185. int i;
  2186. /*
  2187. * If the task is going to be woken-up on this cpu and if it is
  2188. * already idle, then it is the right target.
  2189. */
  2190. if (target == cpu && idle_cpu(cpu))
  2191. return cpu;
  2192. /*
  2193. * If the task is going to be woken-up on the cpu where it previously
  2194. * ran and if it is currently idle, then it the right target.
  2195. */
  2196. if (target == prev_cpu && idle_cpu(prev_cpu))
  2197. return prev_cpu;
  2198. /*
  2199. * Otherwise, iterate the domains and find an elegible idle cpu.
  2200. */
  2201. sd = rcu_dereference(per_cpu(sd_llc, target));
  2202. for_each_lower_domain(sd) {
  2203. sg = sd->groups;
  2204. do {
  2205. if (!cpumask_intersects(sched_group_cpus(sg),
  2206. tsk_cpus_allowed(p)))
  2207. goto next;
  2208. for_each_cpu(i, sched_group_cpus(sg)) {
  2209. if (!idle_cpu(i))
  2210. goto next;
  2211. }
  2212. target = cpumask_first_and(sched_group_cpus(sg),
  2213. tsk_cpus_allowed(p));
  2214. goto done;
  2215. next:
  2216. sg = sg->next;
  2217. } while (sg != sd->groups);
  2218. }
  2219. done:
  2220. return target;
  2221. }
  2222. /*
  2223. * sched_balance_self: balance the current task (running on cpu) in domains
  2224. * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
  2225. * SD_BALANCE_EXEC.
  2226. *
  2227. * Balance, ie. select the least loaded group.
  2228. *
  2229. * Returns the target CPU number, or the same CPU if no balancing is needed.
  2230. *
  2231. * preempt must be disabled.
  2232. */
  2233. static int
  2234. select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flags)
  2235. {
  2236. struct sched_domain *tmp, *affine_sd = NULL, *sd = NULL;
  2237. int cpu = smp_processor_id();
  2238. int prev_cpu = task_cpu(p);
  2239. int new_cpu = cpu;
  2240. int want_affine = 0;
  2241. int want_sd = 1;
  2242. int sync = wake_flags & WF_SYNC;
  2243. if (p->nr_cpus_allowed == 1)
  2244. return prev_cpu;
  2245. if (sd_flag & SD_BALANCE_WAKE) {
  2246. if (cpumask_test_cpu(cpu, tsk_cpus_allowed(p)))
  2247. want_affine = 1;
  2248. new_cpu = prev_cpu;
  2249. }
  2250. rcu_read_lock();
  2251. for_each_domain(cpu, tmp) {
  2252. if (!(tmp->flags & SD_LOAD_BALANCE))
  2253. continue;
  2254. /*
  2255. * If power savings logic is enabled for a domain, see if we
  2256. * are not overloaded, if so, don't balance wider.
  2257. */
  2258. if (tmp->flags & (SD_PREFER_LOCAL)) {
  2259. unsigned long power = 0;
  2260. unsigned long nr_running = 0;
  2261. unsigned long capacity;
  2262. int i;
  2263. for_each_cpu(i, sched_domain_span(tmp)) {
  2264. power += power_of(i);
  2265. nr_running += cpu_rq(i)->cfs.nr_running;
  2266. }
  2267. capacity = DIV_ROUND_CLOSEST(power, SCHED_POWER_SCALE);
  2268. if (nr_running < capacity)
  2269. want_sd = 0;
  2270. }
  2271. /*
  2272. * If both cpu and prev_cpu are part of this domain,
  2273. * cpu is a valid SD_WAKE_AFFINE target.
  2274. */
  2275. if (want_affine && (tmp->flags & SD_WAKE_AFFINE) &&
  2276. cpumask_test_cpu(prev_cpu, sched_domain_span(tmp))) {
  2277. affine_sd = tmp;
  2278. want_affine = 0;
  2279. }
  2280. if (!want_sd && !want_affine)
  2281. break;
  2282. if (!(tmp->flags & sd_flag))
  2283. continue;
  2284. if (want_sd)
  2285. sd = tmp;
  2286. }
  2287. if (affine_sd) {
  2288. if (cpu == prev_cpu || wake_affine(affine_sd, p, sync))
  2289. prev_cpu = cpu;
  2290. new_cpu = select_idle_sibling(p, prev_cpu);
  2291. goto unlock;
  2292. }
  2293. while (sd) {
  2294. int load_idx = sd->forkexec_idx;
  2295. struct sched_group *group;
  2296. int weight;
  2297. if (!(sd->flags & sd_flag)) {
  2298. sd = sd->child;
  2299. continue;
  2300. }
  2301. if (sd_flag & SD_BALANCE_WAKE)
  2302. load_idx = sd->wake_idx;
  2303. group = find_idlest_group(sd, p, cpu, load_idx);
  2304. if (!group) {
  2305. sd = sd->child;
  2306. continue;
  2307. }
  2308. new_cpu = find_idlest_cpu(group, p, cpu);
  2309. if (new_cpu == -1 || new_cpu == cpu) {
  2310. /* Now try balancing at a lower domain level of cpu */
  2311. sd = sd->child;
  2312. continue;
  2313. }
  2314. /* Now try balancing at a lower domain level of new_cpu */
  2315. cpu = new_cpu;
  2316. weight = sd->span_weight;
  2317. sd = NULL;
  2318. for_each_domain(cpu, tmp) {
  2319. if (weight <= tmp->span_weight)
  2320. break;
  2321. if (tmp->flags & sd_flag)
  2322. sd = tmp;
  2323. }
  2324. /* while loop will break here if sd == NULL */
  2325. }
  2326. unlock:
  2327. rcu_read_unlock();
  2328. return new_cpu;
  2329. }
  2330. #endif /* CONFIG_SMP */
  2331. static unsigned long
  2332. wakeup_gran(struct sched_entity *curr, struct sched_entity *se)
  2333. {
  2334. unsigned long gran = sysctl_sched_wakeup_granularity;
  2335. /*
  2336. * Since its curr running now, convert the gran from real-time
  2337. * to virtual-time in his units.
  2338. *
  2339. * By using 'se' instead of 'curr' we penalize light tasks, so
  2340. * they get preempted easier. That is, if 'se' < 'curr' then
  2341. * the resulting gran will be larger, therefore penalizing the
  2342. * lighter, if otoh 'se' > 'curr' then the resulting gran will
  2343. * be smaller, again penalizing the lighter task.
  2344. *
  2345. * This is especially important for buddies when the leftmost
  2346. * task is higher priority than the buddy.
  2347. */
  2348. return calc_delta_fair(gran, se);
  2349. }
  2350. /*
  2351. * Should 'se' preempt 'curr'.
  2352. *
  2353. * |s1
  2354. * |s2
  2355. * |s3
  2356. * g
  2357. * |<--->|c
  2358. *
  2359. * w(c, s1) = -1
  2360. * w(c, s2) = 0
  2361. * w(c, s3) = 1
  2362. *
  2363. */
  2364. static int
  2365. wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se)
  2366. {
  2367. s64 gran, vdiff = curr->vruntime - se->vruntime;
  2368. if (vdiff <= 0)
  2369. return -1;
  2370. gran = wakeup_gran(curr, se);
  2371. if (vdiff > gran)
  2372. return 1;
  2373. return 0;
  2374. }
  2375. static void set_last_buddy(struct sched_entity *se)
  2376. {
  2377. if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE))
  2378. return;
  2379. for_each_sched_entity(se)
  2380. cfs_rq_of(se)->last = se;
  2381. }
  2382. static void set_next_buddy(struct sched_entity *se)
  2383. {
  2384. if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE))
  2385. return;
  2386. for_each_sched_entity(se)
  2387. cfs_rq_of(se)->next = se;
  2388. }
  2389. static void set_skip_buddy(struct sched_entity *se)
  2390. {
  2391. for_each_sched_entity(se)
  2392. cfs_rq_of(se)->skip = se;
  2393. }
  2394. /*
  2395. * Preempt the current task with a newly woken task if needed:
  2396. */
  2397. static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
  2398. {
  2399. struct task_struct *curr = rq->curr;
  2400. struct sched_entity *se = &curr->se, *pse = &p->se;
  2401. struct cfs_rq *cfs_rq = task_cfs_rq(curr);
  2402. int scale = cfs_rq->nr_running >= sched_nr_latency;
  2403. int next_buddy_marked = 0;
  2404. if (unlikely(se == pse))
  2405. return;
  2406. /*
  2407. * This is possible from callers such as move_task(), in which we
  2408. * unconditionally check_prempt_curr() after an enqueue (which may have
  2409. * lead to a throttle). This both saves work and prevents false
  2410. * next-buddy nomination below.
  2411. */
  2412. if (unlikely(throttled_hierarchy(cfs_rq_of(pse))))
  2413. return;
  2414. if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK)) {
  2415. set_next_buddy(pse);
  2416. next_buddy_marked = 1;
  2417. }
  2418. /*
  2419. * We can come here with TIF_NEED_RESCHED already set from new task
  2420. * wake up path.
  2421. *
  2422. * Note: this also catches the edge-case of curr being in a throttled
  2423. * group (e.g. via set_curr_task), since update_curr() (in the
  2424. * enqueue of curr) will have resulted in resched being set. This
  2425. * prevents us from potentially nominating it as a false LAST_BUDDY
  2426. * below.
  2427. */
  2428. if (test_tsk_need_resched(curr))
  2429. return;
  2430. /* Idle tasks are by definition preempted by non-idle tasks. */
  2431. if (unlikely(curr->policy == SCHED_IDLE) &&
  2432. likely(p->policy != SCHED_IDLE))
  2433. goto preempt;
  2434. /*
  2435. * Batch and idle tasks do not preempt non-idle tasks (their preemption
  2436. * is driven by the tick):
  2437. */
  2438. if (unlikely(p->policy != SCHED_NORMAL))
  2439. return;
  2440. find_matching_se(&se, &pse);
  2441. update_curr(cfs_rq_of(se));
  2442. BUG_ON(!pse);
  2443. if (wakeup_preempt_entity(se, pse) == 1) {
  2444. /*
  2445. * Bias pick_next to pick the sched entity that is
  2446. * triggering this preemption.
  2447. */
  2448. if (!next_buddy_marked)
  2449. set_next_buddy(pse);
  2450. goto preempt;
  2451. }
  2452. return;
  2453. preempt:
  2454. resched_task(curr);
  2455. /*
  2456. * Only set the backward buddy when the current task is still
  2457. * on the rq. This can happen when a wakeup gets interleaved
  2458. * with schedule on the ->pre_schedule() or idle_balance()
  2459. * point, either of which can * drop the rq lock.
  2460. *
  2461. * Also, during early boot the idle thread is in the fair class,
  2462. * for obvious reasons its a bad idea to schedule back to it.
  2463. */
  2464. if (unlikely(!se->on_rq || curr == rq->idle))
  2465. return;
  2466. if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se))
  2467. set_last_buddy(se);
  2468. }
  2469. static struct task_struct *pick_next_task_fair(struct rq *rq)
  2470. {
  2471. struct task_struct *p;
  2472. struct cfs_rq *cfs_rq = &rq->cfs;
  2473. struct sched_entity *se;
  2474. if (!cfs_rq->nr_running)
  2475. return NULL;
  2476. do {
  2477. se = pick_next_entity(cfs_rq);
  2478. set_next_entity(cfs_rq, se);
  2479. cfs_rq = group_cfs_rq(se);
  2480. } while (cfs_rq);
  2481. p = task_of(se);
  2482. if (hrtick_enabled(rq))
  2483. hrtick_start_fair(rq, p);
  2484. return p;
  2485. }
  2486. /*
  2487. * Account for a descheduled task:
  2488. */
  2489. static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
  2490. {
  2491. struct sched_entity *se = &prev->se;
  2492. struct cfs_rq *cfs_rq;
  2493. for_each_sched_entity(se) {
  2494. cfs_rq = cfs_rq_of(se);
  2495. put_prev_entity(cfs_rq, se);
  2496. }
  2497. }
  2498. /*
  2499. * sched_yield() is very simple
  2500. *
  2501. * The magic of dealing with the ->skip buddy is in pick_next_entity.
  2502. */
  2503. static void yield_task_fair(struct rq *rq)
  2504. {
  2505. struct task_struct *curr = rq->curr;
  2506. struct cfs_rq *cfs_rq = task_cfs_rq(curr);
  2507. struct sched_entity *se = &curr->se;
  2508. /*
  2509. * Are we the only task in the tree?
  2510. */
  2511. if (unlikely(rq->nr_running == 1))
  2512. return;
  2513. clear_buddies(cfs_rq, se);
  2514. if (curr->policy != SCHED_BATCH) {
  2515. update_rq_clock(rq);
  2516. /*
  2517. * Update run-time statistics of the 'current'.
  2518. */
  2519. update_curr(cfs_rq);
  2520. /*
  2521. * Tell update_rq_clock() that we've just updated,
  2522. * so we don't do microscopic update in schedule()
  2523. * and double the fastpath cost.
  2524. */
  2525. rq->skip_clock_update = 1;
  2526. }
  2527. set_skip_buddy(se);
  2528. }
  2529. static bool yield_to_task_fair(struct rq *rq, struct task_struct *p, bool preempt)
  2530. {
  2531. struct sched_entity *se = &p->se;
  2532. /* throttled hierarchies are not runnable */
  2533. if (!se->on_rq || throttled_hierarchy(cfs_rq_of(se)))
  2534. return false;
  2535. /* Tell the scheduler that we'd really like pse to run next. */
  2536. set_next_buddy(se);
  2537. yield_task_fair(rq);
  2538. return true;
  2539. }
  2540. #ifdef CONFIG_SMP
  2541. /**************************************************
  2542. * Fair scheduling class load-balancing methods:
  2543. */
  2544. static unsigned long __read_mostly max_load_balance_interval = HZ/10;
  2545. #define LBF_ALL_PINNED 0x01
  2546. #define LBF_NEED_BREAK 0x02
  2547. struct lb_env {
  2548. struct sched_domain *sd;
  2549. int src_cpu;
  2550. struct rq *src_rq;
  2551. int dst_cpu;
  2552. struct rq *dst_rq;
  2553. enum cpu_idle_type idle;
  2554. long imbalance;
  2555. unsigned int flags;
  2556. unsigned int loop;
  2557. unsigned int loop_break;
  2558. unsigned int loop_max;
  2559. };
  2560. /*
  2561. * move_task - move a task from one runqueue to another runqueue.
  2562. * Both runqueues must be locked.
  2563. */
  2564. static void move_task(struct task_struct *p, struct lb_env *env)
  2565. {
  2566. deactivate_task(env->src_rq, p, 0);
  2567. set_task_cpu(p, env->dst_cpu);
  2568. activate_task(env->dst_rq, p, 0);
  2569. check_preempt_curr(env->dst_rq, p, 0);
  2570. }
  2571. /*
  2572. * Is this task likely cache-hot:
  2573. */
  2574. static int
  2575. task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
  2576. {
  2577. s64 delta;
  2578. if (p->sched_class != &fair_sched_class)
  2579. return 0;
  2580. if (unlikely(p->policy == SCHED_IDLE))
  2581. return 0;
  2582. /*
  2583. * Buddy candidates are cache hot:
  2584. */
  2585. if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running &&
  2586. (&p->se == cfs_rq_of(&p->se)->next ||
  2587. &p->se == cfs_rq_of(&p->se)->last))
  2588. return 1;
  2589. if (sysctl_sched_migration_cost == -1)
  2590. return 1;
  2591. if (sysctl_sched_migration_cost == 0)
  2592. return 0;
  2593. delta = now - p->se.exec_start;
  2594. return delta < (s64)sysctl_sched_migration_cost;
  2595. }
  2596. /*
  2597. * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
  2598. */
  2599. static
  2600. int can_migrate_task(struct task_struct *p, struct lb_env *env)
  2601. {
  2602. int tsk_cache_hot = 0;
  2603. /*
  2604. * We do not migrate tasks that are:
  2605. * 1) running (obviously), or
  2606. * 2) cannot be migrated to this CPU due to cpus_allowed, or
  2607. * 3) are cache-hot on their current CPU.
  2608. */
  2609. if (!cpumask_test_cpu(env->dst_cpu, tsk_cpus_allowed(p))) {
  2610. schedstat_inc(p, se.statistics.nr_failed_migrations_affine);
  2611. return 0;
  2612. }
  2613. env->flags &= ~LBF_ALL_PINNED;
  2614. if (task_running(env->src_rq, p)) {
  2615. schedstat_inc(p, se.statistics.nr_failed_migrations_running);
  2616. return 0;
  2617. }
  2618. /*
  2619. * Aggressive migration if:
  2620. * 1) task is cache cold, or
  2621. * 2) too many balance attempts have failed.
  2622. */
  2623. tsk_cache_hot = task_hot(p, env->src_rq->clock_task, env->sd);
  2624. if (!tsk_cache_hot ||
  2625. env->sd->nr_balance_failed > env->sd->cache_nice_tries) {
  2626. #ifdef CONFIG_SCHEDSTATS
  2627. if (tsk_cache_hot) {
  2628. schedstat_inc(env->sd, lb_hot_gained[env->idle]);
  2629. schedstat_inc(p, se.statistics.nr_forced_migrations);
  2630. }
  2631. #endif
  2632. return 1;
  2633. }
  2634. if (tsk_cache_hot) {
  2635. schedstat_inc(p, se.statistics.nr_failed_migrations_hot);
  2636. return 0;
  2637. }
  2638. return 1;
  2639. }
  2640. /*
  2641. * move_one_task tries to move exactly one task from busiest to this_rq, as
  2642. * part of active balancing operations within "domain".
  2643. * Returns 1 if successful and 0 otherwise.
  2644. *
  2645. * Called with both runqueues locked.
  2646. */
  2647. static int move_one_task(struct lb_env *env)
  2648. {
  2649. struct task_struct *p, *n;
  2650. list_for_each_entry_safe(p, n, &env->src_rq->cfs_tasks, se.group_node) {
  2651. if (throttled_lb_pair(task_group(p), env->src_rq->cpu, env->dst_cpu))
  2652. continue;
  2653. if (!can_migrate_task(p, env))
  2654. continue;
  2655. move_task(p, env);
  2656. /*
  2657. * Right now, this is only the second place move_task()
  2658. * is called, so we can safely collect move_task()
  2659. * stats here rather than inside move_task().
  2660. */
  2661. schedstat_inc(env->sd, lb_gained[env->idle]);
  2662. return 1;
  2663. }
  2664. return 0;
  2665. }
  2666. static unsigned long task_h_load(struct task_struct *p);
  2667. static const unsigned int sched_nr_migrate_break = 32;
  2668. /*
  2669. * move_tasks tries to move up to imbalance weighted load from busiest to
  2670. * this_rq, as part of a balancing operation within domain "sd".
  2671. * Returns 1 if successful and 0 otherwise.
  2672. *
  2673. * Called with both runqueues locked.
  2674. */
  2675. static int move_tasks(struct lb_env *env)
  2676. {
  2677. struct list_head *tasks = &env->src_rq->cfs_tasks;
  2678. struct task_struct *p;
  2679. unsigned long load;
  2680. int pulled = 0;
  2681. if (env->imbalance <= 0)
  2682. return 0;
  2683. while (!list_empty(tasks)) {
  2684. p = list_first_entry(tasks, struct task_struct, se.group_node);
  2685. env->loop++;
  2686. /* We've more or less seen every task there is, call it quits */
  2687. if (env->loop > env->loop_max)
  2688. break;
  2689. /* take a breather every nr_migrate tasks */
  2690. if (env->loop > env->loop_break) {
  2691. env->loop_break += sched_nr_migrate_break;
  2692. env->flags |= LBF_NEED_BREAK;
  2693. break;
  2694. }
  2695. if (throttled_lb_pair(task_group(p), env->src_cpu, env->dst_cpu))
  2696. goto next;
  2697. load = task_h_load(p);
  2698. if (sched_feat(LB_MIN) && load < 16 && !env->sd->nr_balance_failed)
  2699. goto next;
  2700. if ((load / 2) > env->imbalance)
  2701. goto next;
  2702. if (!can_migrate_task(p, env))
  2703. goto next;
  2704. move_task(p, env);
  2705. pulled++;
  2706. env->imbalance -= load;
  2707. #ifdef CONFIG_PREEMPT
  2708. /*
  2709. * NEWIDLE balancing is a source of latency, so preemptible
  2710. * kernels will stop after the first task is pulled to minimize
  2711. * the critical section.
  2712. */
  2713. if (env->idle == CPU_NEWLY_IDLE)
  2714. break;
  2715. #endif
  2716. /*
  2717. * We only want to steal up to the prescribed amount of
  2718. * weighted load.
  2719. */
  2720. if (env->imbalance <= 0)
  2721. break;
  2722. continue;
  2723. next:
  2724. list_move_tail(&p->se.group_node, tasks);
  2725. }
  2726. /*
  2727. * Right now, this is one of only two places move_task() is called,
  2728. * so we can safely collect move_task() stats here rather than
  2729. * inside move_task().
  2730. */
  2731. schedstat_add(env->sd, lb_gained[env->idle], pulled);
  2732. return pulled;
  2733. }
  2734. #ifdef CONFIG_FAIR_GROUP_SCHED
  2735. /*
  2736. * update tg->load_weight by folding this cpu's load_avg
  2737. */
  2738. static int update_shares_cpu(struct task_group *tg, int cpu)
  2739. {
  2740. struct cfs_rq *cfs_rq;
  2741. unsigned long flags;
  2742. struct rq *rq;
  2743. if (!tg->se[cpu])
  2744. return 0;
  2745. rq = cpu_rq(cpu);
  2746. cfs_rq = tg->cfs_rq[cpu];
  2747. raw_spin_lock_irqsave(&rq->lock, flags);
  2748. update_rq_clock(rq);
  2749. update_cfs_load(cfs_rq, 1);
  2750. /*
  2751. * We need to update shares after updating tg->load_weight in
  2752. * order to adjust the weight of groups with long running tasks.
  2753. */
  2754. update_cfs_shares(cfs_rq);
  2755. raw_spin_unlock_irqrestore(&rq->lock, flags);
  2756. return 0;
  2757. }
  2758. static void update_shares(int cpu)
  2759. {
  2760. struct cfs_rq *cfs_rq;
  2761. struct rq *rq = cpu_rq(cpu);
  2762. rcu_read_lock();
  2763. /*
  2764. * Iterates the task_group tree in a bottom up fashion, see
  2765. * list_add_leaf_cfs_rq() for details.
  2766. */
  2767. for_each_leaf_cfs_rq(rq, cfs_rq) {
  2768. /* throttled entities do not contribute to load */
  2769. if (throttled_hierarchy(cfs_rq))
  2770. continue;
  2771. update_shares_cpu(cfs_rq->tg, cpu);
  2772. }
  2773. rcu_read_unlock();
  2774. }
  2775. /*
  2776. * Compute the cpu's hierarchical load factor for each task group.
  2777. * This needs to be done in a top-down fashion because the load of a child
  2778. * group is a fraction of its parents load.
  2779. */
  2780. static int tg_load_down(struct task_group *tg, void *data)
  2781. {
  2782. unsigned long load;
  2783. long cpu = (long)data;
  2784. if (!tg->parent) {
  2785. load = cpu_rq(cpu)->load.weight;
  2786. } else {
  2787. load = tg->parent->cfs_rq[cpu]->h_load;
  2788. load *= tg->se[cpu]->load.weight;
  2789. load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
  2790. }
  2791. tg->cfs_rq[cpu]->h_load = load;
  2792. return 0;
  2793. }
  2794. static void update_h_load(long cpu)
  2795. {
  2796. rcu_read_lock();
  2797. walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
  2798. rcu_read_unlock();
  2799. }
  2800. static unsigned long task_h_load(struct task_struct *p)
  2801. {
  2802. struct cfs_rq *cfs_rq = task_cfs_rq(p);
  2803. unsigned long load;
  2804. load = p->se.load.weight;
  2805. load = div_u64(load * cfs_rq->h_load, cfs_rq->load.weight + 1);
  2806. return load;
  2807. }
  2808. #else
  2809. static inline void update_shares(int cpu)
  2810. {
  2811. }
  2812. static inline void update_h_load(long cpu)
  2813. {
  2814. }
  2815. static unsigned long task_h_load(struct task_struct *p)
  2816. {
  2817. return p->se.load.weight;
  2818. }
  2819. #endif
  2820. /********** Helpers for find_busiest_group ************************/
  2821. /*
  2822. * sd_lb_stats - Structure to store the statistics of a sched_domain
  2823. * during load balancing.
  2824. */
  2825. struct sd_lb_stats {
  2826. struct sched_group *busiest; /* Busiest group in this sd */
  2827. struct sched_group *this; /* Local group in this sd */
  2828. unsigned long total_load; /* Total load of all groups in sd */
  2829. unsigned long total_pwr; /* Total power of all groups in sd */
  2830. unsigned long avg_load; /* Average load across all groups in sd */
  2831. /** Statistics of this group */
  2832. unsigned long this_load;
  2833. unsigned long this_load_per_task;
  2834. unsigned long this_nr_running;
  2835. unsigned long this_has_capacity;
  2836. unsigned int this_idle_cpus;
  2837. /* Statistics of the busiest group */
  2838. unsigned int busiest_idle_cpus;
  2839. unsigned long max_load;
  2840. unsigned long busiest_load_per_task;
  2841. unsigned long busiest_nr_running;
  2842. unsigned long busiest_group_capacity;
  2843. unsigned long busiest_has_capacity;
  2844. unsigned int busiest_group_weight;
  2845. int group_imb; /* Is there imbalance in this sd */
  2846. };
  2847. /*
  2848. * sg_lb_stats - stats of a sched_group required for load_balancing
  2849. */
  2850. struct sg_lb_stats {
  2851. unsigned long avg_load; /*Avg load across the CPUs of the group */
  2852. unsigned long group_load; /* Total load over the CPUs of the group */
  2853. unsigned long sum_nr_running; /* Nr tasks running in the group */
  2854. unsigned long sum_weighted_load; /* Weighted load of group's tasks */
  2855. unsigned long group_capacity;
  2856. unsigned long idle_cpus;
  2857. unsigned long group_weight;
  2858. int group_imb; /* Is there an imbalance in the group ? */
  2859. int group_has_capacity; /* Is there extra capacity in the group? */
  2860. };
  2861. /**
  2862. * get_sd_load_idx - Obtain the load index for a given sched domain.
  2863. * @sd: The sched_domain whose load_idx is to be obtained.
  2864. * @idle: The Idle status of the CPU for whose sd load_icx is obtained.
  2865. */
  2866. static inline int get_sd_load_idx(struct sched_domain *sd,
  2867. enum cpu_idle_type idle)
  2868. {
  2869. int load_idx;
  2870. switch (idle) {
  2871. case CPU_NOT_IDLE:
  2872. load_idx = sd->busy_idx;
  2873. break;
  2874. case CPU_NEWLY_IDLE:
  2875. load_idx = sd->newidle_idx;
  2876. break;
  2877. default:
  2878. load_idx = sd->idle_idx;
  2879. break;
  2880. }
  2881. return load_idx;
  2882. }
  2883. unsigned long default_scale_freq_power(struct sched_domain *sd, int cpu)
  2884. {
  2885. return SCHED_POWER_SCALE;
  2886. }
  2887. unsigned long __weak arch_scale_freq_power(struct sched_domain *sd, int cpu)
  2888. {
  2889. return default_scale_freq_power(sd, cpu);
  2890. }
  2891. unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu)
  2892. {
  2893. unsigned long weight = sd->span_weight;
  2894. unsigned long smt_gain = sd->smt_gain;
  2895. smt_gain /= weight;
  2896. return smt_gain;
  2897. }
  2898. unsigned long __weak arch_scale_smt_power(struct sched_domain *sd, int cpu)
  2899. {
  2900. return default_scale_smt_power(sd, cpu);
  2901. }
  2902. unsigned long scale_rt_power(int cpu)
  2903. {
  2904. struct rq *rq = cpu_rq(cpu);
  2905. u64 total, available, age_stamp, avg;
  2906. /*
  2907. * Since we're reading these variables without serialization make sure
  2908. * we read them once before doing sanity checks on them.
  2909. */
  2910. age_stamp = ACCESS_ONCE(rq->age_stamp);
  2911. avg = ACCESS_ONCE(rq->rt_avg);
  2912. total = sched_avg_period() + (rq->clock - age_stamp);
  2913. if (unlikely(total < avg)) {
  2914. /* Ensures that power won't end up being negative */
  2915. available = 0;
  2916. } else {
  2917. available = total - avg;
  2918. }
  2919. if (unlikely((s64)total < SCHED_POWER_SCALE))
  2920. total = SCHED_POWER_SCALE;
  2921. total >>= SCHED_POWER_SHIFT;
  2922. return div_u64(available, total);
  2923. }
  2924. static void update_cpu_power(struct sched_domain *sd, int cpu)
  2925. {
  2926. unsigned long weight = sd->span_weight;
  2927. unsigned long power = SCHED_POWER_SCALE;
  2928. struct sched_group *sdg = sd->groups;
  2929. if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) {
  2930. if (sched_feat(ARCH_POWER))
  2931. power *= arch_scale_smt_power(sd, cpu);
  2932. else
  2933. power *= default_scale_smt_power(sd, cpu);
  2934. power >>= SCHED_POWER_SHIFT;
  2935. }
  2936. sdg->sgp->power_orig = power;
  2937. if (sched_feat(ARCH_POWER))
  2938. power *= arch_scale_freq_power(sd, cpu);
  2939. else
  2940. power *= default_scale_freq_power(sd, cpu);
  2941. power >>= SCHED_POWER_SHIFT;
  2942. power *= scale_rt_power(cpu);
  2943. power >>= SCHED_POWER_SHIFT;
  2944. if (!power)
  2945. power = 1;
  2946. cpu_rq(cpu)->cpu_power = power;
  2947. sdg->sgp->power = power;
  2948. }
  2949. void update_group_power(struct sched_domain *sd, int cpu)
  2950. {
  2951. struct sched_domain *child = sd->child;
  2952. struct sched_group *group, *sdg = sd->groups;
  2953. unsigned long power;
  2954. unsigned long interval;
  2955. interval = msecs_to_jiffies(sd->balance_interval);
  2956. interval = clamp(interval, 1UL, max_load_balance_interval);
  2957. sdg->sgp->next_update = jiffies + interval;
  2958. if (!child) {
  2959. update_cpu_power(sd, cpu);
  2960. return;
  2961. }
  2962. power = 0;
  2963. if (child->flags & SD_OVERLAP) {
  2964. /*
  2965. * SD_OVERLAP domains cannot assume that child groups
  2966. * span the current group.
  2967. */
  2968. for_each_cpu(cpu, sched_group_cpus(sdg))
  2969. power += power_of(cpu);
  2970. } else {
  2971. /*
  2972. * !SD_OVERLAP domains can assume that child groups
  2973. * span the current group.
  2974. */
  2975. group = child->groups;
  2976. do {
  2977. power += group->sgp->power;
  2978. group = group->next;
  2979. } while (group != child->groups);
  2980. }
  2981. sdg->sgp->power = power;
  2982. }
  2983. /*
  2984. * Try and fix up capacity for tiny siblings, this is needed when
  2985. * things like SD_ASYM_PACKING need f_b_g to select another sibling
  2986. * which on its own isn't powerful enough.
  2987. *
  2988. * See update_sd_pick_busiest() and check_asym_packing().
  2989. */
  2990. static inline int
  2991. fix_small_capacity(struct sched_domain *sd, struct sched_group *group)
  2992. {
  2993. /*
  2994. * Only siblings can have significantly less than SCHED_POWER_SCALE
  2995. */
  2996. if (!(sd->flags & SD_SHARE_CPUPOWER))
  2997. return 0;
  2998. /*
  2999. * If ~90% of the cpu_power is still there, we're good.
  3000. */
  3001. if (group->sgp->power * 32 > group->sgp->power_orig * 29)
  3002. return 1;
  3003. return 0;
  3004. }
  3005. /**
  3006. * update_sg_lb_stats - Update sched_group's statistics for load balancing.
  3007. * @sd: The sched_domain whose statistics are to be updated.
  3008. * @group: sched_group whose statistics are to be updated.
  3009. * @load_idx: Load index of sched_domain of this_cpu for load calc.
  3010. * @local_group: Does group contain this_cpu.
  3011. * @cpus: Set of cpus considered for load balancing.
  3012. * @balance: Should we balance.
  3013. * @sgs: variable to hold the statistics for this group.
  3014. */
  3015. static inline void update_sg_lb_stats(struct lb_env *env,
  3016. struct sched_group *group, int load_idx,
  3017. int local_group, const struct cpumask *cpus,
  3018. int *balance, struct sg_lb_stats *sgs)
  3019. {
  3020. unsigned long nr_running, max_nr_running, min_nr_running;
  3021. unsigned long load, max_cpu_load, min_cpu_load;
  3022. unsigned int balance_cpu = -1, first_idle_cpu = 0;
  3023. unsigned long avg_load_per_task = 0;
  3024. int i;
  3025. if (local_group)
  3026. balance_cpu = group_balance_cpu(group);
  3027. /* Tally up the load of all CPUs in the group */
  3028. max_cpu_load = 0;
  3029. min_cpu_load = ~0UL;
  3030. max_nr_running = 0;
  3031. min_nr_running = ~0UL;
  3032. for_each_cpu_and(i, sched_group_cpus(group), cpus) {
  3033. struct rq *rq = cpu_rq(i);
  3034. nr_running = rq->nr_running;
  3035. /* Bias balancing toward cpus of our domain */
  3036. if (local_group) {
  3037. if (idle_cpu(i) && !first_idle_cpu &&
  3038. cpumask_test_cpu(i, sched_group_mask(group))) {
  3039. first_idle_cpu = 1;
  3040. balance_cpu = i;
  3041. }
  3042. load = target_load(i, load_idx);
  3043. } else {
  3044. load = source_load(i, load_idx);
  3045. if (load > max_cpu_load)
  3046. max_cpu_load = load;
  3047. if (min_cpu_load > load)
  3048. min_cpu_load = load;
  3049. if (nr_running > max_nr_running)
  3050. max_nr_running = nr_running;
  3051. if (min_nr_running > nr_running)
  3052. min_nr_running = nr_running;
  3053. }
  3054. sgs->group_load += load;
  3055. sgs->sum_nr_running += nr_running;
  3056. sgs->sum_weighted_load += weighted_cpuload(i);
  3057. if (idle_cpu(i))
  3058. sgs->idle_cpus++;
  3059. }
  3060. /*
  3061. * First idle cpu or the first cpu(busiest) in this sched group
  3062. * is eligible for doing load balancing at this and above
  3063. * domains. In the newly idle case, we will allow all the cpu's
  3064. * to do the newly idle load balance.
  3065. */
  3066. if (local_group) {
  3067. if (env->idle != CPU_NEWLY_IDLE) {
  3068. if (balance_cpu != env->dst_cpu) {
  3069. *balance = 0;
  3070. return;
  3071. }
  3072. update_group_power(env->sd, env->dst_cpu);
  3073. } else if (time_after_eq(jiffies, group->sgp->next_update))
  3074. update_group_power(env->sd, env->dst_cpu);
  3075. }
  3076. /* Adjust by relative CPU power of the group */
  3077. sgs->avg_load = (sgs->group_load*SCHED_POWER_SCALE) / group->sgp->power;
  3078. /*
  3079. * Consider the group unbalanced when the imbalance is larger
  3080. * than the average weight of a task.
  3081. *
  3082. * APZ: with cgroup the avg task weight can vary wildly and
  3083. * might not be a suitable number - should we keep a
  3084. * normalized nr_running number somewhere that negates
  3085. * the hierarchy?
  3086. */
  3087. if (sgs->sum_nr_running)
  3088. avg_load_per_task = sgs->sum_weighted_load / sgs->sum_nr_running;
  3089. if ((max_cpu_load - min_cpu_load) >= avg_load_per_task &&
  3090. (max_nr_running - min_nr_running) > 1)
  3091. sgs->group_imb = 1;
  3092. sgs->group_capacity = DIV_ROUND_CLOSEST(group->sgp->power,
  3093. SCHED_POWER_SCALE);
  3094. if (!sgs->group_capacity)
  3095. sgs->group_capacity = fix_small_capacity(env->sd, group);
  3096. sgs->group_weight = group->group_weight;
  3097. if (sgs->group_capacity > sgs->sum_nr_running)
  3098. sgs->group_has_capacity = 1;
  3099. }
  3100. /**
  3101. * update_sd_pick_busiest - return 1 on busiest group
  3102. * @sd: sched_domain whose statistics are to be checked
  3103. * @sds: sched_domain statistics
  3104. * @sg: sched_group candidate to be checked for being the busiest
  3105. * @sgs: sched_group statistics
  3106. * @this_cpu: the current cpu
  3107. *
  3108. * Determine if @sg is a busier group than the previously selected
  3109. * busiest group.
  3110. */
  3111. static bool update_sd_pick_busiest(struct lb_env *env,
  3112. struct sd_lb_stats *sds,
  3113. struct sched_group *sg,
  3114. struct sg_lb_stats *sgs)
  3115. {
  3116. if (sgs->avg_load <= sds->max_load)
  3117. return false;
  3118. if (sgs->sum_nr_running > sgs->group_capacity)
  3119. return true;
  3120. if (sgs->group_imb)
  3121. return true;
  3122. /*
  3123. * ASYM_PACKING needs to move all the work to the lowest
  3124. * numbered CPUs in the group, therefore mark all groups
  3125. * higher than ourself as busy.
  3126. */
  3127. if ((env->sd->flags & SD_ASYM_PACKING) && sgs->sum_nr_running &&
  3128. env->dst_cpu < group_first_cpu(sg)) {
  3129. if (!sds->busiest)
  3130. return true;
  3131. if (group_first_cpu(sds->busiest) > group_first_cpu(sg))
  3132. return true;
  3133. }
  3134. return false;
  3135. }
  3136. /**
  3137. * update_sd_lb_stats - Update sched_domain's statistics for load balancing.
  3138. * @sd: sched_domain whose statistics are to be updated.
  3139. * @this_cpu: Cpu for which load balance is currently performed.
  3140. * @idle: Idle status of this_cpu
  3141. * @cpus: Set of cpus considered for load balancing.
  3142. * @balance: Should we balance.
  3143. * @sds: variable to hold the statistics for this sched_domain.
  3144. */
  3145. static inline void update_sd_lb_stats(struct lb_env *env,
  3146. const struct cpumask *cpus,
  3147. int *balance, struct sd_lb_stats *sds)
  3148. {
  3149. struct sched_domain *child = env->sd->child;
  3150. struct sched_group *sg = env->sd->groups;
  3151. struct sg_lb_stats sgs;
  3152. int load_idx, prefer_sibling = 0;
  3153. if (child && child->flags & SD_PREFER_SIBLING)
  3154. prefer_sibling = 1;
  3155. load_idx = get_sd_load_idx(env->sd, env->idle);
  3156. do {
  3157. int local_group;
  3158. local_group = cpumask_test_cpu(env->dst_cpu, sched_group_cpus(sg));
  3159. memset(&sgs, 0, sizeof(sgs));
  3160. update_sg_lb_stats(env, sg, load_idx, local_group,
  3161. cpus, balance, &sgs);
  3162. if (local_group && !(*balance))
  3163. return;
  3164. sds->total_load += sgs.group_load;
  3165. sds->total_pwr += sg->sgp->power;
  3166. /*
  3167. * In case the child domain prefers tasks go to siblings
  3168. * first, lower the sg capacity to one so that we'll try
  3169. * and move all the excess tasks away. We lower the capacity
  3170. * of a group only if the local group has the capacity to fit
  3171. * these excess tasks, i.e. nr_running < group_capacity. The
  3172. * extra check prevents the case where you always pull from the
  3173. * heaviest group when it is already under-utilized (possible
  3174. * with a large weight task outweighs the tasks on the system).
  3175. */
  3176. if (prefer_sibling && !local_group && sds->this_has_capacity)
  3177. sgs.group_capacity = min(sgs.group_capacity, 1UL);
  3178. if (local_group) {
  3179. sds->this_load = sgs.avg_load;
  3180. sds->this = sg;
  3181. sds->this_nr_running = sgs.sum_nr_running;
  3182. sds->this_load_per_task = sgs.sum_weighted_load;
  3183. sds->this_has_capacity = sgs.group_has_capacity;
  3184. sds->this_idle_cpus = sgs.idle_cpus;
  3185. } else if (update_sd_pick_busiest(env, sds, sg, &sgs)) {
  3186. sds->max_load = sgs.avg_load;
  3187. sds->busiest = sg;
  3188. sds->busiest_nr_running = sgs.sum_nr_running;
  3189. sds->busiest_idle_cpus = sgs.idle_cpus;
  3190. sds->busiest_group_capacity = sgs.group_capacity;
  3191. sds->busiest_load_per_task = sgs.sum_weighted_load;
  3192. sds->busiest_has_capacity = sgs.group_has_capacity;
  3193. sds->busiest_group_weight = sgs.group_weight;
  3194. sds->group_imb = sgs.group_imb;
  3195. }
  3196. sg = sg->next;
  3197. } while (sg != env->sd->groups);
  3198. }
  3199. /**
  3200. * check_asym_packing - Check to see if the group is packed into the
  3201. * sched doman.
  3202. *
  3203. * This is primarily intended to used at the sibling level. Some
  3204. * cores like POWER7 prefer to use lower numbered SMT threads. In the
  3205. * case of POWER7, it can move to lower SMT modes only when higher
  3206. * threads are idle. When in lower SMT modes, the threads will
  3207. * perform better since they share less core resources. Hence when we
  3208. * have idle threads, we want them to be the higher ones.
  3209. *
  3210. * This packing function is run on idle threads. It checks to see if
  3211. * the busiest CPU in this domain (core in the P7 case) has a higher
  3212. * CPU number than the packing function is being run on. Here we are
  3213. * assuming lower CPU number will be equivalent to lower a SMT thread
  3214. * number.
  3215. *
  3216. * Returns 1 when packing is required and a task should be moved to
  3217. * this CPU. The amount of the imbalance is returned in *imbalance.
  3218. *
  3219. * @sd: The sched_domain whose packing is to be checked.
  3220. * @sds: Statistics of the sched_domain which is to be packed
  3221. * @this_cpu: The cpu at whose sched_domain we're performing load-balance.
  3222. * @imbalance: returns amount of imbalanced due to packing.
  3223. */
  3224. static int check_asym_packing(struct lb_env *env, struct sd_lb_stats *sds)
  3225. {
  3226. int busiest_cpu;
  3227. if (!(env->sd->flags & SD_ASYM_PACKING))
  3228. return 0;
  3229. if (!sds->busiest)
  3230. return 0;
  3231. busiest_cpu = group_first_cpu(sds->busiest);
  3232. if (env->dst_cpu > busiest_cpu)
  3233. return 0;
  3234. env->imbalance = DIV_ROUND_CLOSEST(
  3235. sds->max_load * sds->busiest->sgp->power, SCHED_POWER_SCALE);
  3236. return 1;
  3237. }
  3238. /**
  3239. * fix_small_imbalance - Calculate the minor imbalance that exists
  3240. * amongst the groups of a sched_domain, during
  3241. * load balancing.
  3242. * @sds: Statistics of the sched_domain whose imbalance is to be calculated.
  3243. * @this_cpu: The cpu at whose sched_domain we're performing load-balance.
  3244. * @imbalance: Variable to store the imbalance.
  3245. */
  3246. static inline
  3247. void fix_small_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
  3248. {
  3249. unsigned long tmp, pwr_now = 0, pwr_move = 0;
  3250. unsigned int imbn = 2;
  3251. unsigned long scaled_busy_load_per_task;
  3252. if (sds->this_nr_running) {
  3253. sds->this_load_per_task /= sds->this_nr_running;
  3254. if (sds->busiest_load_per_task >
  3255. sds->this_load_per_task)
  3256. imbn = 1;
  3257. } else {
  3258. sds->this_load_per_task =
  3259. cpu_avg_load_per_task(env->dst_cpu);
  3260. }
  3261. scaled_busy_load_per_task = sds->busiest_load_per_task
  3262. * SCHED_POWER_SCALE;
  3263. scaled_busy_load_per_task /= sds->busiest->sgp->power;
  3264. if (sds->max_load - sds->this_load + scaled_busy_load_per_task >=
  3265. (scaled_busy_load_per_task * imbn)) {
  3266. env->imbalance = sds->busiest_load_per_task;
  3267. return;
  3268. }
  3269. /*
  3270. * OK, we don't have enough imbalance to justify moving tasks,
  3271. * however we may be able to increase total CPU power used by
  3272. * moving them.
  3273. */
  3274. pwr_now += sds->busiest->sgp->power *
  3275. min(sds->busiest_load_per_task, sds->max_load);
  3276. pwr_now += sds->this->sgp->power *
  3277. min(sds->this_load_per_task, sds->this_load);
  3278. pwr_now /= SCHED_POWER_SCALE;
  3279. /* Amount of load we'd subtract */
  3280. tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) /
  3281. sds->busiest->sgp->power;
  3282. if (sds->max_load > tmp)
  3283. pwr_move += sds->busiest->sgp->power *
  3284. min(sds->busiest_load_per_task, sds->max_load - tmp);
  3285. /* Amount of load we'd add */
  3286. if (sds->max_load * sds->busiest->sgp->power <
  3287. sds->busiest_load_per_task * SCHED_POWER_SCALE)
  3288. tmp = (sds->max_load * sds->busiest->sgp->power) /
  3289. sds->this->sgp->power;
  3290. else
  3291. tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) /
  3292. sds->this->sgp->power;
  3293. pwr_move += sds->this->sgp->power *
  3294. min(sds->this_load_per_task, sds->this_load + tmp);
  3295. pwr_move /= SCHED_POWER_SCALE;
  3296. /* Move if we gain throughput */
  3297. if (pwr_move > pwr_now)
  3298. env->imbalance = sds->busiest_load_per_task;
  3299. }
  3300. /**
  3301. * calculate_imbalance - Calculate the amount of imbalance present within the
  3302. * groups of a given sched_domain during load balance.
  3303. * @env: load balance environment
  3304. * @sds: statistics of the sched_domain whose imbalance is to be calculated.
  3305. */
  3306. static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
  3307. {
  3308. unsigned long max_pull, load_above_capacity = ~0UL;
  3309. sds->busiest_load_per_task /= sds->busiest_nr_running;
  3310. if (sds->group_imb) {
  3311. sds->busiest_load_per_task =
  3312. min(sds->busiest_load_per_task, sds->avg_load);
  3313. }
  3314. /*
  3315. * In the presence of smp nice balancing, certain scenarios can have
  3316. * max load less than avg load(as we skip the groups at or below
  3317. * its cpu_power, while calculating max_load..)
  3318. */
  3319. if (sds->max_load < sds->avg_load) {
  3320. env->imbalance = 0;
  3321. return fix_small_imbalance(env, sds);
  3322. }
  3323. if (!sds->group_imb) {
  3324. /*
  3325. * Don't want to pull so many tasks that a group would go idle.
  3326. */
  3327. load_above_capacity = (sds->busiest_nr_running -
  3328. sds->busiest_group_capacity);
  3329. load_above_capacity *= (SCHED_LOAD_SCALE * SCHED_POWER_SCALE);
  3330. load_above_capacity /= sds->busiest->sgp->power;
  3331. }
  3332. /*
  3333. * We're trying to get all the cpus to the average_load, so we don't
  3334. * want to push ourselves above the average load, nor do we wish to
  3335. * reduce the max loaded cpu below the average load. At the same time,
  3336. * we also don't want to reduce the group load below the group capacity
  3337. * (so that we can implement power-savings policies etc). Thus we look
  3338. * for the minimum possible imbalance.
  3339. * Be careful of negative numbers as they'll appear as very large values
  3340. * with unsigned longs.
  3341. */
  3342. max_pull = min(sds->max_load - sds->avg_load, load_above_capacity);
  3343. /* How much load to actually move to equalise the imbalance */
  3344. env->imbalance = min(max_pull * sds->busiest->sgp->power,
  3345. (sds->avg_load - sds->this_load) * sds->this->sgp->power)
  3346. / SCHED_POWER_SCALE;
  3347. /*
  3348. * if *imbalance is less than the average load per runnable task
  3349. * there is no guarantee that any tasks will be moved so we'll have
  3350. * a think about bumping its value to force at least one task to be
  3351. * moved
  3352. */
  3353. if (env->imbalance < sds->busiest_load_per_task)
  3354. return fix_small_imbalance(env, sds);
  3355. }
  3356. /******* find_busiest_group() helpers end here *********************/
  3357. /**
  3358. * find_busiest_group - Returns the busiest group within the sched_domain
  3359. * if there is an imbalance. If there isn't an imbalance, and
  3360. * the user has opted for power-savings, it returns a group whose
  3361. * CPUs can be put to idle by rebalancing those tasks elsewhere, if
  3362. * such a group exists.
  3363. *
  3364. * Also calculates the amount of weighted load which should be moved
  3365. * to restore balance.
  3366. *
  3367. * @sd: The sched_domain whose busiest group is to be returned.
  3368. * @this_cpu: The cpu for which load balancing is currently being performed.
  3369. * @imbalance: Variable which stores amount of weighted load which should
  3370. * be moved to restore balance/put a group to idle.
  3371. * @idle: The idle status of this_cpu.
  3372. * @cpus: The set of CPUs under consideration for load-balancing.
  3373. * @balance: Pointer to a variable indicating if this_cpu
  3374. * is the appropriate cpu to perform load balancing at this_level.
  3375. *
  3376. * Returns: - the busiest group if imbalance exists.
  3377. * - If no imbalance and user has opted for power-savings balance,
  3378. * return the least loaded group whose CPUs can be
  3379. * put to idle by rebalancing its tasks onto our group.
  3380. */
  3381. static struct sched_group *
  3382. find_busiest_group(struct lb_env *env, const struct cpumask *cpus, int *balance)
  3383. {
  3384. struct sd_lb_stats sds;
  3385. memset(&sds, 0, sizeof(sds));
  3386. /*
  3387. * Compute the various statistics relavent for load balancing at
  3388. * this level.
  3389. */
  3390. update_sd_lb_stats(env, cpus, balance, &sds);
  3391. /*
  3392. * this_cpu is not the appropriate cpu to perform load balancing at
  3393. * this level.
  3394. */
  3395. if (!(*balance))
  3396. goto ret;
  3397. if ((env->idle == CPU_IDLE || env->idle == CPU_NEWLY_IDLE) &&
  3398. check_asym_packing(env, &sds))
  3399. return sds.busiest;
  3400. /* There is no busy sibling group to pull tasks from */
  3401. if (!sds.busiest || sds.busiest_nr_running == 0)
  3402. goto out_balanced;
  3403. sds.avg_load = (SCHED_POWER_SCALE * sds.total_load) / sds.total_pwr;
  3404. /*
  3405. * If the busiest group is imbalanced the below checks don't
  3406. * work because they assumes all things are equal, which typically
  3407. * isn't true due to cpus_allowed constraints and the like.
  3408. */
  3409. if (sds.group_imb)
  3410. goto force_balance;
  3411. /* SD_BALANCE_NEWIDLE trumps SMP nice when underutilized */
  3412. if (env->idle == CPU_NEWLY_IDLE && sds.this_has_capacity &&
  3413. !sds.busiest_has_capacity)
  3414. goto force_balance;
  3415. /*
  3416. * If the local group is more busy than the selected busiest group
  3417. * don't try and pull any tasks.
  3418. */
  3419. if (sds.this_load >= sds.max_load)
  3420. goto out_balanced;
  3421. /*
  3422. * Don't pull any tasks if this group is already above the domain
  3423. * average load.
  3424. */
  3425. if (sds.this_load >= sds.avg_load)
  3426. goto out_balanced;
  3427. if (env->idle == CPU_IDLE) {
  3428. /*
  3429. * This cpu is idle. If the busiest group load doesn't
  3430. * have more tasks than the number of available cpu's and
  3431. * there is no imbalance between this and busiest group
  3432. * wrt to idle cpu's, it is balanced.
  3433. */
  3434. if ((sds.this_idle_cpus <= sds.busiest_idle_cpus + 1) &&
  3435. sds.busiest_nr_running <= sds.busiest_group_weight)
  3436. goto out_balanced;
  3437. } else {
  3438. /*
  3439. * In the CPU_NEWLY_IDLE, CPU_NOT_IDLE cases, use
  3440. * imbalance_pct to be conservative.
  3441. */
  3442. if (100 * sds.max_load <= env->sd->imbalance_pct * sds.this_load)
  3443. goto out_balanced;
  3444. }
  3445. force_balance:
  3446. /* Looks like there is an imbalance. Compute it */
  3447. calculate_imbalance(env, &sds);
  3448. return sds.busiest;
  3449. out_balanced:
  3450. ret:
  3451. env->imbalance = 0;
  3452. return NULL;
  3453. }
  3454. /*
  3455. * find_busiest_queue - find the busiest runqueue among the cpus in group.
  3456. */
  3457. static struct rq *find_busiest_queue(struct lb_env *env,
  3458. struct sched_group *group,
  3459. const struct cpumask *cpus)
  3460. {
  3461. struct rq *busiest = NULL, *rq;
  3462. unsigned long max_load = 0;
  3463. int i;
  3464. for_each_cpu(i, sched_group_cpus(group)) {
  3465. unsigned long power = power_of(i);
  3466. unsigned long capacity = DIV_ROUND_CLOSEST(power,
  3467. SCHED_POWER_SCALE);
  3468. unsigned long wl;
  3469. if (!capacity)
  3470. capacity = fix_small_capacity(env->sd, group);
  3471. if (!cpumask_test_cpu(i, cpus))
  3472. continue;
  3473. rq = cpu_rq(i);
  3474. wl = weighted_cpuload(i);
  3475. /*
  3476. * When comparing with imbalance, use weighted_cpuload()
  3477. * which is not scaled with the cpu power.
  3478. */
  3479. if (capacity && rq->nr_running == 1 && wl > env->imbalance)
  3480. continue;
  3481. /*
  3482. * For the load comparisons with the other cpu's, consider
  3483. * the weighted_cpuload() scaled with the cpu power, so that
  3484. * the load can be moved away from the cpu that is potentially
  3485. * running at a lower capacity.
  3486. */
  3487. wl = (wl * SCHED_POWER_SCALE) / power;
  3488. if (wl > max_load) {
  3489. max_load = wl;
  3490. busiest = rq;
  3491. }
  3492. }
  3493. return busiest;
  3494. }
  3495. /*
  3496. * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
  3497. * so long as it is large enough.
  3498. */
  3499. #define MAX_PINNED_INTERVAL 512
  3500. /* Working cpumask for load_balance and load_balance_newidle. */
  3501. DEFINE_PER_CPU(cpumask_var_t, load_balance_tmpmask);
  3502. static int need_active_balance(struct lb_env *env)
  3503. {
  3504. struct sched_domain *sd = env->sd;
  3505. if (env->idle == CPU_NEWLY_IDLE) {
  3506. /*
  3507. * ASYM_PACKING needs to force migrate tasks from busy but
  3508. * higher numbered CPUs in order to pack all tasks in the
  3509. * lowest numbered CPUs.
  3510. */
  3511. if ((sd->flags & SD_ASYM_PACKING) && env->src_cpu > env->dst_cpu)
  3512. return 1;
  3513. }
  3514. return unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2);
  3515. }
  3516. static int active_load_balance_cpu_stop(void *data);
  3517. /*
  3518. * Check this_cpu to ensure it is balanced within domain. Attempt to move
  3519. * tasks if there is an imbalance.
  3520. */
  3521. static int load_balance(int this_cpu, struct rq *this_rq,
  3522. struct sched_domain *sd, enum cpu_idle_type idle,
  3523. int *balance)
  3524. {
  3525. int ld_moved, active_balance = 0;
  3526. struct sched_group *group;
  3527. struct rq *busiest;
  3528. unsigned long flags;
  3529. struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
  3530. struct lb_env env = {
  3531. .sd = sd,
  3532. .dst_cpu = this_cpu,
  3533. .dst_rq = this_rq,
  3534. .idle = idle,
  3535. .loop_break = sched_nr_migrate_break,
  3536. };
  3537. cpumask_copy(cpus, cpu_active_mask);
  3538. schedstat_inc(sd, lb_count[idle]);
  3539. redo:
  3540. group = find_busiest_group(&env, cpus, balance);
  3541. if (*balance == 0)
  3542. goto out_balanced;
  3543. if (!group) {
  3544. schedstat_inc(sd, lb_nobusyg[idle]);
  3545. goto out_balanced;
  3546. }
  3547. busiest = find_busiest_queue(&env, group, cpus);
  3548. if (!busiest) {
  3549. schedstat_inc(sd, lb_nobusyq[idle]);
  3550. goto out_balanced;
  3551. }
  3552. BUG_ON(busiest == this_rq);
  3553. schedstat_add(sd, lb_imbalance[idle], env.imbalance);
  3554. ld_moved = 0;
  3555. if (busiest->nr_running > 1) {
  3556. /*
  3557. * Attempt to move tasks. If find_busiest_group has found
  3558. * an imbalance but busiest->nr_running <= 1, the group is
  3559. * still unbalanced. ld_moved simply stays zero, so it is
  3560. * correctly treated as an imbalance.
  3561. */
  3562. env.flags |= LBF_ALL_PINNED;
  3563. env.src_cpu = busiest->cpu;
  3564. env.src_rq = busiest;
  3565. env.loop_max = min(sysctl_sched_nr_migrate, busiest->nr_running);
  3566. more_balance:
  3567. local_irq_save(flags);
  3568. double_rq_lock(this_rq, busiest);
  3569. if (!env.loop)
  3570. update_h_load(env.src_cpu);
  3571. ld_moved += move_tasks(&env);
  3572. double_rq_unlock(this_rq, busiest);
  3573. local_irq_restore(flags);
  3574. if (env.flags & LBF_NEED_BREAK) {
  3575. env.flags &= ~LBF_NEED_BREAK;
  3576. goto more_balance;
  3577. }
  3578. /*
  3579. * some other cpu did the load balance for us.
  3580. */
  3581. if (ld_moved && this_cpu != smp_processor_id())
  3582. resched_cpu(this_cpu);
  3583. /* All tasks on this runqueue were pinned by CPU affinity */
  3584. if (unlikely(env.flags & LBF_ALL_PINNED)) {
  3585. cpumask_clear_cpu(cpu_of(busiest), cpus);
  3586. if (!cpumask_empty(cpus))
  3587. goto redo;
  3588. goto out_balanced;
  3589. }
  3590. }
  3591. if (!ld_moved) {
  3592. schedstat_inc(sd, lb_failed[idle]);
  3593. /*
  3594. * Increment the failure counter only on periodic balance.
  3595. * We do not want newidle balance, which can be very
  3596. * frequent, pollute the failure counter causing
  3597. * excessive cache_hot migrations and active balances.
  3598. */
  3599. if (idle != CPU_NEWLY_IDLE)
  3600. sd->nr_balance_failed++;
  3601. if (need_active_balance(&env)) {
  3602. raw_spin_lock_irqsave(&busiest->lock, flags);
  3603. /* don't kick the active_load_balance_cpu_stop,
  3604. * if the curr task on busiest cpu can't be
  3605. * moved to this_cpu
  3606. */
  3607. if (!cpumask_test_cpu(this_cpu,
  3608. tsk_cpus_allowed(busiest->curr))) {
  3609. raw_spin_unlock_irqrestore(&busiest->lock,
  3610. flags);
  3611. env.flags |= LBF_ALL_PINNED;
  3612. goto out_one_pinned;
  3613. }
  3614. /*
  3615. * ->active_balance synchronizes accesses to
  3616. * ->active_balance_work. Once set, it's cleared
  3617. * only after active load balance is finished.
  3618. */
  3619. if (!busiest->active_balance) {
  3620. busiest->active_balance = 1;
  3621. busiest->push_cpu = this_cpu;
  3622. active_balance = 1;
  3623. }
  3624. raw_spin_unlock_irqrestore(&busiest->lock, flags);
  3625. if (active_balance) {
  3626. stop_one_cpu_nowait(cpu_of(busiest),
  3627. active_load_balance_cpu_stop, busiest,
  3628. &busiest->active_balance_work);
  3629. }
  3630. /*
  3631. * We've kicked active balancing, reset the failure
  3632. * counter.
  3633. */
  3634. sd->nr_balance_failed = sd->cache_nice_tries+1;
  3635. }
  3636. } else
  3637. sd->nr_balance_failed = 0;
  3638. if (likely(!active_balance)) {
  3639. /* We were unbalanced, so reset the balancing interval */
  3640. sd->balance_interval = sd->min_interval;
  3641. } else {
  3642. /*
  3643. * If we've begun active balancing, start to back off. This
  3644. * case may not be covered by the all_pinned logic if there
  3645. * is only 1 task on the busy runqueue (because we don't call
  3646. * move_tasks).
  3647. */
  3648. if (sd->balance_interval < sd->max_interval)
  3649. sd->balance_interval *= 2;
  3650. }
  3651. goto out;
  3652. out_balanced:
  3653. schedstat_inc(sd, lb_balanced[idle]);
  3654. sd->nr_balance_failed = 0;
  3655. out_one_pinned:
  3656. /* tune up the balancing interval */
  3657. if (((env.flags & LBF_ALL_PINNED) &&
  3658. sd->balance_interval < MAX_PINNED_INTERVAL) ||
  3659. (sd->balance_interval < sd->max_interval))
  3660. sd->balance_interval *= 2;
  3661. ld_moved = 0;
  3662. out:
  3663. return ld_moved;
  3664. }
  3665. /*
  3666. * idle_balance is called by schedule() if this_cpu is about to become
  3667. * idle. Attempts to pull tasks from other CPUs.
  3668. */
  3669. void idle_balance(int this_cpu, struct rq *this_rq)
  3670. {
  3671. struct sched_domain *sd;
  3672. int pulled_task = 0;
  3673. unsigned long next_balance = jiffies + HZ;
  3674. this_rq->idle_stamp = this_rq->clock;
  3675. if (this_rq->avg_idle < sysctl_sched_migration_cost)
  3676. return;
  3677. /*
  3678. * Drop the rq->lock, but keep IRQ/preempt disabled.
  3679. */
  3680. raw_spin_unlock(&this_rq->lock);
  3681. update_shares(this_cpu);
  3682. rcu_read_lock();
  3683. for_each_domain(this_cpu, sd) {
  3684. unsigned long interval;
  3685. int balance = 1;
  3686. if (!(sd->flags & SD_LOAD_BALANCE))
  3687. continue;
  3688. if (sd->flags & SD_BALANCE_NEWIDLE) {
  3689. /* If we've pulled tasks over stop searching: */
  3690. pulled_task = load_balance(this_cpu, this_rq,
  3691. sd, CPU_NEWLY_IDLE, &balance);
  3692. }
  3693. interval = msecs_to_jiffies(sd->balance_interval);
  3694. if (time_after(next_balance, sd->last_balance + interval))
  3695. next_balance = sd->last_balance + interval;
  3696. if (pulled_task) {
  3697. this_rq->idle_stamp = 0;
  3698. break;
  3699. }
  3700. }
  3701. rcu_read_unlock();
  3702. raw_spin_lock(&this_rq->lock);
  3703. if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
  3704. /*
  3705. * We are going idle. next_balance may be set based on
  3706. * a busy processor. So reset next_balance.
  3707. */
  3708. this_rq->next_balance = next_balance;
  3709. }
  3710. }
  3711. /*
  3712. * active_load_balance_cpu_stop is run by cpu stopper. It pushes
  3713. * running tasks off the busiest CPU onto idle CPUs. It requires at
  3714. * least 1 task to be running on each physical CPU where possible, and
  3715. * avoids physical / logical imbalances.
  3716. */
  3717. static int active_load_balance_cpu_stop(void *data)
  3718. {
  3719. struct rq *busiest_rq = data;
  3720. int busiest_cpu = cpu_of(busiest_rq);
  3721. int target_cpu = busiest_rq->push_cpu;
  3722. struct rq *target_rq = cpu_rq(target_cpu);
  3723. struct sched_domain *sd;
  3724. raw_spin_lock_irq(&busiest_rq->lock);
  3725. /* make sure the requested cpu hasn't gone down in the meantime */
  3726. if (unlikely(busiest_cpu != smp_processor_id() ||
  3727. !busiest_rq->active_balance))
  3728. goto out_unlock;
  3729. /* Is there any task to move? */
  3730. if (busiest_rq->nr_running <= 1)
  3731. goto out_unlock;
  3732. /*
  3733. * This condition is "impossible", if it occurs
  3734. * we need to fix it. Originally reported by
  3735. * Bjorn Helgaas on a 128-cpu setup.
  3736. */
  3737. BUG_ON(busiest_rq == target_rq);
  3738. /* move a task from busiest_rq to target_rq */
  3739. double_lock_balance(busiest_rq, target_rq);
  3740. /* Search for an sd spanning us and the target CPU. */
  3741. rcu_read_lock();
  3742. for_each_domain(target_cpu, sd) {
  3743. if ((sd->flags & SD_LOAD_BALANCE) &&
  3744. cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
  3745. break;
  3746. }
  3747. if (likely(sd)) {
  3748. struct lb_env env = {
  3749. .sd = sd,
  3750. .dst_cpu = target_cpu,
  3751. .dst_rq = target_rq,
  3752. .src_cpu = busiest_rq->cpu,
  3753. .src_rq = busiest_rq,
  3754. .idle = CPU_IDLE,
  3755. };
  3756. schedstat_inc(sd, alb_count);
  3757. if (move_one_task(&env))
  3758. schedstat_inc(sd, alb_pushed);
  3759. else
  3760. schedstat_inc(sd, alb_failed);
  3761. }
  3762. rcu_read_unlock();
  3763. double_unlock_balance(busiest_rq, target_rq);
  3764. out_unlock:
  3765. busiest_rq->active_balance = 0;
  3766. raw_spin_unlock_irq(&busiest_rq->lock);
  3767. return 0;
  3768. }
  3769. #ifdef CONFIG_NO_HZ
  3770. /*
  3771. * idle load balancing details
  3772. * - When one of the busy CPUs notice that there may be an idle rebalancing
  3773. * needed, they will kick the idle load balancer, which then does idle
  3774. * load balancing for all the idle CPUs.
  3775. */
  3776. static struct {
  3777. cpumask_var_t idle_cpus_mask;
  3778. atomic_t nr_cpus;
  3779. unsigned long next_balance; /* in jiffy units */
  3780. } nohz ____cacheline_aligned;
  3781. static inline int find_new_ilb(int call_cpu)
  3782. {
  3783. int ilb = cpumask_first(nohz.idle_cpus_mask);
  3784. if (ilb < nr_cpu_ids && idle_cpu(ilb))
  3785. return ilb;
  3786. return nr_cpu_ids;
  3787. }
  3788. /*
  3789. * Kick a CPU to do the nohz balancing, if it is time for it. We pick the
  3790. * nohz_load_balancer CPU (if there is one) otherwise fallback to any idle
  3791. * CPU (if there is one).
  3792. */
  3793. static void nohz_balancer_kick(int cpu)
  3794. {
  3795. int ilb_cpu;
  3796. nohz.next_balance++;
  3797. ilb_cpu = find_new_ilb(cpu);
  3798. if (ilb_cpu >= nr_cpu_ids)
  3799. return;
  3800. if (test_and_set_bit(NOHZ_BALANCE_KICK, nohz_flags(ilb_cpu)))
  3801. return;
  3802. /*
  3803. * Use smp_send_reschedule() instead of resched_cpu().
  3804. * This way we generate a sched IPI on the target cpu which
  3805. * is idle. And the softirq performing nohz idle load balance
  3806. * will be run before returning from the IPI.
  3807. */
  3808. smp_send_reschedule(ilb_cpu);
  3809. return;
  3810. }
  3811. static inline void clear_nohz_tick_stopped(int cpu)
  3812. {
  3813. if (unlikely(test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))) {
  3814. cpumask_clear_cpu(cpu, nohz.idle_cpus_mask);
  3815. atomic_dec(&nohz.nr_cpus);
  3816. clear_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu));
  3817. }
  3818. }
  3819. static inline void set_cpu_sd_state_busy(void)
  3820. {
  3821. struct sched_domain *sd;
  3822. int cpu = smp_processor_id();
  3823. if (!test_bit(NOHZ_IDLE, nohz_flags(cpu)))
  3824. return;
  3825. clear_bit(NOHZ_IDLE, nohz_flags(cpu));
  3826. rcu_read_lock();
  3827. for_each_domain(cpu, sd)
  3828. atomic_inc(&sd->groups->sgp->nr_busy_cpus);
  3829. rcu_read_unlock();
  3830. }
  3831. void set_cpu_sd_state_idle(void)
  3832. {
  3833. struct sched_domain *sd;
  3834. int cpu = smp_processor_id();
  3835. if (test_bit(NOHZ_IDLE, nohz_flags(cpu)))
  3836. return;
  3837. set_bit(NOHZ_IDLE, nohz_flags(cpu));
  3838. rcu_read_lock();
  3839. for_each_domain(cpu, sd)
  3840. atomic_dec(&sd->groups->sgp->nr_busy_cpus);
  3841. rcu_read_unlock();
  3842. }
  3843. /*
  3844. * This routine will record that this cpu is going idle with tick stopped.
  3845. * This info will be used in performing idle load balancing in the future.
  3846. */
  3847. void select_nohz_load_balancer(int stop_tick)
  3848. {
  3849. int cpu = smp_processor_id();
  3850. /*
  3851. * If this cpu is going down, then nothing needs to be done.
  3852. */
  3853. if (!cpu_active(cpu))
  3854. return;
  3855. if (stop_tick) {
  3856. if (test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))
  3857. return;
  3858. cpumask_set_cpu(cpu, nohz.idle_cpus_mask);
  3859. atomic_inc(&nohz.nr_cpus);
  3860. set_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu));
  3861. }
  3862. return;
  3863. }
  3864. static int __cpuinit sched_ilb_notifier(struct notifier_block *nfb,
  3865. unsigned long action, void *hcpu)
  3866. {
  3867. switch (action & ~CPU_TASKS_FROZEN) {
  3868. case CPU_DYING:
  3869. clear_nohz_tick_stopped(smp_processor_id());
  3870. return NOTIFY_OK;
  3871. default:
  3872. return NOTIFY_DONE;
  3873. }
  3874. }
  3875. #endif
  3876. static DEFINE_SPINLOCK(balancing);
  3877. /*
  3878. * Scale the max load_balance interval with the number of CPUs in the system.
  3879. * This trades load-balance latency on larger machines for less cross talk.
  3880. */
  3881. void update_max_interval(void)
  3882. {
  3883. max_load_balance_interval = HZ*num_online_cpus()/10;
  3884. }
  3885. /*
  3886. * It checks each scheduling domain to see if it is due to be balanced,
  3887. * and initiates a balancing operation if so.
  3888. *
  3889. * Balancing parameters are set up in arch_init_sched_domains.
  3890. */
  3891. static void rebalance_domains(int cpu, enum cpu_idle_type idle)
  3892. {
  3893. int balance = 1;
  3894. struct rq *rq = cpu_rq(cpu);
  3895. unsigned long interval;
  3896. struct sched_domain *sd;
  3897. /* Earliest time when we have to do rebalance again */
  3898. unsigned long next_balance = jiffies + 60*HZ;
  3899. int update_next_balance = 0;
  3900. int need_serialize;
  3901. update_shares(cpu);
  3902. rcu_read_lock();
  3903. for_each_domain(cpu, sd) {
  3904. if (!(sd->flags & SD_LOAD_BALANCE))
  3905. continue;
  3906. interval = sd->balance_interval;
  3907. if (idle != CPU_IDLE)
  3908. interval *= sd->busy_factor;
  3909. /* scale ms to jiffies */
  3910. interval = msecs_to_jiffies(interval);
  3911. interval = clamp(interval, 1UL, max_load_balance_interval);
  3912. need_serialize = sd->flags & SD_SERIALIZE;
  3913. if (need_serialize) {
  3914. if (!spin_trylock(&balancing))
  3915. goto out;
  3916. }
  3917. if (time_after_eq(jiffies, sd->last_balance + interval)) {
  3918. if (load_balance(cpu, rq, sd, idle, &balance)) {
  3919. /*
  3920. * We've pulled tasks over so either we're no
  3921. * longer idle.
  3922. */
  3923. idle = CPU_NOT_IDLE;
  3924. }
  3925. sd->last_balance = jiffies;
  3926. }
  3927. if (need_serialize)
  3928. spin_unlock(&balancing);
  3929. out:
  3930. if (time_after(next_balance, sd->last_balance + interval)) {
  3931. next_balance = sd->last_balance + interval;
  3932. update_next_balance = 1;
  3933. }
  3934. /*
  3935. * Stop the load balance at this level. There is another
  3936. * CPU in our sched group which is doing load balancing more
  3937. * actively.
  3938. */
  3939. if (!balance)
  3940. break;
  3941. }
  3942. rcu_read_unlock();
  3943. /*
  3944. * next_balance will be updated only when there is a need.
  3945. * When the cpu is attached to null domain for ex, it will not be
  3946. * updated.
  3947. */
  3948. if (likely(update_next_balance))
  3949. rq->next_balance = next_balance;
  3950. }
  3951. #ifdef CONFIG_NO_HZ
  3952. /*
  3953. * In CONFIG_NO_HZ case, the idle balance kickee will do the
  3954. * rebalancing for all the cpus for whom scheduler ticks are stopped.
  3955. */
  3956. static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle)
  3957. {
  3958. struct rq *this_rq = cpu_rq(this_cpu);
  3959. struct rq *rq;
  3960. int balance_cpu;
  3961. if (idle != CPU_IDLE ||
  3962. !test_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu)))
  3963. goto end;
  3964. for_each_cpu(balance_cpu, nohz.idle_cpus_mask) {
  3965. if (balance_cpu == this_cpu || !idle_cpu(balance_cpu))
  3966. continue;
  3967. /*
  3968. * If this cpu gets work to do, stop the load balancing
  3969. * work being done for other cpus. Next load
  3970. * balancing owner will pick it up.
  3971. */
  3972. if (need_resched())
  3973. break;
  3974. raw_spin_lock_irq(&this_rq->lock);
  3975. update_rq_clock(this_rq);
  3976. update_idle_cpu_load(this_rq);
  3977. raw_spin_unlock_irq(&this_rq->lock);
  3978. rebalance_domains(balance_cpu, CPU_IDLE);
  3979. rq = cpu_rq(balance_cpu);
  3980. if (time_after(this_rq->next_balance, rq->next_balance))
  3981. this_rq->next_balance = rq->next_balance;
  3982. }
  3983. nohz.next_balance = this_rq->next_balance;
  3984. end:
  3985. clear_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu));
  3986. }
  3987. /*
  3988. * Current heuristic for kicking the idle load balancer in the presence
  3989. * of an idle cpu is the system.
  3990. * - This rq has more than one task.
  3991. * - At any scheduler domain level, this cpu's scheduler group has multiple
  3992. * busy cpu's exceeding the group's power.
  3993. * - For SD_ASYM_PACKING, if the lower numbered cpu's in the scheduler
  3994. * domain span are idle.
  3995. */
  3996. static inline int nohz_kick_needed(struct rq *rq, int cpu)
  3997. {
  3998. unsigned long now = jiffies;
  3999. struct sched_domain *sd;
  4000. if (unlikely(idle_cpu(cpu)))
  4001. return 0;
  4002. /*
  4003. * We may be recently in ticked or tickless idle mode. At the first
  4004. * busy tick after returning from idle, we will update the busy stats.
  4005. */
  4006. set_cpu_sd_state_busy();
  4007. clear_nohz_tick_stopped(cpu);
  4008. /*
  4009. * None are in tickless mode and hence no need for NOHZ idle load
  4010. * balancing.
  4011. */
  4012. if (likely(!atomic_read(&nohz.nr_cpus)))
  4013. return 0;
  4014. if (time_before(now, nohz.next_balance))
  4015. return 0;
  4016. if (rq->nr_running >= 2)
  4017. goto need_kick;
  4018. rcu_read_lock();
  4019. for_each_domain(cpu, sd) {
  4020. struct sched_group *sg = sd->groups;
  4021. struct sched_group_power *sgp = sg->sgp;
  4022. int nr_busy = atomic_read(&sgp->nr_busy_cpus);
  4023. if (sd->flags & SD_SHARE_PKG_RESOURCES && nr_busy > 1)
  4024. goto need_kick_unlock;
  4025. if (sd->flags & SD_ASYM_PACKING && nr_busy != sg->group_weight
  4026. && (cpumask_first_and(nohz.idle_cpus_mask,
  4027. sched_domain_span(sd)) < cpu))
  4028. goto need_kick_unlock;
  4029. if (!(sd->flags & (SD_SHARE_PKG_RESOURCES | SD_ASYM_PACKING)))
  4030. break;
  4031. }
  4032. rcu_read_unlock();
  4033. return 0;
  4034. need_kick_unlock:
  4035. rcu_read_unlock();
  4036. need_kick:
  4037. return 1;
  4038. }
  4039. #else
  4040. static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) { }
  4041. #endif
  4042. /*
  4043. * run_rebalance_domains is triggered when needed from the scheduler tick.
  4044. * Also triggered for nohz idle balancing (with nohz_balancing_kick set).
  4045. */
  4046. static void run_rebalance_domains(struct softirq_action *h)
  4047. {
  4048. int this_cpu = smp_processor_id();
  4049. struct rq *this_rq = cpu_rq(this_cpu);
  4050. enum cpu_idle_type idle = this_rq->idle_balance ?
  4051. CPU_IDLE : CPU_NOT_IDLE;
  4052. rebalance_domains(this_cpu, idle);
  4053. /*
  4054. * If this cpu has a pending nohz_balance_kick, then do the
  4055. * balancing on behalf of the other idle cpus whose ticks are
  4056. * stopped.
  4057. */
  4058. nohz_idle_balance(this_cpu, idle);
  4059. }
  4060. static inline int on_null_domain(int cpu)
  4061. {
  4062. return !rcu_dereference_sched(cpu_rq(cpu)->sd);
  4063. }
  4064. /*
  4065. * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
  4066. */
  4067. void trigger_load_balance(struct rq *rq, int cpu)
  4068. {
  4069. /* Don't need to rebalance while attached to NULL domain */
  4070. if (time_after_eq(jiffies, rq->next_balance) &&
  4071. likely(!on_null_domain(cpu)))
  4072. raise_softirq(SCHED_SOFTIRQ);
  4073. #ifdef CONFIG_NO_HZ
  4074. if (nohz_kick_needed(rq, cpu) && likely(!on_null_domain(cpu)))
  4075. nohz_balancer_kick(cpu);
  4076. #endif
  4077. }
  4078. static void rq_online_fair(struct rq *rq)
  4079. {
  4080. update_sysctl();
  4081. }
  4082. static void rq_offline_fair(struct rq *rq)
  4083. {
  4084. update_sysctl();
  4085. }
  4086. #endif /* CONFIG_SMP */
  4087. /*
  4088. * scheduler tick hitting a task of our scheduling class:
  4089. */
  4090. static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
  4091. {
  4092. struct cfs_rq *cfs_rq;
  4093. struct sched_entity *se = &curr->se;
  4094. for_each_sched_entity(se) {
  4095. cfs_rq = cfs_rq_of(se);
  4096. entity_tick(cfs_rq, se, queued);
  4097. }
  4098. }
  4099. /*
  4100. * called on fork with the child task as argument from the parent's context
  4101. * - child not yet on the tasklist
  4102. * - preemption disabled
  4103. */
  4104. static void task_fork_fair(struct task_struct *p)
  4105. {
  4106. struct cfs_rq *cfs_rq;
  4107. struct sched_entity *se = &p->se, *curr;
  4108. int this_cpu = smp_processor_id();
  4109. struct rq *rq = this_rq();
  4110. unsigned long flags;
  4111. raw_spin_lock_irqsave(&rq->lock, flags);
  4112. update_rq_clock(rq);
  4113. cfs_rq = task_cfs_rq(current);
  4114. curr = cfs_rq->curr;
  4115. if (unlikely(task_cpu(p) != this_cpu)) {
  4116. rcu_read_lock();
  4117. __set_task_cpu(p, this_cpu);
  4118. rcu_read_unlock();
  4119. }
  4120. update_curr(cfs_rq);
  4121. if (curr)
  4122. se->vruntime = curr->vruntime;
  4123. place_entity(cfs_rq, se, 1);
  4124. if (sysctl_sched_child_runs_first && curr && entity_before(curr, se)) {
  4125. /*
  4126. * Upon rescheduling, sched_class::put_prev_task() will place
  4127. * 'current' within the tree based on its new key value.
  4128. */
  4129. swap(curr->vruntime, se->vruntime);
  4130. resched_task(rq->curr);
  4131. }
  4132. se->vruntime -= cfs_rq->min_vruntime;
  4133. raw_spin_unlock_irqrestore(&rq->lock, flags);
  4134. }
  4135. /*
  4136. * Priority of the task has changed. Check to see if we preempt
  4137. * the current task.
  4138. */
  4139. static void
  4140. prio_changed_fair(struct rq *rq, struct task_struct *p, int oldprio)
  4141. {
  4142. if (!p->se.on_rq)
  4143. return;
  4144. /*
  4145. * Reschedule if we are currently running on this runqueue and
  4146. * our priority decreased, or if we are not currently running on
  4147. * this runqueue and our priority is higher than the current's
  4148. */
  4149. if (rq->curr == p) {
  4150. if (p->prio > oldprio)
  4151. resched_task(rq->curr);
  4152. } else
  4153. check_preempt_curr(rq, p, 0);
  4154. }
  4155. static void switched_from_fair(struct rq *rq, struct task_struct *p)
  4156. {
  4157. struct sched_entity *se = &p->se;
  4158. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  4159. /*
  4160. * Ensure the task's vruntime is normalized, so that when its
  4161. * switched back to the fair class the enqueue_entity(.flags=0) will
  4162. * do the right thing.
  4163. *
  4164. * If it was on_rq, then the dequeue_entity(.flags=0) will already
  4165. * have normalized the vruntime, if it was !on_rq, then only when
  4166. * the task is sleeping will it still have non-normalized vruntime.
  4167. */
  4168. if (!se->on_rq && p->state != TASK_RUNNING) {
  4169. /*
  4170. * Fix up our vruntime so that the current sleep doesn't
  4171. * cause 'unlimited' sleep bonus.
  4172. */
  4173. place_entity(cfs_rq, se, 0);
  4174. se->vruntime -= cfs_rq->min_vruntime;
  4175. }
  4176. }
  4177. /*
  4178. * We switched to the sched_fair class.
  4179. */
  4180. static void switched_to_fair(struct rq *rq, struct task_struct *p)
  4181. {
  4182. if (!p->se.on_rq)
  4183. return;
  4184. /*
  4185. * We were most likely switched from sched_rt, so
  4186. * kick off the schedule if running, otherwise just see
  4187. * if we can still preempt the current task.
  4188. */
  4189. if (rq->curr == p)
  4190. resched_task(rq->curr);
  4191. else
  4192. check_preempt_curr(rq, p, 0);
  4193. }
  4194. /* Account for a task changing its policy or group.
  4195. *
  4196. * This routine is mostly called to set cfs_rq->curr field when a task
  4197. * migrates between groups/classes.
  4198. */
  4199. static void set_curr_task_fair(struct rq *rq)
  4200. {
  4201. struct sched_entity *se = &rq->curr->se;
  4202. for_each_sched_entity(se) {
  4203. struct cfs_rq *cfs_rq = cfs_rq_of(se);
  4204. set_next_entity(cfs_rq, se);
  4205. /* ensure bandwidth has been allocated on our new cfs_rq */
  4206. account_cfs_rq_runtime(cfs_rq, 0);
  4207. }
  4208. }
  4209. void init_cfs_rq(struct cfs_rq *cfs_rq)
  4210. {
  4211. cfs_rq->tasks_timeline = RB_ROOT;
  4212. cfs_rq->min_vruntime = (u64)(-(1LL << 20));
  4213. #ifndef CONFIG_64BIT
  4214. cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
  4215. #endif
  4216. }
  4217. #ifdef CONFIG_FAIR_GROUP_SCHED
  4218. static void task_move_group_fair(struct task_struct *p, int on_rq)
  4219. {
  4220. /*
  4221. * If the task was not on the rq at the time of this cgroup movement
  4222. * it must have been asleep, sleeping tasks keep their ->vruntime
  4223. * absolute on their old rq until wakeup (needed for the fair sleeper
  4224. * bonus in place_entity()).
  4225. *
  4226. * If it was on the rq, we've just 'preempted' it, which does convert
  4227. * ->vruntime to a relative base.
  4228. *
  4229. * Make sure both cases convert their relative position when migrating
  4230. * to another cgroup's rq. This does somewhat interfere with the
  4231. * fair sleeper stuff for the first placement, but who cares.
  4232. */
  4233. /*
  4234. * When !on_rq, vruntime of the task has usually NOT been normalized.
  4235. * But there are some cases where it has already been normalized:
  4236. *
  4237. * - Moving a forked child which is waiting for being woken up by
  4238. * wake_up_new_task().
  4239. * - Moving a task which has been woken up by try_to_wake_up() and
  4240. * waiting for actually being woken up by sched_ttwu_pending().
  4241. *
  4242. * To prevent boost or penalty in the new cfs_rq caused by delta
  4243. * min_vruntime between the two cfs_rqs, we skip vruntime adjustment.
  4244. */
  4245. if (!on_rq && (!p->se.sum_exec_runtime || p->state == TASK_WAKING))
  4246. on_rq = 1;
  4247. if (!on_rq)
  4248. p->se.vruntime -= cfs_rq_of(&p->se)->min_vruntime;
  4249. set_task_rq(p, task_cpu(p));
  4250. if (!on_rq)
  4251. p->se.vruntime += cfs_rq_of(&p->se)->min_vruntime;
  4252. }
  4253. void free_fair_sched_group(struct task_group *tg)
  4254. {
  4255. int i;
  4256. destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
  4257. for_each_possible_cpu(i) {
  4258. if (tg->cfs_rq)
  4259. kfree(tg->cfs_rq[i]);
  4260. if (tg->se)
  4261. kfree(tg->se[i]);
  4262. }
  4263. kfree(tg->cfs_rq);
  4264. kfree(tg->se);
  4265. }
  4266. int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
  4267. {
  4268. struct cfs_rq *cfs_rq;
  4269. struct sched_entity *se;
  4270. int i;
  4271. tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
  4272. if (!tg->cfs_rq)
  4273. goto err;
  4274. tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
  4275. if (!tg->se)
  4276. goto err;
  4277. tg->shares = NICE_0_LOAD;
  4278. init_cfs_bandwidth(tg_cfs_bandwidth(tg));
  4279. for_each_possible_cpu(i) {
  4280. cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
  4281. GFP_KERNEL, cpu_to_node(i));
  4282. if (!cfs_rq)
  4283. goto err;
  4284. se = kzalloc_node(sizeof(struct sched_entity),
  4285. GFP_KERNEL, cpu_to_node(i));
  4286. if (!se)
  4287. goto err_free_rq;
  4288. init_cfs_rq(cfs_rq);
  4289. init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]);
  4290. }
  4291. return 1;
  4292. err_free_rq:
  4293. kfree(cfs_rq);
  4294. err:
  4295. return 0;
  4296. }
  4297. void unregister_fair_sched_group(struct task_group *tg, int cpu)
  4298. {
  4299. struct rq *rq = cpu_rq(cpu);
  4300. unsigned long flags;
  4301. /*
  4302. * Only empty task groups can be destroyed; so we can speculatively
  4303. * check on_list without danger of it being re-added.
  4304. */
  4305. if (!tg->cfs_rq[cpu]->on_list)
  4306. return;
  4307. raw_spin_lock_irqsave(&rq->lock, flags);
  4308. list_del_leaf_cfs_rq(tg->cfs_rq[cpu]);
  4309. raw_spin_unlock_irqrestore(&rq->lock, flags);
  4310. }
  4311. void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
  4312. struct sched_entity *se, int cpu,
  4313. struct sched_entity *parent)
  4314. {
  4315. struct rq *rq = cpu_rq(cpu);
  4316. cfs_rq->tg = tg;
  4317. cfs_rq->rq = rq;
  4318. #ifdef CONFIG_SMP
  4319. /* allow initial update_cfs_load() to truncate */
  4320. cfs_rq->load_stamp = 1;
  4321. #endif
  4322. init_cfs_rq_runtime(cfs_rq);
  4323. tg->cfs_rq[cpu] = cfs_rq;
  4324. tg->se[cpu] = se;
  4325. /* se could be NULL for root_task_group */
  4326. if (!se)
  4327. return;
  4328. if (!parent)
  4329. se->cfs_rq = &rq->cfs;
  4330. else
  4331. se->cfs_rq = parent->my_q;
  4332. se->my_q = cfs_rq;
  4333. update_load_set(&se->load, 0);
  4334. se->parent = parent;
  4335. }
  4336. static DEFINE_MUTEX(shares_mutex);
  4337. int sched_group_set_shares(struct task_group *tg, unsigned long shares)
  4338. {
  4339. int i;
  4340. unsigned long flags;
  4341. /*
  4342. * We can't change the weight of the root cgroup.
  4343. */
  4344. if (!tg->se[0])
  4345. return -EINVAL;
  4346. shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
  4347. mutex_lock(&shares_mutex);
  4348. if (tg->shares == shares)
  4349. goto done;
  4350. tg->shares = shares;
  4351. for_each_possible_cpu(i) {
  4352. struct rq *rq = cpu_rq(i);
  4353. struct sched_entity *se;
  4354. se = tg->se[i];
  4355. /* Propagate contribution to hierarchy */
  4356. raw_spin_lock_irqsave(&rq->lock, flags);
  4357. for_each_sched_entity(se)
  4358. update_cfs_shares(group_cfs_rq(se));
  4359. raw_spin_unlock_irqrestore(&rq->lock, flags);
  4360. }
  4361. done:
  4362. mutex_unlock(&shares_mutex);
  4363. return 0;
  4364. }
  4365. #else /* CONFIG_FAIR_GROUP_SCHED */
  4366. void free_fair_sched_group(struct task_group *tg) { }
  4367. int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
  4368. {
  4369. return 1;
  4370. }
  4371. void unregister_fair_sched_group(struct task_group *tg, int cpu) { }
  4372. #endif /* CONFIG_FAIR_GROUP_SCHED */
  4373. static unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task)
  4374. {
  4375. struct sched_entity *se = &task->se;
  4376. unsigned int rr_interval = 0;
  4377. /*
  4378. * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise
  4379. * idle runqueue:
  4380. */
  4381. if (rq->cfs.load.weight)
  4382. rr_interval = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
  4383. return rr_interval;
  4384. }
  4385. /*
  4386. * All the scheduling class methods:
  4387. */
  4388. const struct sched_class fair_sched_class = {
  4389. .next = &idle_sched_class,
  4390. .enqueue_task = enqueue_task_fair,
  4391. .dequeue_task = dequeue_task_fair,
  4392. .yield_task = yield_task_fair,
  4393. .yield_to_task = yield_to_task_fair,
  4394. .check_preempt_curr = check_preempt_wakeup,
  4395. .pick_next_task = pick_next_task_fair,
  4396. .put_prev_task = put_prev_task_fair,
  4397. #ifdef CONFIG_SMP
  4398. .select_task_rq = select_task_rq_fair,
  4399. .rq_online = rq_online_fair,
  4400. .rq_offline = rq_offline_fair,
  4401. .task_waking = task_waking_fair,
  4402. #endif
  4403. .set_curr_task = set_curr_task_fair,
  4404. .task_tick = task_tick_fair,
  4405. .task_fork = task_fork_fair,
  4406. .prio_changed = prio_changed_fair,
  4407. .switched_from = switched_from_fair,
  4408. .switched_to = switched_to_fair,
  4409. .get_rr_interval = get_rr_interval_fair,
  4410. #ifdef CONFIG_FAIR_GROUP_SCHED
  4411. .task_move_group = task_move_group_fair,
  4412. #endif
  4413. };
  4414. #ifdef CONFIG_SCHED_DEBUG
  4415. void print_cfs_stats(struct seq_file *m, int cpu)
  4416. {
  4417. struct cfs_rq *cfs_rq;
  4418. rcu_read_lock();
  4419. for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
  4420. print_cfs_rq(m, cpu, cfs_rq);
  4421. rcu_read_unlock();
  4422. }
  4423. #endif
  4424. __init void init_sched_fair_class(void)
  4425. {
  4426. #ifdef CONFIG_SMP
  4427. open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
  4428. #ifdef CONFIG_NO_HZ
  4429. nohz.next_balance = jiffies;
  4430. zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
  4431. cpu_notifier(sched_ilb_notifier, 0);
  4432. #endif
  4433. #endif /* SMP */
  4434. }