cpuset.c 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. /*
  2. * kernel/cpuset.c
  3. *
  4. * Processor and Memory placement constraints for sets of tasks.
  5. *
  6. * Copyright (C) 2003 BULL SA.
  7. * Copyright (C) 2004-2007 Silicon Graphics, Inc.
  8. * Copyright (C) 2006 Google, Inc
  9. *
  10. * Portions derived from Patrick Mochel's sysfs code.
  11. * sysfs is Copyright (c) 2001-3 Patrick Mochel
  12. *
  13. * 2003-10-10 Written by Simon Derr.
  14. * 2003-10-22 Updates by Stephen Hemminger.
  15. * 2004 May-July Rework by Paul Jackson.
  16. * 2006 Rework by Paul Menage to use generic cgroups
  17. * 2008 Rework of the scheduler domains and CPU hotplug handling
  18. * by Max Krasnyansky
  19. *
  20. * This file is subject to the terms and conditions of the GNU General Public
  21. * License. See the file COPYING in the main directory of the Linux
  22. * distribution for more details.
  23. */
  24. #include <linux/cpu.h>
  25. #include <linux/cpumask.h>
  26. #include <linux/cpuset.h>
  27. #include <linux/err.h>
  28. #include <linux/errno.h>
  29. #include <linux/file.h>
  30. #include <linux/fs.h>
  31. #include <linux/init.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/kernel.h>
  34. #include <linux/kmod.h>
  35. #include <linux/list.h>
  36. #include <linux/mempolicy.h>
  37. #include <linux/mm.h>
  38. #include <linux/memory.h>
  39. #include <linux/export.h>
  40. #include <linux/mount.h>
  41. #include <linux/namei.h>
  42. #include <linux/pagemap.h>
  43. #include <linux/proc_fs.h>
  44. #include <linux/rcupdate.h>
  45. #include <linux/sched.h>
  46. #include <linux/seq_file.h>
  47. #include <linux/security.h>
  48. #include <linux/slab.h>
  49. #include <linux/spinlock.h>
  50. #include <linux/stat.h>
  51. #include <linux/string.h>
  52. #include <linux/time.h>
  53. #include <linux/backing-dev.h>
  54. #include <linux/sort.h>
  55. #include <asm/uaccess.h>
  56. #include <linux/atomic.h>
  57. #include <linux/mutex.h>
  58. #include <linux/workqueue.h>
  59. #include <linux/cgroup.h>
  60. #include <linux/wait.h>
  61. /*
  62. * Tracks how many cpusets are currently defined in system.
  63. * When there is only one cpuset (the root cpuset) we can
  64. * short circuit some hooks.
  65. */
  66. int number_of_cpusets __read_mostly;
  67. /* See "Frequency meter" comments, below. */
  68. struct fmeter {
  69. int cnt; /* unprocessed events count */
  70. int val; /* most recent output value */
  71. time_t time; /* clock (secs) when val computed */
  72. spinlock_t lock; /* guards read or write of above */
  73. };
  74. struct cpuset {
  75. struct cgroup_subsys_state css;
  76. unsigned long flags; /* "unsigned long" so bitops work */
  77. cpumask_var_t cpus_allowed; /* CPUs allowed to tasks in cpuset */
  78. nodemask_t mems_allowed; /* Memory Nodes allowed to tasks */
  79. /*
  80. * This is old Memory Nodes tasks took on.
  81. *
  82. * - top_cpuset.old_mems_allowed is initialized to mems_allowed.
  83. * - A new cpuset's old_mems_allowed is initialized when some
  84. * task is moved into it.
  85. * - old_mems_allowed is used in cpuset_migrate_mm() when we change
  86. * cpuset.mems_allowed and have tasks' nodemask updated, and
  87. * then old_mems_allowed is updated to mems_allowed.
  88. */
  89. nodemask_t old_mems_allowed;
  90. struct fmeter fmeter; /* memory_pressure filter */
  91. /*
  92. * Tasks are being attached to this cpuset. Used to prevent
  93. * zeroing cpus/mems_allowed between ->can_attach() and ->attach().
  94. */
  95. int attach_in_progress;
  96. /* partition number for rebuild_sched_domains() */
  97. int pn;
  98. /* for custom sched domain */
  99. int relax_domain_level;
  100. };
  101. static inline struct cpuset *css_cs(struct cgroup_subsys_state *css)
  102. {
  103. return css ? container_of(css, struct cpuset, css) : NULL;
  104. }
  105. /* Retrieve the cpuset for a task */
  106. static inline struct cpuset *task_cs(struct task_struct *task)
  107. {
  108. return css_cs(task_css(task, cpuset_subsys_id));
  109. }
  110. static inline struct cpuset *parent_cs(struct cpuset *cs)
  111. {
  112. return css_cs(css_parent(&cs->css));
  113. }
  114. #ifdef CONFIG_NUMA
  115. static inline bool task_has_mempolicy(struct task_struct *task)
  116. {
  117. return task->mempolicy;
  118. }
  119. #else
  120. static inline bool task_has_mempolicy(struct task_struct *task)
  121. {
  122. return false;
  123. }
  124. #endif
  125. /* bits in struct cpuset flags field */
  126. typedef enum {
  127. CS_ONLINE,
  128. CS_CPU_EXCLUSIVE,
  129. CS_MEM_EXCLUSIVE,
  130. CS_MEM_HARDWALL,
  131. CS_MEMORY_MIGRATE,
  132. CS_SCHED_LOAD_BALANCE,
  133. CS_SPREAD_PAGE,
  134. CS_SPREAD_SLAB,
  135. } cpuset_flagbits_t;
  136. /* convenient tests for these bits */
  137. static inline bool is_cpuset_online(const struct cpuset *cs)
  138. {
  139. return test_bit(CS_ONLINE, &cs->flags);
  140. }
  141. static inline int is_cpu_exclusive(const struct cpuset *cs)
  142. {
  143. return test_bit(CS_CPU_EXCLUSIVE, &cs->flags);
  144. }
  145. static inline int is_mem_exclusive(const struct cpuset *cs)
  146. {
  147. return test_bit(CS_MEM_EXCLUSIVE, &cs->flags);
  148. }
  149. static inline int is_mem_hardwall(const struct cpuset *cs)
  150. {
  151. return test_bit(CS_MEM_HARDWALL, &cs->flags);
  152. }
  153. static inline int is_sched_load_balance(const struct cpuset *cs)
  154. {
  155. return test_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
  156. }
  157. static inline int is_memory_migrate(const struct cpuset *cs)
  158. {
  159. return test_bit(CS_MEMORY_MIGRATE, &cs->flags);
  160. }
  161. static inline int is_spread_page(const struct cpuset *cs)
  162. {
  163. return test_bit(CS_SPREAD_PAGE, &cs->flags);
  164. }
  165. static inline int is_spread_slab(const struct cpuset *cs)
  166. {
  167. return test_bit(CS_SPREAD_SLAB, &cs->flags);
  168. }
  169. static struct cpuset top_cpuset = {
  170. .flags = ((1 << CS_ONLINE) | (1 << CS_CPU_EXCLUSIVE) |
  171. (1 << CS_MEM_EXCLUSIVE)),
  172. };
  173. /**
  174. * cpuset_for_each_child - traverse online children of a cpuset
  175. * @child_cs: loop cursor pointing to the current child
  176. * @pos_css: used for iteration
  177. * @parent_cs: target cpuset to walk children of
  178. *
  179. * Walk @child_cs through the online children of @parent_cs. Must be used
  180. * with RCU read locked.
  181. */
  182. #define cpuset_for_each_child(child_cs, pos_css, parent_cs) \
  183. css_for_each_child((pos_css), &(parent_cs)->css) \
  184. if (is_cpuset_online(((child_cs) = css_cs((pos_css)))))
  185. /**
  186. * cpuset_for_each_descendant_pre - pre-order walk of a cpuset's descendants
  187. * @des_cs: loop cursor pointing to the current descendant
  188. * @pos_css: used for iteration
  189. * @root_cs: target cpuset to walk ancestor of
  190. *
  191. * Walk @des_cs through the online descendants of @root_cs. Must be used
  192. * with RCU read locked. The caller may modify @pos_css by calling
  193. * css_rightmost_descendant() to skip subtree. @root_cs is included in the
  194. * iteration and the first node to be visited.
  195. */
  196. #define cpuset_for_each_descendant_pre(des_cs, pos_css, root_cs) \
  197. css_for_each_descendant_pre((pos_css), &(root_cs)->css) \
  198. if (is_cpuset_online(((des_cs) = css_cs((pos_css)))))
  199. /*
  200. * There are two global mutexes guarding cpuset structures - cpuset_mutex
  201. * and callback_mutex. The latter may nest inside the former. We also
  202. * require taking task_lock() when dereferencing a task's cpuset pointer.
  203. * See "The task_lock() exception", at the end of this comment.
  204. *
  205. * A task must hold both mutexes to modify cpusets. If a task holds
  206. * cpuset_mutex, then it blocks others wanting that mutex, ensuring that it
  207. * is the only task able to also acquire callback_mutex and be able to
  208. * modify cpusets. It can perform various checks on the cpuset structure
  209. * first, knowing nothing will change. It can also allocate memory while
  210. * just holding cpuset_mutex. While it is performing these checks, various
  211. * callback routines can briefly acquire callback_mutex to query cpusets.
  212. * Once it is ready to make the changes, it takes callback_mutex, blocking
  213. * everyone else.
  214. *
  215. * Calls to the kernel memory allocator can not be made while holding
  216. * callback_mutex, as that would risk double tripping on callback_mutex
  217. * from one of the callbacks into the cpuset code from within
  218. * __alloc_pages().
  219. *
  220. * If a task is only holding callback_mutex, then it has read-only
  221. * access to cpusets.
  222. *
  223. * Now, the task_struct fields mems_allowed and mempolicy may be changed
  224. * by other task, we use alloc_lock in the task_struct fields to protect
  225. * them.
  226. *
  227. * The cpuset_common_file_read() handlers only hold callback_mutex across
  228. * small pieces of code, such as when reading out possibly multi-word
  229. * cpumasks and nodemasks.
  230. *
  231. * Accessing a task's cpuset should be done in accordance with the
  232. * guidelines for accessing subsystem state in kernel/cgroup.c
  233. */
  234. static DEFINE_MUTEX(cpuset_mutex);
  235. static DEFINE_MUTEX(callback_mutex);
  236. /*
  237. * CPU / memory hotplug is handled asynchronously.
  238. */
  239. static void cpuset_hotplug_workfn(struct work_struct *work);
  240. static DECLARE_WORK(cpuset_hotplug_work, cpuset_hotplug_workfn);
  241. static DECLARE_WAIT_QUEUE_HEAD(cpuset_attach_wq);
  242. /*
  243. * This is ugly, but preserves the userspace API for existing cpuset
  244. * users. If someone tries to mount the "cpuset" filesystem, we
  245. * silently switch it to mount "cgroup" instead
  246. */
  247. static struct dentry *cpuset_mount(struct file_system_type *fs_type,
  248. int flags, const char *unused_dev_name, void *data)
  249. {
  250. struct file_system_type *cgroup_fs = get_fs_type("cgroup");
  251. struct dentry *ret = ERR_PTR(-ENODEV);
  252. if (cgroup_fs) {
  253. char mountopts[] =
  254. "cpuset,noprefix,"
  255. "release_agent=/sbin/cpuset_release_agent";
  256. ret = cgroup_fs->mount(cgroup_fs, flags,
  257. unused_dev_name, mountopts);
  258. put_filesystem(cgroup_fs);
  259. }
  260. return ret;
  261. }
  262. static struct file_system_type cpuset_fs_type = {
  263. .name = "cpuset",
  264. .mount = cpuset_mount,
  265. };
  266. /*
  267. * Return in pmask the portion of a cpusets's cpus_allowed that
  268. * are online. If none are online, walk up the cpuset hierarchy
  269. * until we find one that does have some online cpus. The top
  270. * cpuset always has some cpus online.
  271. *
  272. * One way or another, we guarantee to return some non-empty subset
  273. * of cpu_online_mask.
  274. *
  275. * Call with callback_mutex held.
  276. */
  277. static void guarantee_online_cpus(struct cpuset *cs, struct cpumask *pmask)
  278. {
  279. while (!cpumask_intersects(cs->cpus_allowed, cpu_online_mask))
  280. cs = parent_cs(cs);
  281. cpumask_and(pmask, cs->cpus_allowed, cpu_online_mask);
  282. }
  283. /*
  284. * Return in *pmask the portion of a cpusets's mems_allowed that
  285. * are online, with memory. If none are online with memory, walk
  286. * up the cpuset hierarchy until we find one that does have some
  287. * online mems. The top cpuset always has some mems online.
  288. *
  289. * One way or another, we guarantee to return some non-empty subset
  290. * of node_states[N_MEMORY].
  291. *
  292. * Call with callback_mutex held.
  293. */
  294. static void guarantee_online_mems(struct cpuset *cs, nodemask_t *pmask)
  295. {
  296. while (!nodes_intersects(cs->mems_allowed, node_states[N_MEMORY]))
  297. cs = parent_cs(cs);
  298. nodes_and(*pmask, cs->mems_allowed, node_states[N_MEMORY]);
  299. }
  300. /*
  301. * update task's spread flag if cpuset's page/slab spread flag is set
  302. *
  303. * Called with callback_mutex/cpuset_mutex held
  304. */
  305. static void cpuset_update_task_spread_flag(struct cpuset *cs,
  306. struct task_struct *tsk)
  307. {
  308. if (is_spread_page(cs))
  309. tsk->flags |= PF_SPREAD_PAGE;
  310. else
  311. tsk->flags &= ~PF_SPREAD_PAGE;
  312. if (is_spread_slab(cs))
  313. tsk->flags |= PF_SPREAD_SLAB;
  314. else
  315. tsk->flags &= ~PF_SPREAD_SLAB;
  316. }
  317. /*
  318. * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
  319. *
  320. * One cpuset is a subset of another if all its allowed CPUs and
  321. * Memory Nodes are a subset of the other, and its exclusive flags
  322. * are only set if the other's are set. Call holding cpuset_mutex.
  323. */
  324. static int is_cpuset_subset(const struct cpuset *p, const struct cpuset *q)
  325. {
  326. return cpumask_subset(p->cpus_allowed, q->cpus_allowed) &&
  327. nodes_subset(p->mems_allowed, q->mems_allowed) &&
  328. is_cpu_exclusive(p) <= is_cpu_exclusive(q) &&
  329. is_mem_exclusive(p) <= is_mem_exclusive(q);
  330. }
  331. /**
  332. * alloc_trial_cpuset - allocate a trial cpuset
  333. * @cs: the cpuset that the trial cpuset duplicates
  334. */
  335. static struct cpuset *alloc_trial_cpuset(struct cpuset *cs)
  336. {
  337. struct cpuset *trial;
  338. trial = kmemdup(cs, sizeof(*cs), GFP_KERNEL);
  339. if (!trial)
  340. return NULL;
  341. if (!alloc_cpumask_var(&trial->cpus_allowed, GFP_KERNEL)) {
  342. kfree(trial);
  343. return NULL;
  344. }
  345. cpumask_copy(trial->cpus_allowed, cs->cpus_allowed);
  346. return trial;
  347. }
  348. /**
  349. * free_trial_cpuset - free the trial cpuset
  350. * @trial: the trial cpuset to be freed
  351. */
  352. static void free_trial_cpuset(struct cpuset *trial)
  353. {
  354. free_cpumask_var(trial->cpus_allowed);
  355. kfree(trial);
  356. }
  357. /*
  358. * validate_change() - Used to validate that any proposed cpuset change
  359. * follows the structural rules for cpusets.
  360. *
  361. * If we replaced the flag and mask values of the current cpuset
  362. * (cur) with those values in the trial cpuset (trial), would
  363. * our various subset and exclusive rules still be valid? Presumes
  364. * cpuset_mutex held.
  365. *
  366. * 'cur' is the address of an actual, in-use cpuset. Operations
  367. * such as list traversal that depend on the actual address of the
  368. * cpuset in the list must use cur below, not trial.
  369. *
  370. * 'trial' is the address of bulk structure copy of cur, with
  371. * perhaps one or more of the fields cpus_allowed, mems_allowed,
  372. * or flags changed to new, trial values.
  373. *
  374. * Return 0 if valid, -errno if not.
  375. */
  376. static int validate_change(struct cpuset *cur, struct cpuset *trial)
  377. {
  378. struct cgroup_subsys_state *css;
  379. struct cpuset *c, *par;
  380. int ret;
  381. rcu_read_lock();
  382. /* Each of our child cpusets must be a subset of us */
  383. ret = -EBUSY;
  384. cpuset_for_each_child(c, css, cur)
  385. if (!is_cpuset_subset(c, trial))
  386. goto out;
  387. /* Remaining checks don't apply to root cpuset */
  388. ret = 0;
  389. if (cur == &top_cpuset)
  390. goto out;
  391. par = parent_cs(cur);
  392. /* We must be a subset of our parent cpuset */
  393. ret = -EACCES;
  394. if (!is_cpuset_subset(trial, par))
  395. goto out;
  396. /*
  397. * If either I or some sibling (!= me) is exclusive, we can't
  398. * overlap
  399. */
  400. ret = -EINVAL;
  401. cpuset_for_each_child(c, css, par) {
  402. if ((is_cpu_exclusive(trial) || is_cpu_exclusive(c)) &&
  403. c != cur &&
  404. cpumask_intersects(trial->cpus_allowed, c->cpus_allowed))
  405. goto out;
  406. if ((is_mem_exclusive(trial) || is_mem_exclusive(c)) &&
  407. c != cur &&
  408. nodes_intersects(trial->mems_allowed, c->mems_allowed))
  409. goto out;
  410. }
  411. /*
  412. * Cpusets with tasks - existing or newly being attached - can't
  413. * be changed to have empty cpus_allowed or mems_allowed.
  414. */
  415. ret = -ENOSPC;
  416. if ((cgroup_task_count(cur->css.cgroup) || cur->attach_in_progress)) {
  417. if (!cpumask_empty(cur->cpus_allowed) &&
  418. cpumask_empty(trial->cpus_allowed))
  419. goto out;
  420. if (!nodes_empty(cur->mems_allowed) &&
  421. nodes_empty(trial->mems_allowed))
  422. goto out;
  423. }
  424. ret = 0;
  425. out:
  426. rcu_read_unlock();
  427. return ret;
  428. }
  429. #ifdef CONFIG_SMP
  430. /*
  431. * Helper routine for generate_sched_domains().
  432. * Do cpusets a, b have overlapping cpus_allowed masks?
  433. */
  434. static int cpusets_overlap(struct cpuset *a, struct cpuset *b)
  435. {
  436. return cpumask_intersects(a->cpus_allowed, b->cpus_allowed);
  437. }
  438. static void
  439. update_domain_attr(struct sched_domain_attr *dattr, struct cpuset *c)
  440. {
  441. if (dattr->relax_domain_level < c->relax_domain_level)
  442. dattr->relax_domain_level = c->relax_domain_level;
  443. return;
  444. }
  445. static void update_domain_attr_tree(struct sched_domain_attr *dattr,
  446. struct cpuset *root_cs)
  447. {
  448. struct cpuset *cp;
  449. struct cgroup_subsys_state *pos_css;
  450. rcu_read_lock();
  451. cpuset_for_each_descendant_pre(cp, pos_css, root_cs) {
  452. if (cp == root_cs)
  453. continue;
  454. /* skip the whole subtree if @cp doesn't have any CPU */
  455. if (cpumask_empty(cp->cpus_allowed)) {
  456. pos_css = css_rightmost_descendant(pos_css);
  457. continue;
  458. }
  459. if (is_sched_load_balance(cp))
  460. update_domain_attr(dattr, cp);
  461. }
  462. rcu_read_unlock();
  463. }
  464. /*
  465. * generate_sched_domains()
  466. *
  467. * This function builds a partial partition of the systems CPUs
  468. * A 'partial partition' is a set of non-overlapping subsets whose
  469. * union is a subset of that set.
  470. * The output of this function needs to be passed to kernel/sched/core.c
  471. * partition_sched_domains() routine, which will rebuild the scheduler's
  472. * load balancing domains (sched domains) as specified by that partial
  473. * partition.
  474. *
  475. * See "What is sched_load_balance" in Documentation/cgroups/cpusets.txt
  476. * for a background explanation of this.
  477. *
  478. * Does not return errors, on the theory that the callers of this
  479. * routine would rather not worry about failures to rebuild sched
  480. * domains when operating in the severe memory shortage situations
  481. * that could cause allocation failures below.
  482. *
  483. * Must be called with cpuset_mutex held.
  484. *
  485. * The three key local variables below are:
  486. * q - a linked-list queue of cpuset pointers, used to implement a
  487. * top-down scan of all cpusets. This scan loads a pointer
  488. * to each cpuset marked is_sched_load_balance into the
  489. * array 'csa'. For our purposes, rebuilding the schedulers
  490. * sched domains, we can ignore !is_sched_load_balance cpusets.
  491. * csa - (for CpuSet Array) Array of pointers to all the cpusets
  492. * that need to be load balanced, for convenient iterative
  493. * access by the subsequent code that finds the best partition,
  494. * i.e the set of domains (subsets) of CPUs such that the
  495. * cpus_allowed of every cpuset marked is_sched_load_balance
  496. * is a subset of one of these domains, while there are as
  497. * many such domains as possible, each as small as possible.
  498. * doms - Conversion of 'csa' to an array of cpumasks, for passing to
  499. * the kernel/sched/core.c routine partition_sched_domains() in a
  500. * convenient format, that can be easily compared to the prior
  501. * value to determine what partition elements (sched domains)
  502. * were changed (added or removed.)
  503. *
  504. * Finding the best partition (set of domains):
  505. * The triple nested loops below over i, j, k scan over the
  506. * load balanced cpusets (using the array of cpuset pointers in
  507. * csa[]) looking for pairs of cpusets that have overlapping
  508. * cpus_allowed, but which don't have the same 'pn' partition
  509. * number and gives them in the same partition number. It keeps
  510. * looping on the 'restart' label until it can no longer find
  511. * any such pairs.
  512. *
  513. * The union of the cpus_allowed masks from the set of
  514. * all cpusets having the same 'pn' value then form the one
  515. * element of the partition (one sched domain) to be passed to
  516. * partition_sched_domains().
  517. */
  518. static int generate_sched_domains(cpumask_var_t **domains,
  519. struct sched_domain_attr **attributes)
  520. {
  521. struct cpuset *cp; /* scans q */
  522. struct cpuset **csa; /* array of all cpuset ptrs */
  523. int csn; /* how many cpuset ptrs in csa so far */
  524. int i, j, k; /* indices for partition finding loops */
  525. cpumask_var_t *doms; /* resulting partition; i.e. sched domains */
  526. struct sched_domain_attr *dattr; /* attributes for custom domains */
  527. int ndoms = 0; /* number of sched domains in result */
  528. int nslot; /* next empty doms[] struct cpumask slot */
  529. struct cgroup_subsys_state *pos_css;
  530. doms = NULL;
  531. dattr = NULL;
  532. csa = NULL;
  533. /* Special case for the 99% of systems with one, full, sched domain */
  534. if (is_sched_load_balance(&top_cpuset)) {
  535. ndoms = 1;
  536. doms = alloc_sched_domains(ndoms);
  537. if (!doms)
  538. goto done;
  539. dattr = kmalloc(sizeof(struct sched_domain_attr), GFP_KERNEL);
  540. if (dattr) {
  541. *dattr = SD_ATTR_INIT;
  542. update_domain_attr_tree(dattr, &top_cpuset);
  543. }
  544. cpumask_copy(doms[0], top_cpuset.cpus_allowed);
  545. goto done;
  546. }
  547. csa = kmalloc(number_of_cpusets * sizeof(cp), GFP_KERNEL);
  548. if (!csa)
  549. goto done;
  550. csn = 0;
  551. rcu_read_lock();
  552. cpuset_for_each_descendant_pre(cp, pos_css, &top_cpuset) {
  553. if (cp == &top_cpuset)
  554. continue;
  555. /*
  556. * Continue traversing beyond @cp iff @cp has some CPUs and
  557. * isn't load balancing. The former is obvious. The
  558. * latter: All child cpusets contain a subset of the
  559. * parent's cpus, so just skip them, and then we call
  560. * update_domain_attr_tree() to calc relax_domain_level of
  561. * the corresponding sched domain.
  562. */
  563. if (!cpumask_empty(cp->cpus_allowed) &&
  564. !is_sched_load_balance(cp))
  565. continue;
  566. if (is_sched_load_balance(cp))
  567. csa[csn++] = cp;
  568. /* skip @cp's subtree */
  569. pos_css = css_rightmost_descendant(pos_css);
  570. }
  571. rcu_read_unlock();
  572. for (i = 0; i < csn; i++)
  573. csa[i]->pn = i;
  574. ndoms = csn;
  575. restart:
  576. /* Find the best partition (set of sched domains) */
  577. for (i = 0; i < csn; i++) {
  578. struct cpuset *a = csa[i];
  579. int apn = a->pn;
  580. for (j = 0; j < csn; j++) {
  581. struct cpuset *b = csa[j];
  582. int bpn = b->pn;
  583. if (apn != bpn && cpusets_overlap(a, b)) {
  584. for (k = 0; k < csn; k++) {
  585. struct cpuset *c = csa[k];
  586. if (c->pn == bpn)
  587. c->pn = apn;
  588. }
  589. ndoms--; /* one less element */
  590. goto restart;
  591. }
  592. }
  593. }
  594. /*
  595. * Now we know how many domains to create.
  596. * Convert <csn, csa> to <ndoms, doms> and populate cpu masks.
  597. */
  598. doms = alloc_sched_domains(ndoms);
  599. if (!doms)
  600. goto done;
  601. /*
  602. * The rest of the code, including the scheduler, can deal with
  603. * dattr==NULL case. No need to abort if alloc fails.
  604. */
  605. dattr = kmalloc(ndoms * sizeof(struct sched_domain_attr), GFP_KERNEL);
  606. for (nslot = 0, i = 0; i < csn; i++) {
  607. struct cpuset *a = csa[i];
  608. struct cpumask *dp;
  609. int apn = a->pn;
  610. if (apn < 0) {
  611. /* Skip completed partitions */
  612. continue;
  613. }
  614. dp = doms[nslot];
  615. if (nslot == ndoms) {
  616. static int warnings = 10;
  617. if (warnings) {
  618. printk(KERN_WARNING
  619. "rebuild_sched_domains confused:"
  620. " nslot %d, ndoms %d, csn %d, i %d,"
  621. " apn %d\n",
  622. nslot, ndoms, csn, i, apn);
  623. warnings--;
  624. }
  625. continue;
  626. }
  627. cpumask_clear(dp);
  628. if (dattr)
  629. *(dattr + nslot) = SD_ATTR_INIT;
  630. for (j = i; j < csn; j++) {
  631. struct cpuset *b = csa[j];
  632. if (apn == b->pn) {
  633. cpumask_or(dp, dp, b->cpus_allowed);
  634. if (dattr)
  635. update_domain_attr_tree(dattr + nslot, b);
  636. /* Done with this partition */
  637. b->pn = -1;
  638. }
  639. }
  640. nslot++;
  641. }
  642. BUG_ON(nslot != ndoms);
  643. done:
  644. kfree(csa);
  645. /*
  646. * Fallback to the default domain if kmalloc() failed.
  647. * See comments in partition_sched_domains().
  648. */
  649. if (doms == NULL)
  650. ndoms = 1;
  651. *domains = doms;
  652. *attributes = dattr;
  653. return ndoms;
  654. }
  655. /*
  656. * Rebuild scheduler domains.
  657. *
  658. * If the flag 'sched_load_balance' of any cpuset with non-empty
  659. * 'cpus' changes, or if the 'cpus' allowed changes in any cpuset
  660. * which has that flag enabled, or if any cpuset with a non-empty
  661. * 'cpus' is removed, then call this routine to rebuild the
  662. * scheduler's dynamic sched domains.
  663. *
  664. * Call with cpuset_mutex held. Takes get_online_cpus().
  665. */
  666. static void rebuild_sched_domains_locked(void)
  667. {
  668. struct sched_domain_attr *attr;
  669. cpumask_var_t *doms;
  670. int ndoms;
  671. lockdep_assert_held(&cpuset_mutex);
  672. get_online_cpus();
  673. /*
  674. * We have raced with CPU hotplug. Don't do anything to avoid
  675. * passing doms with offlined cpu to partition_sched_domains().
  676. * Anyways, hotplug work item will rebuild sched domains.
  677. */
  678. if (!cpumask_equal(top_cpuset.cpus_allowed, cpu_active_mask))
  679. goto out;
  680. /* Generate domain masks and attrs */
  681. ndoms = generate_sched_domains(&doms, &attr);
  682. /* Have scheduler rebuild the domains */
  683. partition_sched_domains(ndoms, doms, attr);
  684. out:
  685. put_online_cpus();
  686. }
  687. #else /* !CONFIG_SMP */
  688. static void rebuild_sched_domains_locked(void)
  689. {
  690. }
  691. #endif /* CONFIG_SMP */
  692. void rebuild_sched_domains(void)
  693. {
  694. mutex_lock(&cpuset_mutex);
  695. rebuild_sched_domains_locked();
  696. mutex_unlock(&cpuset_mutex);
  697. }
  698. /*
  699. * effective_cpumask_cpuset - return nearest ancestor with non-empty cpus
  700. * @cs: the cpuset in interest
  701. *
  702. * A cpuset's effective cpumask is the cpumask of the nearest ancestor
  703. * with non-empty cpus. We use effective cpumask whenever:
  704. * - we update tasks' cpus_allowed. (they take on the ancestor's cpumask
  705. * if the cpuset they reside in has no cpus)
  706. * - we want to retrieve task_cs(tsk)'s cpus_allowed.
  707. *
  708. * Called with cpuset_mutex held. cpuset_cpus_allowed_fallback() is an
  709. * exception. See comments there.
  710. */
  711. static struct cpuset *effective_cpumask_cpuset(struct cpuset *cs)
  712. {
  713. while (cpumask_empty(cs->cpus_allowed))
  714. cs = parent_cs(cs);
  715. return cs;
  716. }
  717. /*
  718. * effective_nodemask_cpuset - return nearest ancestor with non-empty mems
  719. * @cs: the cpuset in interest
  720. *
  721. * A cpuset's effective nodemask is the nodemask of the nearest ancestor
  722. * with non-empty memss. We use effective nodemask whenever:
  723. * - we update tasks' mems_allowed. (they take on the ancestor's nodemask
  724. * if the cpuset they reside in has no mems)
  725. * - we want to retrieve task_cs(tsk)'s mems_allowed.
  726. *
  727. * Called with cpuset_mutex held.
  728. */
  729. static struct cpuset *effective_nodemask_cpuset(struct cpuset *cs)
  730. {
  731. while (nodes_empty(cs->mems_allowed))
  732. cs = parent_cs(cs);
  733. return cs;
  734. }
  735. /**
  736. * cpuset_change_cpumask - make a task's cpus_allowed the same as its cpuset's
  737. * @tsk: task to test
  738. * @data: cpuset to @tsk belongs to
  739. *
  740. * Called by css_scan_tasks() for each task in a cgroup whose cpus_allowed
  741. * mask needs to be changed.
  742. *
  743. * We don't need to re-check for the cgroup/cpuset membership, since we're
  744. * holding cpuset_mutex at this point.
  745. */
  746. static void cpuset_change_cpumask(struct task_struct *tsk, void *data)
  747. {
  748. struct cpuset *cs = data;
  749. struct cpuset *cpus_cs = effective_cpumask_cpuset(cs);
  750. set_cpus_allowed_ptr(tsk, cpus_cs->cpus_allowed);
  751. }
  752. /**
  753. * update_tasks_cpumask - Update the cpumasks of tasks in the cpuset.
  754. * @cs: the cpuset in which each task's cpus_allowed mask needs to be changed
  755. * @heap: if NULL, defer allocating heap memory to css_scan_tasks()
  756. *
  757. * Called with cpuset_mutex held
  758. *
  759. * The css_scan_tasks() function will scan all the tasks in a cgroup,
  760. * calling callback functions for each.
  761. *
  762. * No return value. It's guaranteed that css_scan_tasks() always returns 0
  763. * if @heap != NULL.
  764. */
  765. static void update_tasks_cpumask(struct cpuset *cs, struct ptr_heap *heap)
  766. {
  767. css_scan_tasks(&cs->css, NULL, cpuset_change_cpumask, cs, heap);
  768. }
  769. /*
  770. * update_tasks_cpumask_hier - Update the cpumasks of tasks in the hierarchy.
  771. * @root_cs: the root cpuset of the hierarchy
  772. * @update_root: update root cpuset or not?
  773. * @heap: the heap used by css_scan_tasks()
  774. *
  775. * This will update cpumasks of tasks in @root_cs and all other empty cpusets
  776. * which take on cpumask of @root_cs.
  777. *
  778. * Called with cpuset_mutex held
  779. */
  780. static void update_tasks_cpumask_hier(struct cpuset *root_cs,
  781. bool update_root, struct ptr_heap *heap)
  782. {
  783. struct cpuset *cp;
  784. struct cgroup_subsys_state *pos_css;
  785. rcu_read_lock();
  786. cpuset_for_each_descendant_pre(cp, pos_css, root_cs) {
  787. if (cp == root_cs) {
  788. if (!update_root)
  789. continue;
  790. } else {
  791. /* skip the whole subtree if @cp have some CPU */
  792. if (!cpumask_empty(cp->cpus_allowed)) {
  793. pos_css = css_rightmost_descendant(pos_css);
  794. continue;
  795. }
  796. }
  797. if (!css_tryget(&cp->css))
  798. continue;
  799. rcu_read_unlock();
  800. update_tasks_cpumask(cp, heap);
  801. rcu_read_lock();
  802. css_put(&cp->css);
  803. }
  804. rcu_read_unlock();
  805. }
  806. /**
  807. * update_cpumask - update the cpus_allowed mask of a cpuset and all tasks in it
  808. * @cs: the cpuset to consider
  809. * @buf: buffer of cpu numbers written to this cpuset
  810. */
  811. static int update_cpumask(struct cpuset *cs, struct cpuset *trialcs,
  812. const char *buf)
  813. {
  814. struct ptr_heap heap;
  815. int retval;
  816. int is_load_balanced;
  817. /* top_cpuset.cpus_allowed tracks cpu_online_mask; it's read-only */
  818. if (cs == &top_cpuset)
  819. return -EACCES;
  820. /*
  821. * An empty cpus_allowed is ok only if the cpuset has no tasks.
  822. * Since cpulist_parse() fails on an empty mask, we special case
  823. * that parsing. The validate_change() call ensures that cpusets
  824. * with tasks have cpus.
  825. */
  826. if (!*buf) {
  827. cpumask_clear(trialcs->cpus_allowed);
  828. } else {
  829. retval = cpulist_parse(buf, trialcs->cpus_allowed);
  830. if (retval < 0)
  831. return retval;
  832. if (!cpumask_subset(trialcs->cpus_allowed, cpu_active_mask))
  833. return -EINVAL;
  834. }
  835. /* Nothing to do if the cpus didn't change */
  836. if (cpumask_equal(cs->cpus_allowed, trialcs->cpus_allowed))
  837. return 0;
  838. retval = validate_change(cs, trialcs);
  839. if (retval < 0)
  840. return retval;
  841. retval = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
  842. if (retval)
  843. return retval;
  844. is_load_balanced = is_sched_load_balance(trialcs);
  845. mutex_lock(&callback_mutex);
  846. cpumask_copy(cs->cpus_allowed, trialcs->cpus_allowed);
  847. mutex_unlock(&callback_mutex);
  848. update_tasks_cpumask_hier(cs, true, &heap);
  849. heap_free(&heap);
  850. if (is_load_balanced)
  851. rebuild_sched_domains_locked();
  852. return 0;
  853. }
  854. /*
  855. * cpuset_migrate_mm
  856. *
  857. * Migrate memory region from one set of nodes to another.
  858. *
  859. * Temporarilly set tasks mems_allowed to target nodes of migration,
  860. * so that the migration code can allocate pages on these nodes.
  861. *
  862. * Call holding cpuset_mutex, so current's cpuset won't change
  863. * during this call, as manage_mutex holds off any cpuset_attach()
  864. * calls. Therefore we don't need to take task_lock around the
  865. * call to guarantee_online_mems(), as we know no one is changing
  866. * our task's cpuset.
  867. *
  868. * While the mm_struct we are migrating is typically from some
  869. * other task, the task_struct mems_allowed that we are hacking
  870. * is for our current task, which must allocate new pages for that
  871. * migrating memory region.
  872. */
  873. static void cpuset_migrate_mm(struct mm_struct *mm, const nodemask_t *from,
  874. const nodemask_t *to)
  875. {
  876. struct task_struct *tsk = current;
  877. struct cpuset *mems_cs;
  878. tsk->mems_allowed = *to;
  879. do_migrate_pages(mm, from, to, MPOL_MF_MOVE_ALL);
  880. mems_cs = effective_nodemask_cpuset(task_cs(tsk));
  881. guarantee_online_mems(mems_cs, &tsk->mems_allowed);
  882. }
  883. /*
  884. * cpuset_change_task_nodemask - change task's mems_allowed and mempolicy
  885. * @tsk: the task to change
  886. * @newmems: new nodes that the task will be set
  887. *
  888. * In order to avoid seeing no nodes if the old and new nodes are disjoint,
  889. * we structure updates as setting all new allowed nodes, then clearing newly
  890. * disallowed ones.
  891. */
  892. static void cpuset_change_task_nodemask(struct task_struct *tsk,
  893. nodemask_t *newmems)
  894. {
  895. bool need_loop;
  896. /*
  897. * Allow tasks that have access to memory reserves because they have
  898. * been OOM killed to get memory anywhere.
  899. */
  900. if (unlikely(test_thread_flag(TIF_MEMDIE)))
  901. return;
  902. if (current->flags & PF_EXITING) /* Let dying task have memory */
  903. return;
  904. task_lock(tsk);
  905. /*
  906. * Determine if a loop is necessary if another thread is doing
  907. * get_mems_allowed(). If at least one node remains unchanged and
  908. * tsk does not have a mempolicy, then an empty nodemask will not be
  909. * possible when mems_allowed is larger than a word.
  910. */
  911. need_loop = task_has_mempolicy(tsk) ||
  912. !nodes_intersects(*newmems, tsk->mems_allowed);
  913. if (need_loop)
  914. write_seqcount_begin(&tsk->mems_allowed_seq);
  915. nodes_or(tsk->mems_allowed, tsk->mems_allowed, *newmems);
  916. mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP1);
  917. mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP2);
  918. tsk->mems_allowed = *newmems;
  919. if (need_loop)
  920. write_seqcount_end(&tsk->mems_allowed_seq);
  921. task_unlock(tsk);
  922. }
  923. struct cpuset_change_nodemask_arg {
  924. struct cpuset *cs;
  925. nodemask_t *newmems;
  926. };
  927. /*
  928. * Update task's mems_allowed and rebind its mempolicy and vmas' mempolicy
  929. * of it to cpuset's new mems_allowed, and migrate pages to new nodes if
  930. * memory_migrate flag is set. Called with cpuset_mutex held.
  931. */
  932. static void cpuset_change_nodemask(struct task_struct *p, void *data)
  933. {
  934. struct cpuset_change_nodemask_arg *arg = data;
  935. struct cpuset *cs = arg->cs;
  936. struct mm_struct *mm;
  937. int migrate;
  938. cpuset_change_task_nodemask(p, arg->newmems);
  939. mm = get_task_mm(p);
  940. if (!mm)
  941. return;
  942. migrate = is_memory_migrate(cs);
  943. mpol_rebind_mm(mm, &cs->mems_allowed);
  944. if (migrate)
  945. cpuset_migrate_mm(mm, &cs->old_mems_allowed, arg->newmems);
  946. mmput(mm);
  947. }
  948. static void *cpuset_being_rebound;
  949. /**
  950. * update_tasks_nodemask - Update the nodemasks of tasks in the cpuset.
  951. * @cs: the cpuset in which each task's mems_allowed mask needs to be changed
  952. * @heap: if NULL, defer allocating heap memory to css_scan_tasks()
  953. *
  954. * Called with cpuset_mutex held. No return value. It's guaranteed that
  955. * css_scan_tasks() always returns 0 if @heap != NULL.
  956. */
  957. static void update_tasks_nodemask(struct cpuset *cs, struct ptr_heap *heap)
  958. {
  959. static nodemask_t newmems; /* protected by cpuset_mutex */
  960. struct cpuset *mems_cs = effective_nodemask_cpuset(cs);
  961. struct cpuset_change_nodemask_arg arg = { .cs = cs,
  962. .newmems = &newmems };
  963. cpuset_being_rebound = cs; /* causes mpol_dup() rebind */
  964. guarantee_online_mems(mems_cs, &newmems);
  965. /*
  966. * The mpol_rebind_mm() call takes mmap_sem, which we couldn't
  967. * take while holding tasklist_lock. Forks can happen - the
  968. * mpol_dup() cpuset_being_rebound check will catch such forks,
  969. * and rebind their vma mempolicies too. Because we still hold
  970. * the global cpuset_mutex, we know that no other rebind effort
  971. * will be contending for the global variable cpuset_being_rebound.
  972. * It's ok if we rebind the same mm twice; mpol_rebind_mm()
  973. * is idempotent. Also migrate pages in each mm to new nodes.
  974. */
  975. css_scan_tasks(&cs->css, NULL, cpuset_change_nodemask, &arg, heap);
  976. /*
  977. * All the tasks' nodemasks have been updated, update
  978. * cs->old_mems_allowed.
  979. */
  980. cs->old_mems_allowed = newmems;
  981. /* We're done rebinding vmas to this cpuset's new mems_allowed. */
  982. cpuset_being_rebound = NULL;
  983. }
  984. /*
  985. * update_tasks_nodemask_hier - Update the nodemasks of tasks in the hierarchy.
  986. * @cs: the root cpuset of the hierarchy
  987. * @update_root: update the root cpuset or not?
  988. * @heap: the heap used by css_scan_tasks()
  989. *
  990. * This will update nodemasks of tasks in @root_cs and all other empty cpusets
  991. * which take on nodemask of @root_cs.
  992. *
  993. * Called with cpuset_mutex held
  994. */
  995. static void update_tasks_nodemask_hier(struct cpuset *root_cs,
  996. bool update_root, struct ptr_heap *heap)
  997. {
  998. struct cpuset *cp;
  999. struct cgroup_subsys_state *pos_css;
  1000. rcu_read_lock();
  1001. cpuset_for_each_descendant_pre(cp, pos_css, root_cs) {
  1002. if (cp == root_cs) {
  1003. if (!update_root)
  1004. continue;
  1005. } else {
  1006. /* skip the whole subtree if @cp have some CPU */
  1007. if (!nodes_empty(cp->mems_allowed)) {
  1008. pos_css = css_rightmost_descendant(pos_css);
  1009. continue;
  1010. }
  1011. }
  1012. if (!css_tryget(&cp->css))
  1013. continue;
  1014. rcu_read_unlock();
  1015. update_tasks_nodemask(cp, heap);
  1016. rcu_read_lock();
  1017. css_put(&cp->css);
  1018. }
  1019. rcu_read_unlock();
  1020. }
  1021. /*
  1022. * Handle user request to change the 'mems' memory placement
  1023. * of a cpuset. Needs to validate the request, update the
  1024. * cpusets mems_allowed, and for each task in the cpuset,
  1025. * update mems_allowed and rebind task's mempolicy and any vma
  1026. * mempolicies and if the cpuset is marked 'memory_migrate',
  1027. * migrate the tasks pages to the new memory.
  1028. *
  1029. * Call with cpuset_mutex held. May take callback_mutex during call.
  1030. * Will take tasklist_lock, scan tasklist for tasks in cpuset cs,
  1031. * lock each such tasks mm->mmap_sem, scan its vma's and rebind
  1032. * their mempolicies to the cpusets new mems_allowed.
  1033. */
  1034. static int update_nodemask(struct cpuset *cs, struct cpuset *trialcs,
  1035. const char *buf)
  1036. {
  1037. int retval;
  1038. struct ptr_heap heap;
  1039. /*
  1040. * top_cpuset.mems_allowed tracks node_stats[N_MEMORY];
  1041. * it's read-only
  1042. */
  1043. if (cs == &top_cpuset) {
  1044. retval = -EACCES;
  1045. goto done;
  1046. }
  1047. /*
  1048. * An empty mems_allowed is ok iff there are no tasks in the cpuset.
  1049. * Since nodelist_parse() fails on an empty mask, we special case
  1050. * that parsing. The validate_change() call ensures that cpusets
  1051. * with tasks have memory.
  1052. */
  1053. if (!*buf) {
  1054. nodes_clear(trialcs->mems_allowed);
  1055. } else {
  1056. retval = nodelist_parse(buf, trialcs->mems_allowed);
  1057. if (retval < 0)
  1058. goto done;
  1059. if (!nodes_subset(trialcs->mems_allowed,
  1060. node_states[N_MEMORY])) {
  1061. retval = -EINVAL;
  1062. goto done;
  1063. }
  1064. }
  1065. if (nodes_equal(cs->mems_allowed, trialcs->mems_allowed)) {
  1066. retval = 0; /* Too easy - nothing to do */
  1067. goto done;
  1068. }
  1069. retval = validate_change(cs, trialcs);
  1070. if (retval < 0)
  1071. goto done;
  1072. retval = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
  1073. if (retval < 0)
  1074. goto done;
  1075. mutex_lock(&callback_mutex);
  1076. cs->mems_allowed = trialcs->mems_allowed;
  1077. mutex_unlock(&callback_mutex);
  1078. update_tasks_nodemask_hier(cs, true, &heap);
  1079. heap_free(&heap);
  1080. done:
  1081. return retval;
  1082. }
  1083. int current_cpuset_is_being_rebound(void)
  1084. {
  1085. return task_cs(current) == cpuset_being_rebound;
  1086. }
  1087. static int update_relax_domain_level(struct cpuset *cs, s64 val)
  1088. {
  1089. #ifdef CONFIG_SMP
  1090. if (val < -1 || val >= sched_domain_level_max)
  1091. return -EINVAL;
  1092. #endif
  1093. if (val != cs->relax_domain_level) {
  1094. cs->relax_domain_level = val;
  1095. if (!cpumask_empty(cs->cpus_allowed) &&
  1096. is_sched_load_balance(cs))
  1097. rebuild_sched_domains_locked();
  1098. }
  1099. return 0;
  1100. }
  1101. /**
  1102. * cpuset_change_flag - make a task's spread flags the same as its cpuset's
  1103. * @tsk: task to be updated
  1104. * @data: cpuset to @tsk belongs to
  1105. *
  1106. * Called by css_scan_tasks() for each task in a cgroup.
  1107. *
  1108. * We don't need to re-check for the cgroup/cpuset membership, since we're
  1109. * holding cpuset_mutex at this point.
  1110. */
  1111. static void cpuset_change_flag(struct task_struct *tsk, void *data)
  1112. {
  1113. struct cpuset *cs = data;
  1114. cpuset_update_task_spread_flag(cs, tsk);
  1115. }
  1116. /**
  1117. * update_tasks_flags - update the spread flags of tasks in the cpuset.
  1118. * @cs: the cpuset in which each task's spread flags needs to be changed
  1119. * @heap: if NULL, defer allocating heap memory to css_scan_tasks()
  1120. *
  1121. * Called with cpuset_mutex held
  1122. *
  1123. * The css_scan_tasks() function will scan all the tasks in a cgroup,
  1124. * calling callback functions for each.
  1125. *
  1126. * No return value. It's guaranteed that css_scan_tasks() always returns 0
  1127. * if @heap != NULL.
  1128. */
  1129. static void update_tasks_flags(struct cpuset *cs, struct ptr_heap *heap)
  1130. {
  1131. css_scan_tasks(&cs->css, NULL, cpuset_change_flag, cs, heap);
  1132. }
  1133. /*
  1134. * update_flag - read a 0 or a 1 in a file and update associated flag
  1135. * bit: the bit to update (see cpuset_flagbits_t)
  1136. * cs: the cpuset to update
  1137. * turning_on: whether the flag is being set or cleared
  1138. *
  1139. * Call with cpuset_mutex held.
  1140. */
  1141. static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs,
  1142. int turning_on)
  1143. {
  1144. struct cpuset *trialcs;
  1145. int balance_flag_changed;
  1146. int spread_flag_changed;
  1147. struct ptr_heap heap;
  1148. int err;
  1149. trialcs = alloc_trial_cpuset(cs);
  1150. if (!trialcs)
  1151. return -ENOMEM;
  1152. if (turning_on)
  1153. set_bit(bit, &trialcs->flags);
  1154. else
  1155. clear_bit(bit, &trialcs->flags);
  1156. err = validate_change(cs, trialcs);
  1157. if (err < 0)
  1158. goto out;
  1159. err = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
  1160. if (err < 0)
  1161. goto out;
  1162. balance_flag_changed = (is_sched_load_balance(cs) !=
  1163. is_sched_load_balance(trialcs));
  1164. spread_flag_changed = ((is_spread_slab(cs) != is_spread_slab(trialcs))
  1165. || (is_spread_page(cs) != is_spread_page(trialcs)));
  1166. mutex_lock(&callback_mutex);
  1167. cs->flags = trialcs->flags;
  1168. mutex_unlock(&callback_mutex);
  1169. if (!cpumask_empty(trialcs->cpus_allowed) && balance_flag_changed)
  1170. rebuild_sched_domains_locked();
  1171. if (spread_flag_changed)
  1172. update_tasks_flags(cs, &heap);
  1173. heap_free(&heap);
  1174. out:
  1175. free_trial_cpuset(trialcs);
  1176. return err;
  1177. }
  1178. /*
  1179. * Frequency meter - How fast is some event occurring?
  1180. *
  1181. * These routines manage a digitally filtered, constant time based,
  1182. * event frequency meter. There are four routines:
  1183. * fmeter_init() - initialize a frequency meter.
  1184. * fmeter_markevent() - called each time the event happens.
  1185. * fmeter_getrate() - returns the recent rate of such events.
  1186. * fmeter_update() - internal routine used to update fmeter.
  1187. *
  1188. * A common data structure is passed to each of these routines,
  1189. * which is used to keep track of the state required to manage the
  1190. * frequency meter and its digital filter.
  1191. *
  1192. * The filter works on the number of events marked per unit time.
  1193. * The filter is single-pole low-pass recursive (IIR). The time unit
  1194. * is 1 second. Arithmetic is done using 32-bit integers scaled to
  1195. * simulate 3 decimal digits of precision (multiplied by 1000).
  1196. *
  1197. * With an FM_COEF of 933, and a time base of 1 second, the filter
  1198. * has a half-life of 10 seconds, meaning that if the events quit
  1199. * happening, then the rate returned from the fmeter_getrate()
  1200. * will be cut in half each 10 seconds, until it converges to zero.
  1201. *
  1202. * It is not worth doing a real infinitely recursive filter. If more
  1203. * than FM_MAXTICKS ticks have elapsed since the last filter event,
  1204. * just compute FM_MAXTICKS ticks worth, by which point the level
  1205. * will be stable.
  1206. *
  1207. * Limit the count of unprocessed events to FM_MAXCNT, so as to avoid
  1208. * arithmetic overflow in the fmeter_update() routine.
  1209. *
  1210. * Given the simple 32 bit integer arithmetic used, this meter works
  1211. * best for reporting rates between one per millisecond (msec) and
  1212. * one per 32 (approx) seconds. At constant rates faster than one
  1213. * per msec it maxes out at values just under 1,000,000. At constant
  1214. * rates between one per msec, and one per second it will stabilize
  1215. * to a value N*1000, where N is the rate of events per second.
  1216. * At constant rates between one per second and one per 32 seconds,
  1217. * it will be choppy, moving up on the seconds that have an event,
  1218. * and then decaying until the next event. At rates slower than
  1219. * about one in 32 seconds, it decays all the way back to zero between
  1220. * each event.
  1221. */
  1222. #define FM_COEF 933 /* coefficient for half-life of 10 secs */
  1223. #define FM_MAXTICKS ((time_t)99) /* useless computing more ticks than this */
  1224. #define FM_MAXCNT 1000000 /* limit cnt to avoid overflow */
  1225. #define FM_SCALE 1000 /* faux fixed point scale */
  1226. /* Initialize a frequency meter */
  1227. static void fmeter_init(struct fmeter *fmp)
  1228. {
  1229. fmp->cnt = 0;
  1230. fmp->val = 0;
  1231. fmp->time = 0;
  1232. spin_lock_init(&fmp->lock);
  1233. }
  1234. /* Internal meter update - process cnt events and update value */
  1235. static void fmeter_update(struct fmeter *fmp)
  1236. {
  1237. time_t now = get_seconds();
  1238. time_t ticks = now - fmp->time;
  1239. if (ticks == 0)
  1240. return;
  1241. ticks = min(FM_MAXTICKS, ticks);
  1242. while (ticks-- > 0)
  1243. fmp->val = (FM_COEF * fmp->val) / FM_SCALE;
  1244. fmp->time = now;
  1245. fmp->val += ((FM_SCALE - FM_COEF) * fmp->cnt) / FM_SCALE;
  1246. fmp->cnt = 0;
  1247. }
  1248. /* Process any previous ticks, then bump cnt by one (times scale). */
  1249. static void fmeter_markevent(struct fmeter *fmp)
  1250. {
  1251. spin_lock(&fmp->lock);
  1252. fmeter_update(fmp);
  1253. fmp->cnt = min(FM_MAXCNT, fmp->cnt + FM_SCALE);
  1254. spin_unlock(&fmp->lock);
  1255. }
  1256. /* Process any previous ticks, then return current value. */
  1257. static int fmeter_getrate(struct fmeter *fmp)
  1258. {
  1259. int val;
  1260. spin_lock(&fmp->lock);
  1261. fmeter_update(fmp);
  1262. val = fmp->val;
  1263. spin_unlock(&fmp->lock);
  1264. return val;
  1265. }
  1266. /* Called by cgroups to determine if a cpuset is usable; cpuset_mutex held */
  1267. static int cpuset_can_attach(struct cgroup_subsys_state *css,
  1268. struct cgroup_taskset *tset)
  1269. {
  1270. struct cpuset *cs = css_cs(css);
  1271. struct task_struct *task;
  1272. int ret;
  1273. mutex_lock(&cpuset_mutex);
  1274. /*
  1275. * We allow to move tasks into an empty cpuset if sane_behavior
  1276. * flag is set.
  1277. */
  1278. ret = -ENOSPC;
  1279. if (!cgroup_sane_behavior(css->cgroup) &&
  1280. (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed)))
  1281. goto out_unlock;
  1282. cgroup_taskset_for_each(task, css, tset) {
  1283. /*
  1284. * Kthreads which disallow setaffinity shouldn't be moved
  1285. * to a new cpuset; we don't want to change their cpu
  1286. * affinity and isolating such threads by their set of
  1287. * allowed nodes is unnecessary. Thus, cpusets are not
  1288. * applicable for such threads. This prevents checking for
  1289. * success of set_cpus_allowed_ptr() on all attached tasks
  1290. * before cpus_allowed may be changed.
  1291. */
  1292. ret = -EINVAL;
  1293. if (task->flags & PF_NO_SETAFFINITY)
  1294. goto out_unlock;
  1295. ret = security_task_setscheduler(task);
  1296. if (ret)
  1297. goto out_unlock;
  1298. }
  1299. /*
  1300. * Mark attach is in progress. This makes validate_change() fail
  1301. * changes which zero cpus/mems_allowed.
  1302. */
  1303. cs->attach_in_progress++;
  1304. ret = 0;
  1305. out_unlock:
  1306. mutex_unlock(&cpuset_mutex);
  1307. return ret;
  1308. }
  1309. static void cpuset_cancel_attach(struct cgroup_subsys_state *css,
  1310. struct cgroup_taskset *tset)
  1311. {
  1312. mutex_lock(&cpuset_mutex);
  1313. css_cs(css)->attach_in_progress--;
  1314. mutex_unlock(&cpuset_mutex);
  1315. }
  1316. /*
  1317. * Protected by cpuset_mutex. cpus_attach is used only by cpuset_attach()
  1318. * but we can't allocate it dynamically there. Define it global and
  1319. * allocate from cpuset_init().
  1320. */
  1321. static cpumask_var_t cpus_attach;
  1322. static void cpuset_attach(struct cgroup_subsys_state *css,
  1323. struct cgroup_taskset *tset)
  1324. {
  1325. /* static buf protected by cpuset_mutex */
  1326. static nodemask_t cpuset_attach_nodemask_to;
  1327. struct mm_struct *mm;
  1328. struct task_struct *task;
  1329. struct task_struct *leader = cgroup_taskset_first(tset);
  1330. struct cgroup_subsys_state *oldcss = cgroup_taskset_cur_css(tset,
  1331. cpuset_subsys_id);
  1332. struct cpuset *cs = css_cs(css);
  1333. struct cpuset *oldcs = css_cs(oldcss);
  1334. struct cpuset *cpus_cs = effective_cpumask_cpuset(cs);
  1335. struct cpuset *mems_cs = effective_nodemask_cpuset(cs);
  1336. mutex_lock(&cpuset_mutex);
  1337. /* prepare for attach */
  1338. if (cs == &top_cpuset)
  1339. cpumask_copy(cpus_attach, cpu_possible_mask);
  1340. else
  1341. guarantee_online_cpus(cpus_cs, cpus_attach);
  1342. guarantee_online_mems(mems_cs, &cpuset_attach_nodemask_to);
  1343. cgroup_taskset_for_each(task, css, tset) {
  1344. /*
  1345. * can_attach beforehand should guarantee that this doesn't
  1346. * fail. TODO: have a better way to handle failure here
  1347. */
  1348. WARN_ON_ONCE(set_cpus_allowed_ptr(task, cpus_attach));
  1349. cpuset_change_task_nodemask(task, &cpuset_attach_nodemask_to);
  1350. cpuset_update_task_spread_flag(cs, task);
  1351. }
  1352. /*
  1353. * Change mm, possibly for multiple threads in a threadgroup. This is
  1354. * expensive and may sleep.
  1355. */
  1356. cpuset_attach_nodemask_to = cs->mems_allowed;
  1357. mm = get_task_mm(leader);
  1358. if (mm) {
  1359. struct cpuset *mems_oldcs = effective_nodemask_cpuset(oldcs);
  1360. mpol_rebind_mm(mm, &cpuset_attach_nodemask_to);
  1361. /*
  1362. * old_mems_allowed is the same with mems_allowed here, except
  1363. * if this task is being moved automatically due to hotplug.
  1364. * In that case @mems_allowed has been updated and is empty,
  1365. * so @old_mems_allowed is the right nodesets that we migrate
  1366. * mm from.
  1367. */
  1368. if (is_memory_migrate(cs)) {
  1369. cpuset_migrate_mm(mm, &mems_oldcs->old_mems_allowed,
  1370. &cpuset_attach_nodemask_to);
  1371. }
  1372. mmput(mm);
  1373. }
  1374. cs->old_mems_allowed = cpuset_attach_nodemask_to;
  1375. cs->attach_in_progress--;
  1376. if (!cs->attach_in_progress)
  1377. wake_up(&cpuset_attach_wq);
  1378. mutex_unlock(&cpuset_mutex);
  1379. }
  1380. /* The various types of files and directories in a cpuset file system */
  1381. typedef enum {
  1382. FILE_MEMORY_MIGRATE,
  1383. FILE_CPULIST,
  1384. FILE_MEMLIST,
  1385. FILE_CPU_EXCLUSIVE,
  1386. FILE_MEM_EXCLUSIVE,
  1387. FILE_MEM_HARDWALL,
  1388. FILE_SCHED_LOAD_BALANCE,
  1389. FILE_SCHED_RELAX_DOMAIN_LEVEL,
  1390. FILE_MEMORY_PRESSURE_ENABLED,
  1391. FILE_MEMORY_PRESSURE,
  1392. FILE_SPREAD_PAGE,
  1393. FILE_SPREAD_SLAB,
  1394. } cpuset_filetype_t;
  1395. static int cpuset_write_u64(struct cgroup_subsys_state *css, struct cftype *cft,
  1396. u64 val)
  1397. {
  1398. struct cpuset *cs = css_cs(css);
  1399. cpuset_filetype_t type = cft->private;
  1400. int retval = 0;
  1401. mutex_lock(&cpuset_mutex);
  1402. if (!is_cpuset_online(cs)) {
  1403. retval = -ENODEV;
  1404. goto out_unlock;
  1405. }
  1406. switch (type) {
  1407. case FILE_CPU_EXCLUSIVE:
  1408. retval = update_flag(CS_CPU_EXCLUSIVE, cs, val);
  1409. break;
  1410. case FILE_MEM_EXCLUSIVE:
  1411. retval = update_flag(CS_MEM_EXCLUSIVE, cs, val);
  1412. break;
  1413. case FILE_MEM_HARDWALL:
  1414. retval = update_flag(CS_MEM_HARDWALL, cs, val);
  1415. break;
  1416. case FILE_SCHED_LOAD_BALANCE:
  1417. retval = update_flag(CS_SCHED_LOAD_BALANCE, cs, val);
  1418. break;
  1419. case FILE_MEMORY_MIGRATE:
  1420. retval = update_flag(CS_MEMORY_MIGRATE, cs, val);
  1421. break;
  1422. case FILE_MEMORY_PRESSURE_ENABLED:
  1423. cpuset_memory_pressure_enabled = !!val;
  1424. break;
  1425. case FILE_MEMORY_PRESSURE:
  1426. retval = -EACCES;
  1427. break;
  1428. case FILE_SPREAD_PAGE:
  1429. retval = update_flag(CS_SPREAD_PAGE, cs, val);
  1430. break;
  1431. case FILE_SPREAD_SLAB:
  1432. retval = update_flag(CS_SPREAD_SLAB, cs, val);
  1433. break;
  1434. default:
  1435. retval = -EINVAL;
  1436. break;
  1437. }
  1438. out_unlock:
  1439. mutex_unlock(&cpuset_mutex);
  1440. return retval;
  1441. }
  1442. static int cpuset_write_s64(struct cgroup_subsys_state *css, struct cftype *cft,
  1443. s64 val)
  1444. {
  1445. struct cpuset *cs = css_cs(css);
  1446. cpuset_filetype_t type = cft->private;
  1447. int retval = -ENODEV;
  1448. mutex_lock(&cpuset_mutex);
  1449. if (!is_cpuset_online(cs))
  1450. goto out_unlock;
  1451. switch (type) {
  1452. case FILE_SCHED_RELAX_DOMAIN_LEVEL:
  1453. retval = update_relax_domain_level(cs, val);
  1454. break;
  1455. default:
  1456. retval = -EINVAL;
  1457. break;
  1458. }
  1459. out_unlock:
  1460. mutex_unlock(&cpuset_mutex);
  1461. return retval;
  1462. }
  1463. /*
  1464. * Common handling for a write to a "cpus" or "mems" file.
  1465. */
  1466. static int cpuset_write_resmask(struct cgroup_subsys_state *css,
  1467. struct cftype *cft, const char *buf)
  1468. {
  1469. struct cpuset *cs = css_cs(css);
  1470. struct cpuset *trialcs;
  1471. int retval = -ENODEV;
  1472. /*
  1473. * CPU or memory hotunplug may leave @cs w/o any execution
  1474. * resources, in which case the hotplug code asynchronously updates
  1475. * configuration and transfers all tasks to the nearest ancestor
  1476. * which can execute.
  1477. *
  1478. * As writes to "cpus" or "mems" may restore @cs's execution
  1479. * resources, wait for the previously scheduled operations before
  1480. * proceeding, so that we don't end up keep removing tasks added
  1481. * after execution capability is restored.
  1482. */
  1483. flush_work(&cpuset_hotplug_work);
  1484. mutex_lock(&cpuset_mutex);
  1485. if (!is_cpuset_online(cs))
  1486. goto out_unlock;
  1487. trialcs = alloc_trial_cpuset(cs);
  1488. if (!trialcs) {
  1489. retval = -ENOMEM;
  1490. goto out_unlock;
  1491. }
  1492. switch (cft->private) {
  1493. case FILE_CPULIST:
  1494. retval = update_cpumask(cs, trialcs, buf);
  1495. break;
  1496. case FILE_MEMLIST:
  1497. retval = update_nodemask(cs, trialcs, buf);
  1498. break;
  1499. default:
  1500. retval = -EINVAL;
  1501. break;
  1502. }
  1503. free_trial_cpuset(trialcs);
  1504. out_unlock:
  1505. mutex_unlock(&cpuset_mutex);
  1506. return retval;
  1507. }
  1508. /*
  1509. * These ascii lists should be read in a single call, by using a user
  1510. * buffer large enough to hold the entire map. If read in smaller
  1511. * chunks, there is no guarantee of atomicity. Since the display format
  1512. * used, list of ranges of sequential numbers, is variable length,
  1513. * and since these maps can change value dynamically, one could read
  1514. * gibberish by doing partial reads while a list was changing.
  1515. * A single large read to a buffer that crosses a page boundary is
  1516. * ok, because the result being copied to user land is not recomputed
  1517. * across a page fault.
  1518. */
  1519. static size_t cpuset_sprintf_cpulist(char *page, struct cpuset *cs)
  1520. {
  1521. size_t count;
  1522. mutex_lock(&callback_mutex);
  1523. count = cpulist_scnprintf(page, PAGE_SIZE, cs->cpus_allowed);
  1524. mutex_unlock(&callback_mutex);
  1525. return count;
  1526. }
  1527. static size_t cpuset_sprintf_memlist(char *page, struct cpuset *cs)
  1528. {
  1529. size_t count;
  1530. mutex_lock(&callback_mutex);
  1531. count = nodelist_scnprintf(page, PAGE_SIZE, cs->mems_allowed);
  1532. mutex_unlock(&callback_mutex);
  1533. return count;
  1534. }
  1535. static ssize_t cpuset_common_file_read(struct cgroup_subsys_state *css,
  1536. struct cftype *cft, struct file *file,
  1537. char __user *buf, size_t nbytes,
  1538. loff_t *ppos)
  1539. {
  1540. struct cpuset *cs = css_cs(css);
  1541. cpuset_filetype_t type = cft->private;
  1542. char *page;
  1543. ssize_t retval = 0;
  1544. char *s;
  1545. if (!(page = (char *)__get_free_page(GFP_TEMPORARY)))
  1546. return -ENOMEM;
  1547. s = page;
  1548. switch (type) {
  1549. case FILE_CPULIST:
  1550. s += cpuset_sprintf_cpulist(s, cs);
  1551. break;
  1552. case FILE_MEMLIST:
  1553. s += cpuset_sprintf_memlist(s, cs);
  1554. break;
  1555. default:
  1556. retval = -EINVAL;
  1557. goto out;
  1558. }
  1559. *s++ = '\n';
  1560. retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
  1561. out:
  1562. free_page((unsigned long)page);
  1563. return retval;
  1564. }
  1565. static u64 cpuset_read_u64(struct cgroup_subsys_state *css, struct cftype *cft)
  1566. {
  1567. struct cpuset *cs = css_cs(css);
  1568. cpuset_filetype_t type = cft->private;
  1569. switch (type) {
  1570. case FILE_CPU_EXCLUSIVE:
  1571. return is_cpu_exclusive(cs);
  1572. case FILE_MEM_EXCLUSIVE:
  1573. return is_mem_exclusive(cs);
  1574. case FILE_MEM_HARDWALL:
  1575. return is_mem_hardwall(cs);
  1576. case FILE_SCHED_LOAD_BALANCE:
  1577. return is_sched_load_balance(cs);
  1578. case FILE_MEMORY_MIGRATE:
  1579. return is_memory_migrate(cs);
  1580. case FILE_MEMORY_PRESSURE_ENABLED:
  1581. return cpuset_memory_pressure_enabled;
  1582. case FILE_MEMORY_PRESSURE:
  1583. return fmeter_getrate(&cs->fmeter);
  1584. case FILE_SPREAD_PAGE:
  1585. return is_spread_page(cs);
  1586. case FILE_SPREAD_SLAB:
  1587. return is_spread_slab(cs);
  1588. default:
  1589. BUG();
  1590. }
  1591. /* Unreachable but makes gcc happy */
  1592. return 0;
  1593. }
  1594. static s64 cpuset_read_s64(struct cgroup_subsys_state *css, struct cftype *cft)
  1595. {
  1596. struct cpuset *cs = css_cs(css);
  1597. cpuset_filetype_t type = cft->private;
  1598. switch (type) {
  1599. case FILE_SCHED_RELAX_DOMAIN_LEVEL:
  1600. return cs->relax_domain_level;
  1601. default:
  1602. BUG();
  1603. }
  1604. /* Unrechable but makes gcc happy */
  1605. return 0;
  1606. }
  1607. /*
  1608. * for the common functions, 'private' gives the type of file
  1609. */
  1610. static struct cftype files[] = {
  1611. {
  1612. .name = "cpus",
  1613. .read = cpuset_common_file_read,
  1614. .write_string = cpuset_write_resmask,
  1615. .max_write_len = (100U + 6 * NR_CPUS),
  1616. .private = FILE_CPULIST,
  1617. },
  1618. {
  1619. .name = "mems",
  1620. .read = cpuset_common_file_read,
  1621. .write_string = cpuset_write_resmask,
  1622. .max_write_len = (100U + 6 * MAX_NUMNODES),
  1623. .private = FILE_MEMLIST,
  1624. },
  1625. {
  1626. .name = "cpu_exclusive",
  1627. .read_u64 = cpuset_read_u64,
  1628. .write_u64 = cpuset_write_u64,
  1629. .private = FILE_CPU_EXCLUSIVE,
  1630. },
  1631. {
  1632. .name = "mem_exclusive",
  1633. .read_u64 = cpuset_read_u64,
  1634. .write_u64 = cpuset_write_u64,
  1635. .private = FILE_MEM_EXCLUSIVE,
  1636. },
  1637. {
  1638. .name = "mem_hardwall",
  1639. .read_u64 = cpuset_read_u64,
  1640. .write_u64 = cpuset_write_u64,
  1641. .private = FILE_MEM_HARDWALL,
  1642. },
  1643. {
  1644. .name = "sched_load_balance",
  1645. .read_u64 = cpuset_read_u64,
  1646. .write_u64 = cpuset_write_u64,
  1647. .private = FILE_SCHED_LOAD_BALANCE,
  1648. },
  1649. {
  1650. .name = "sched_relax_domain_level",
  1651. .read_s64 = cpuset_read_s64,
  1652. .write_s64 = cpuset_write_s64,
  1653. .private = FILE_SCHED_RELAX_DOMAIN_LEVEL,
  1654. },
  1655. {
  1656. .name = "memory_migrate",
  1657. .read_u64 = cpuset_read_u64,
  1658. .write_u64 = cpuset_write_u64,
  1659. .private = FILE_MEMORY_MIGRATE,
  1660. },
  1661. {
  1662. .name = "memory_pressure",
  1663. .read_u64 = cpuset_read_u64,
  1664. .write_u64 = cpuset_write_u64,
  1665. .private = FILE_MEMORY_PRESSURE,
  1666. .mode = S_IRUGO,
  1667. },
  1668. {
  1669. .name = "memory_spread_page",
  1670. .read_u64 = cpuset_read_u64,
  1671. .write_u64 = cpuset_write_u64,
  1672. .private = FILE_SPREAD_PAGE,
  1673. },
  1674. {
  1675. .name = "memory_spread_slab",
  1676. .read_u64 = cpuset_read_u64,
  1677. .write_u64 = cpuset_write_u64,
  1678. .private = FILE_SPREAD_SLAB,
  1679. },
  1680. {
  1681. .name = "memory_pressure_enabled",
  1682. .flags = CFTYPE_ONLY_ON_ROOT,
  1683. .read_u64 = cpuset_read_u64,
  1684. .write_u64 = cpuset_write_u64,
  1685. .private = FILE_MEMORY_PRESSURE_ENABLED,
  1686. },
  1687. { } /* terminate */
  1688. };
  1689. /*
  1690. * cpuset_css_alloc - allocate a cpuset css
  1691. * cgrp: control group that the new cpuset will be part of
  1692. */
  1693. static struct cgroup_subsys_state *
  1694. cpuset_css_alloc(struct cgroup_subsys_state *parent_css)
  1695. {
  1696. struct cpuset *cs;
  1697. if (!parent_css)
  1698. return &top_cpuset.css;
  1699. cs = kzalloc(sizeof(*cs), GFP_KERNEL);
  1700. if (!cs)
  1701. return ERR_PTR(-ENOMEM);
  1702. if (!alloc_cpumask_var(&cs->cpus_allowed, GFP_KERNEL)) {
  1703. kfree(cs);
  1704. return ERR_PTR(-ENOMEM);
  1705. }
  1706. set_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
  1707. cpumask_clear(cs->cpus_allowed);
  1708. nodes_clear(cs->mems_allowed);
  1709. fmeter_init(&cs->fmeter);
  1710. cs->relax_domain_level = -1;
  1711. return &cs->css;
  1712. }
  1713. static int cpuset_css_online(struct cgroup_subsys_state *css)
  1714. {
  1715. struct cpuset *cs = css_cs(css);
  1716. struct cpuset *parent = parent_cs(cs);
  1717. struct cpuset *tmp_cs;
  1718. struct cgroup_subsys_state *pos_css;
  1719. if (!parent)
  1720. return 0;
  1721. mutex_lock(&cpuset_mutex);
  1722. set_bit(CS_ONLINE, &cs->flags);
  1723. if (is_spread_page(parent))
  1724. set_bit(CS_SPREAD_PAGE, &cs->flags);
  1725. if (is_spread_slab(parent))
  1726. set_bit(CS_SPREAD_SLAB, &cs->flags);
  1727. number_of_cpusets++;
  1728. if (!test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags))
  1729. goto out_unlock;
  1730. /*
  1731. * Clone @parent's configuration if CGRP_CPUSET_CLONE_CHILDREN is
  1732. * set. This flag handling is implemented in cgroup core for
  1733. * histrical reasons - the flag may be specified during mount.
  1734. *
  1735. * Currently, if any sibling cpusets have exclusive cpus or mem, we
  1736. * refuse to clone the configuration - thereby refusing the task to
  1737. * be entered, and as a result refusing the sys_unshare() or
  1738. * clone() which initiated it. If this becomes a problem for some
  1739. * users who wish to allow that scenario, then this could be
  1740. * changed to grant parent->cpus_allowed-sibling_cpus_exclusive
  1741. * (and likewise for mems) to the new cgroup.
  1742. */
  1743. rcu_read_lock();
  1744. cpuset_for_each_child(tmp_cs, pos_css, parent) {
  1745. if (is_mem_exclusive(tmp_cs) || is_cpu_exclusive(tmp_cs)) {
  1746. rcu_read_unlock();
  1747. goto out_unlock;
  1748. }
  1749. }
  1750. rcu_read_unlock();
  1751. mutex_lock(&callback_mutex);
  1752. cs->mems_allowed = parent->mems_allowed;
  1753. cpumask_copy(cs->cpus_allowed, parent->cpus_allowed);
  1754. mutex_unlock(&callback_mutex);
  1755. out_unlock:
  1756. mutex_unlock(&cpuset_mutex);
  1757. return 0;
  1758. }
  1759. /*
  1760. * If the cpuset being removed has its flag 'sched_load_balance'
  1761. * enabled, then simulate turning sched_load_balance off, which
  1762. * will call rebuild_sched_domains_locked().
  1763. */
  1764. static void cpuset_css_offline(struct cgroup_subsys_state *css)
  1765. {
  1766. struct cpuset *cs = css_cs(css);
  1767. mutex_lock(&cpuset_mutex);
  1768. if (is_sched_load_balance(cs))
  1769. update_flag(CS_SCHED_LOAD_BALANCE, cs, 0);
  1770. number_of_cpusets--;
  1771. clear_bit(CS_ONLINE, &cs->flags);
  1772. mutex_unlock(&cpuset_mutex);
  1773. }
  1774. static void cpuset_css_free(struct cgroup_subsys_state *css)
  1775. {
  1776. struct cpuset *cs = css_cs(css);
  1777. free_cpumask_var(cs->cpus_allowed);
  1778. kfree(cs);
  1779. }
  1780. struct cgroup_subsys cpuset_subsys = {
  1781. .name = "cpuset",
  1782. .css_alloc = cpuset_css_alloc,
  1783. .css_online = cpuset_css_online,
  1784. .css_offline = cpuset_css_offline,
  1785. .css_free = cpuset_css_free,
  1786. .can_attach = cpuset_can_attach,
  1787. .cancel_attach = cpuset_cancel_attach,
  1788. .attach = cpuset_attach,
  1789. .subsys_id = cpuset_subsys_id,
  1790. .base_cftypes = files,
  1791. .early_init = 1,
  1792. };
  1793. /**
  1794. * cpuset_init - initialize cpusets at system boot
  1795. *
  1796. * Description: Initialize top_cpuset and the cpuset internal file system,
  1797. **/
  1798. int __init cpuset_init(void)
  1799. {
  1800. int err = 0;
  1801. if (!alloc_cpumask_var(&top_cpuset.cpus_allowed, GFP_KERNEL))
  1802. BUG();
  1803. cpumask_setall(top_cpuset.cpus_allowed);
  1804. nodes_setall(top_cpuset.mems_allowed);
  1805. fmeter_init(&top_cpuset.fmeter);
  1806. set_bit(CS_SCHED_LOAD_BALANCE, &top_cpuset.flags);
  1807. top_cpuset.relax_domain_level = -1;
  1808. err = register_filesystem(&cpuset_fs_type);
  1809. if (err < 0)
  1810. return err;
  1811. if (!alloc_cpumask_var(&cpus_attach, GFP_KERNEL))
  1812. BUG();
  1813. number_of_cpusets = 1;
  1814. return 0;
  1815. }
  1816. /*
  1817. * If CPU and/or memory hotplug handlers, below, unplug any CPUs
  1818. * or memory nodes, we need to walk over the cpuset hierarchy,
  1819. * removing that CPU or node from all cpusets. If this removes the
  1820. * last CPU or node from a cpuset, then move the tasks in the empty
  1821. * cpuset to its next-highest non-empty parent.
  1822. */
  1823. static void remove_tasks_in_empty_cpuset(struct cpuset *cs)
  1824. {
  1825. struct cpuset *parent;
  1826. /*
  1827. * Find its next-highest non-empty parent, (top cpuset
  1828. * has online cpus, so can't be empty).
  1829. */
  1830. parent = parent_cs(cs);
  1831. while (cpumask_empty(parent->cpus_allowed) ||
  1832. nodes_empty(parent->mems_allowed))
  1833. parent = parent_cs(parent);
  1834. if (cgroup_transfer_tasks(parent->css.cgroup, cs->css.cgroup)) {
  1835. rcu_read_lock();
  1836. printk(KERN_ERR "cpuset: failed to transfer tasks out of empty cpuset %s\n",
  1837. cgroup_name(cs->css.cgroup));
  1838. rcu_read_unlock();
  1839. }
  1840. }
  1841. /**
  1842. * cpuset_hotplug_update_tasks - update tasks in a cpuset for hotunplug
  1843. * @cs: cpuset in interest
  1844. *
  1845. * Compare @cs's cpu and mem masks against top_cpuset and if some have gone
  1846. * offline, update @cs accordingly. If @cs ends up with no CPU or memory,
  1847. * all its tasks are moved to the nearest ancestor with both resources.
  1848. */
  1849. static void cpuset_hotplug_update_tasks(struct cpuset *cs)
  1850. {
  1851. static cpumask_t off_cpus;
  1852. static nodemask_t off_mems;
  1853. bool is_empty;
  1854. bool sane = cgroup_sane_behavior(cs->css.cgroup);
  1855. retry:
  1856. wait_event(cpuset_attach_wq, cs->attach_in_progress == 0);
  1857. mutex_lock(&cpuset_mutex);
  1858. /*
  1859. * We have raced with task attaching. We wait until attaching
  1860. * is finished, so we won't attach a task to an empty cpuset.
  1861. */
  1862. if (cs->attach_in_progress) {
  1863. mutex_unlock(&cpuset_mutex);
  1864. goto retry;
  1865. }
  1866. cpumask_andnot(&off_cpus, cs->cpus_allowed, top_cpuset.cpus_allowed);
  1867. nodes_andnot(off_mems, cs->mems_allowed, top_cpuset.mems_allowed);
  1868. mutex_lock(&callback_mutex);
  1869. cpumask_andnot(cs->cpus_allowed, cs->cpus_allowed, &off_cpus);
  1870. mutex_unlock(&callback_mutex);
  1871. /*
  1872. * If sane_behavior flag is set, we need to update tasks' cpumask
  1873. * for empty cpuset to take on ancestor's cpumask. Otherwise, don't
  1874. * call update_tasks_cpumask() if the cpuset becomes empty, as
  1875. * the tasks in it will be migrated to an ancestor.
  1876. */
  1877. if ((sane && cpumask_empty(cs->cpus_allowed)) ||
  1878. (!cpumask_empty(&off_cpus) && !cpumask_empty(cs->cpus_allowed)))
  1879. update_tasks_cpumask(cs, NULL);
  1880. mutex_lock(&callback_mutex);
  1881. nodes_andnot(cs->mems_allowed, cs->mems_allowed, off_mems);
  1882. mutex_unlock(&callback_mutex);
  1883. /*
  1884. * If sane_behavior flag is set, we need to update tasks' nodemask
  1885. * for empty cpuset to take on ancestor's nodemask. Otherwise, don't
  1886. * call update_tasks_nodemask() if the cpuset becomes empty, as
  1887. * the tasks in it will be migratd to an ancestor.
  1888. */
  1889. if ((sane && nodes_empty(cs->mems_allowed)) ||
  1890. (!nodes_empty(off_mems) && !nodes_empty(cs->mems_allowed)))
  1891. update_tasks_nodemask(cs, NULL);
  1892. is_empty = cpumask_empty(cs->cpus_allowed) ||
  1893. nodes_empty(cs->mems_allowed);
  1894. mutex_unlock(&cpuset_mutex);
  1895. /*
  1896. * If sane_behavior flag is set, we'll keep tasks in empty cpusets.
  1897. *
  1898. * Otherwise move tasks to the nearest ancestor with execution
  1899. * resources. This is full cgroup operation which will
  1900. * also call back into cpuset. Should be done outside any lock.
  1901. */
  1902. if (!sane && is_empty)
  1903. remove_tasks_in_empty_cpuset(cs);
  1904. }
  1905. /**
  1906. * cpuset_hotplug_workfn - handle CPU/memory hotunplug for a cpuset
  1907. *
  1908. * This function is called after either CPU or memory configuration has
  1909. * changed and updates cpuset accordingly. The top_cpuset is always
  1910. * synchronized to cpu_active_mask and N_MEMORY, which is necessary in
  1911. * order to make cpusets transparent (of no affect) on systems that are
  1912. * actively using CPU hotplug but making no active use of cpusets.
  1913. *
  1914. * Non-root cpusets are only affected by offlining. If any CPUs or memory
  1915. * nodes have been taken down, cpuset_hotplug_update_tasks() is invoked on
  1916. * all descendants.
  1917. *
  1918. * Note that CPU offlining during suspend is ignored. We don't modify
  1919. * cpusets across suspend/resume cycles at all.
  1920. */
  1921. static void cpuset_hotplug_workfn(struct work_struct *work)
  1922. {
  1923. static cpumask_t new_cpus;
  1924. static nodemask_t new_mems;
  1925. bool cpus_updated, mems_updated;
  1926. mutex_lock(&cpuset_mutex);
  1927. /* fetch the available cpus/mems and find out which changed how */
  1928. cpumask_copy(&new_cpus, cpu_active_mask);
  1929. new_mems = node_states[N_MEMORY];
  1930. cpus_updated = !cpumask_equal(top_cpuset.cpus_allowed, &new_cpus);
  1931. mems_updated = !nodes_equal(top_cpuset.mems_allowed, new_mems);
  1932. /* synchronize cpus_allowed to cpu_active_mask */
  1933. if (cpus_updated) {
  1934. mutex_lock(&callback_mutex);
  1935. cpumask_copy(top_cpuset.cpus_allowed, &new_cpus);
  1936. mutex_unlock(&callback_mutex);
  1937. /* we don't mess with cpumasks of tasks in top_cpuset */
  1938. }
  1939. /* synchronize mems_allowed to N_MEMORY */
  1940. if (mems_updated) {
  1941. mutex_lock(&callback_mutex);
  1942. top_cpuset.mems_allowed = new_mems;
  1943. mutex_unlock(&callback_mutex);
  1944. update_tasks_nodemask(&top_cpuset, NULL);
  1945. }
  1946. mutex_unlock(&cpuset_mutex);
  1947. /* if cpus or mems changed, we need to propagate to descendants */
  1948. if (cpus_updated || mems_updated) {
  1949. struct cpuset *cs;
  1950. struct cgroup_subsys_state *pos_css;
  1951. rcu_read_lock();
  1952. cpuset_for_each_descendant_pre(cs, pos_css, &top_cpuset) {
  1953. if (cs == &top_cpuset || !css_tryget(&cs->css))
  1954. continue;
  1955. rcu_read_unlock();
  1956. cpuset_hotplug_update_tasks(cs);
  1957. rcu_read_lock();
  1958. css_put(&cs->css);
  1959. }
  1960. rcu_read_unlock();
  1961. }
  1962. /* rebuild sched domains if cpus_allowed has changed */
  1963. if (cpus_updated)
  1964. rebuild_sched_domains();
  1965. }
  1966. void cpuset_update_active_cpus(bool cpu_online)
  1967. {
  1968. /*
  1969. * We're inside cpu hotplug critical region which usually nests
  1970. * inside cgroup synchronization. Bounce actual hotplug processing
  1971. * to a work item to avoid reverse locking order.
  1972. *
  1973. * We still need to do partition_sched_domains() synchronously;
  1974. * otherwise, the scheduler will get confused and put tasks to the
  1975. * dead CPU. Fall back to the default single domain.
  1976. * cpuset_hotplug_workfn() will rebuild it as necessary.
  1977. */
  1978. partition_sched_domains(1, NULL, NULL);
  1979. schedule_work(&cpuset_hotplug_work);
  1980. }
  1981. /*
  1982. * Keep top_cpuset.mems_allowed tracking node_states[N_MEMORY].
  1983. * Call this routine anytime after node_states[N_MEMORY] changes.
  1984. * See cpuset_update_active_cpus() for CPU hotplug handling.
  1985. */
  1986. static int cpuset_track_online_nodes(struct notifier_block *self,
  1987. unsigned long action, void *arg)
  1988. {
  1989. schedule_work(&cpuset_hotplug_work);
  1990. return NOTIFY_OK;
  1991. }
  1992. static struct notifier_block cpuset_track_online_nodes_nb = {
  1993. .notifier_call = cpuset_track_online_nodes,
  1994. .priority = 10, /* ??! */
  1995. };
  1996. /**
  1997. * cpuset_init_smp - initialize cpus_allowed
  1998. *
  1999. * Description: Finish top cpuset after cpu, node maps are initialized
  2000. */
  2001. void __init cpuset_init_smp(void)
  2002. {
  2003. cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask);
  2004. top_cpuset.mems_allowed = node_states[N_MEMORY];
  2005. top_cpuset.old_mems_allowed = top_cpuset.mems_allowed;
  2006. register_hotmemory_notifier(&cpuset_track_online_nodes_nb);
  2007. }
  2008. /**
  2009. * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
  2010. * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
  2011. * @pmask: pointer to struct cpumask variable to receive cpus_allowed set.
  2012. *
  2013. * Description: Returns the cpumask_var_t cpus_allowed of the cpuset
  2014. * attached to the specified @tsk. Guaranteed to return some non-empty
  2015. * subset of cpu_online_mask, even if this means going outside the
  2016. * tasks cpuset.
  2017. **/
  2018. void cpuset_cpus_allowed(struct task_struct *tsk, struct cpumask *pmask)
  2019. {
  2020. struct cpuset *cpus_cs;
  2021. mutex_lock(&callback_mutex);
  2022. task_lock(tsk);
  2023. cpus_cs = effective_cpumask_cpuset(task_cs(tsk));
  2024. guarantee_online_cpus(cpus_cs, pmask);
  2025. task_unlock(tsk);
  2026. mutex_unlock(&callback_mutex);
  2027. }
  2028. void cpuset_cpus_allowed_fallback(struct task_struct *tsk)
  2029. {
  2030. struct cpuset *cpus_cs;
  2031. rcu_read_lock();
  2032. cpus_cs = effective_cpumask_cpuset(task_cs(tsk));
  2033. do_set_cpus_allowed(tsk, cpus_cs->cpus_allowed);
  2034. rcu_read_unlock();
  2035. /*
  2036. * We own tsk->cpus_allowed, nobody can change it under us.
  2037. *
  2038. * But we used cs && cs->cpus_allowed lockless and thus can
  2039. * race with cgroup_attach_task() or update_cpumask() and get
  2040. * the wrong tsk->cpus_allowed. However, both cases imply the
  2041. * subsequent cpuset_change_cpumask()->set_cpus_allowed_ptr()
  2042. * which takes task_rq_lock().
  2043. *
  2044. * If we are called after it dropped the lock we must see all
  2045. * changes in tsk_cs()->cpus_allowed. Otherwise we can temporary
  2046. * set any mask even if it is not right from task_cs() pov,
  2047. * the pending set_cpus_allowed_ptr() will fix things.
  2048. *
  2049. * select_fallback_rq() will fix things ups and set cpu_possible_mask
  2050. * if required.
  2051. */
  2052. }
  2053. void cpuset_init_current_mems_allowed(void)
  2054. {
  2055. nodes_setall(current->mems_allowed);
  2056. }
  2057. /**
  2058. * cpuset_mems_allowed - return mems_allowed mask from a tasks cpuset.
  2059. * @tsk: pointer to task_struct from which to obtain cpuset->mems_allowed.
  2060. *
  2061. * Description: Returns the nodemask_t mems_allowed of the cpuset
  2062. * attached to the specified @tsk. Guaranteed to return some non-empty
  2063. * subset of node_states[N_MEMORY], even if this means going outside the
  2064. * tasks cpuset.
  2065. **/
  2066. nodemask_t cpuset_mems_allowed(struct task_struct *tsk)
  2067. {
  2068. struct cpuset *mems_cs;
  2069. nodemask_t mask;
  2070. mutex_lock(&callback_mutex);
  2071. task_lock(tsk);
  2072. mems_cs = effective_nodemask_cpuset(task_cs(tsk));
  2073. guarantee_online_mems(mems_cs, &mask);
  2074. task_unlock(tsk);
  2075. mutex_unlock(&callback_mutex);
  2076. return mask;
  2077. }
  2078. /**
  2079. * cpuset_nodemask_valid_mems_allowed - check nodemask vs. curremt mems_allowed
  2080. * @nodemask: the nodemask to be checked
  2081. *
  2082. * Are any of the nodes in the nodemask allowed in current->mems_allowed?
  2083. */
  2084. int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
  2085. {
  2086. return nodes_intersects(*nodemask, current->mems_allowed);
  2087. }
  2088. /*
  2089. * nearest_hardwall_ancestor() - Returns the nearest mem_exclusive or
  2090. * mem_hardwall ancestor to the specified cpuset. Call holding
  2091. * callback_mutex. If no ancestor is mem_exclusive or mem_hardwall
  2092. * (an unusual configuration), then returns the root cpuset.
  2093. */
  2094. static struct cpuset *nearest_hardwall_ancestor(struct cpuset *cs)
  2095. {
  2096. while (!(is_mem_exclusive(cs) || is_mem_hardwall(cs)) && parent_cs(cs))
  2097. cs = parent_cs(cs);
  2098. return cs;
  2099. }
  2100. /**
  2101. * cpuset_node_allowed_softwall - Can we allocate on a memory node?
  2102. * @node: is this an allowed node?
  2103. * @gfp_mask: memory allocation flags
  2104. *
  2105. * If we're in interrupt, yes, we can always allocate. If __GFP_THISNODE is
  2106. * set, yes, we can always allocate. If node is in our task's mems_allowed,
  2107. * yes. If it's not a __GFP_HARDWALL request and this node is in the nearest
  2108. * hardwalled cpuset ancestor to this task's cpuset, yes. If the task has been
  2109. * OOM killed and has access to memory reserves as specified by the TIF_MEMDIE
  2110. * flag, yes.
  2111. * Otherwise, no.
  2112. *
  2113. * If __GFP_HARDWALL is set, cpuset_node_allowed_softwall() reduces to
  2114. * cpuset_node_allowed_hardwall(). Otherwise, cpuset_node_allowed_softwall()
  2115. * might sleep, and might allow a node from an enclosing cpuset.
  2116. *
  2117. * cpuset_node_allowed_hardwall() only handles the simpler case of hardwall
  2118. * cpusets, and never sleeps.
  2119. *
  2120. * The __GFP_THISNODE placement logic is really handled elsewhere,
  2121. * by forcibly using a zonelist starting at a specified node, and by
  2122. * (in get_page_from_freelist()) refusing to consider the zones for
  2123. * any node on the zonelist except the first. By the time any such
  2124. * calls get to this routine, we should just shut up and say 'yes'.
  2125. *
  2126. * GFP_USER allocations are marked with the __GFP_HARDWALL bit,
  2127. * and do not allow allocations outside the current tasks cpuset
  2128. * unless the task has been OOM killed as is marked TIF_MEMDIE.
  2129. * GFP_KERNEL allocations are not so marked, so can escape to the
  2130. * nearest enclosing hardwalled ancestor cpuset.
  2131. *
  2132. * Scanning up parent cpusets requires callback_mutex. The
  2133. * __alloc_pages() routine only calls here with __GFP_HARDWALL bit
  2134. * _not_ set if it's a GFP_KERNEL allocation, and all nodes in the
  2135. * current tasks mems_allowed came up empty on the first pass over
  2136. * the zonelist. So only GFP_KERNEL allocations, if all nodes in the
  2137. * cpuset are short of memory, might require taking the callback_mutex
  2138. * mutex.
  2139. *
  2140. * The first call here from mm/page_alloc:get_page_from_freelist()
  2141. * has __GFP_HARDWALL set in gfp_mask, enforcing hardwall cpusets,
  2142. * so no allocation on a node outside the cpuset is allowed (unless
  2143. * in interrupt, of course).
  2144. *
  2145. * The second pass through get_page_from_freelist() doesn't even call
  2146. * here for GFP_ATOMIC calls. For those calls, the __alloc_pages()
  2147. * variable 'wait' is not set, and the bit ALLOC_CPUSET is not set
  2148. * in alloc_flags. That logic and the checks below have the combined
  2149. * affect that:
  2150. * in_interrupt - any node ok (current task context irrelevant)
  2151. * GFP_ATOMIC - any node ok
  2152. * TIF_MEMDIE - any node ok
  2153. * GFP_KERNEL - any node in enclosing hardwalled cpuset ok
  2154. * GFP_USER - only nodes in current tasks mems allowed ok.
  2155. *
  2156. * Rule:
  2157. * Don't call cpuset_node_allowed_softwall if you can't sleep, unless you
  2158. * pass in the __GFP_HARDWALL flag set in gfp_flag, which disables
  2159. * the code that might scan up ancestor cpusets and sleep.
  2160. */
  2161. int __cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
  2162. {
  2163. struct cpuset *cs; /* current cpuset ancestors */
  2164. int allowed; /* is allocation in zone z allowed? */
  2165. if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
  2166. return 1;
  2167. might_sleep_if(!(gfp_mask & __GFP_HARDWALL));
  2168. if (node_isset(node, current->mems_allowed))
  2169. return 1;
  2170. /*
  2171. * Allow tasks that have access to memory reserves because they have
  2172. * been OOM killed to get memory anywhere.
  2173. */
  2174. if (unlikely(test_thread_flag(TIF_MEMDIE)))
  2175. return 1;
  2176. if (gfp_mask & __GFP_HARDWALL) /* If hardwall request, stop here */
  2177. return 0;
  2178. if (current->flags & PF_EXITING) /* Let dying task have memory */
  2179. return 1;
  2180. /* Not hardwall and node outside mems_allowed: scan up cpusets */
  2181. mutex_lock(&callback_mutex);
  2182. task_lock(current);
  2183. cs = nearest_hardwall_ancestor(task_cs(current));
  2184. task_unlock(current);
  2185. allowed = node_isset(node, cs->mems_allowed);
  2186. mutex_unlock(&callback_mutex);
  2187. return allowed;
  2188. }
  2189. /*
  2190. * cpuset_node_allowed_hardwall - Can we allocate on a memory node?
  2191. * @node: is this an allowed node?
  2192. * @gfp_mask: memory allocation flags
  2193. *
  2194. * If we're in interrupt, yes, we can always allocate. If __GFP_THISNODE is
  2195. * set, yes, we can always allocate. If node is in our task's mems_allowed,
  2196. * yes. If the task has been OOM killed and has access to memory reserves as
  2197. * specified by the TIF_MEMDIE flag, yes.
  2198. * Otherwise, no.
  2199. *
  2200. * The __GFP_THISNODE placement logic is really handled elsewhere,
  2201. * by forcibly using a zonelist starting at a specified node, and by
  2202. * (in get_page_from_freelist()) refusing to consider the zones for
  2203. * any node on the zonelist except the first. By the time any such
  2204. * calls get to this routine, we should just shut up and say 'yes'.
  2205. *
  2206. * Unlike the cpuset_node_allowed_softwall() variant, above,
  2207. * this variant requires that the node be in the current task's
  2208. * mems_allowed or that we're in interrupt. It does not scan up the
  2209. * cpuset hierarchy for the nearest enclosing mem_exclusive cpuset.
  2210. * It never sleeps.
  2211. */
  2212. int __cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
  2213. {
  2214. if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
  2215. return 1;
  2216. if (node_isset(node, current->mems_allowed))
  2217. return 1;
  2218. /*
  2219. * Allow tasks that have access to memory reserves because they have
  2220. * been OOM killed to get memory anywhere.
  2221. */
  2222. if (unlikely(test_thread_flag(TIF_MEMDIE)))
  2223. return 1;
  2224. return 0;
  2225. }
  2226. /**
  2227. * cpuset_mem_spread_node() - On which node to begin search for a file page
  2228. * cpuset_slab_spread_node() - On which node to begin search for a slab page
  2229. *
  2230. * If a task is marked PF_SPREAD_PAGE or PF_SPREAD_SLAB (as for
  2231. * tasks in a cpuset with is_spread_page or is_spread_slab set),
  2232. * and if the memory allocation used cpuset_mem_spread_node()
  2233. * to determine on which node to start looking, as it will for
  2234. * certain page cache or slab cache pages such as used for file
  2235. * system buffers and inode caches, then instead of starting on the
  2236. * local node to look for a free page, rather spread the starting
  2237. * node around the tasks mems_allowed nodes.
  2238. *
  2239. * We don't have to worry about the returned node being offline
  2240. * because "it can't happen", and even if it did, it would be ok.
  2241. *
  2242. * The routines calling guarantee_online_mems() are careful to
  2243. * only set nodes in task->mems_allowed that are online. So it
  2244. * should not be possible for the following code to return an
  2245. * offline node. But if it did, that would be ok, as this routine
  2246. * is not returning the node where the allocation must be, only
  2247. * the node where the search should start. The zonelist passed to
  2248. * __alloc_pages() will include all nodes. If the slab allocator
  2249. * is passed an offline node, it will fall back to the local node.
  2250. * See kmem_cache_alloc_node().
  2251. */
  2252. static int cpuset_spread_node(int *rotor)
  2253. {
  2254. int node;
  2255. node = next_node(*rotor, current->mems_allowed);
  2256. if (node == MAX_NUMNODES)
  2257. node = first_node(current->mems_allowed);
  2258. *rotor = node;
  2259. return node;
  2260. }
  2261. int cpuset_mem_spread_node(void)
  2262. {
  2263. if (current->cpuset_mem_spread_rotor == NUMA_NO_NODE)
  2264. current->cpuset_mem_spread_rotor =
  2265. node_random(&current->mems_allowed);
  2266. return cpuset_spread_node(&current->cpuset_mem_spread_rotor);
  2267. }
  2268. int cpuset_slab_spread_node(void)
  2269. {
  2270. if (current->cpuset_slab_spread_rotor == NUMA_NO_NODE)
  2271. current->cpuset_slab_spread_rotor =
  2272. node_random(&current->mems_allowed);
  2273. return cpuset_spread_node(&current->cpuset_slab_spread_rotor);
  2274. }
  2275. EXPORT_SYMBOL_GPL(cpuset_mem_spread_node);
  2276. /**
  2277. * cpuset_mems_allowed_intersects - Does @tsk1's mems_allowed intersect @tsk2's?
  2278. * @tsk1: pointer to task_struct of some task.
  2279. * @tsk2: pointer to task_struct of some other task.
  2280. *
  2281. * Description: Return true if @tsk1's mems_allowed intersects the
  2282. * mems_allowed of @tsk2. Used by the OOM killer to determine if
  2283. * one of the task's memory usage might impact the memory available
  2284. * to the other.
  2285. **/
  2286. int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
  2287. const struct task_struct *tsk2)
  2288. {
  2289. return nodes_intersects(tsk1->mems_allowed, tsk2->mems_allowed);
  2290. }
  2291. #define CPUSET_NODELIST_LEN (256)
  2292. /**
  2293. * cpuset_print_task_mems_allowed - prints task's cpuset and mems_allowed
  2294. * @task: pointer to task_struct of some task.
  2295. *
  2296. * Description: Prints @task's name, cpuset name, and cached copy of its
  2297. * mems_allowed to the kernel log. Must hold task_lock(task) to allow
  2298. * dereferencing task_cs(task).
  2299. */
  2300. void cpuset_print_task_mems_allowed(struct task_struct *tsk)
  2301. {
  2302. /* Statically allocated to prevent using excess stack. */
  2303. static char cpuset_nodelist[CPUSET_NODELIST_LEN];
  2304. static DEFINE_SPINLOCK(cpuset_buffer_lock);
  2305. struct cgroup *cgrp = task_cs(tsk)->css.cgroup;
  2306. rcu_read_lock();
  2307. spin_lock(&cpuset_buffer_lock);
  2308. nodelist_scnprintf(cpuset_nodelist, CPUSET_NODELIST_LEN,
  2309. tsk->mems_allowed);
  2310. printk(KERN_INFO "%s cpuset=%s mems_allowed=%s\n",
  2311. tsk->comm, cgroup_name(cgrp), cpuset_nodelist);
  2312. spin_unlock(&cpuset_buffer_lock);
  2313. rcu_read_unlock();
  2314. }
  2315. /*
  2316. * Collection of memory_pressure is suppressed unless
  2317. * this flag is enabled by writing "1" to the special
  2318. * cpuset file 'memory_pressure_enabled' in the root cpuset.
  2319. */
  2320. int cpuset_memory_pressure_enabled __read_mostly;
  2321. /**
  2322. * cpuset_memory_pressure_bump - keep stats of per-cpuset reclaims.
  2323. *
  2324. * Keep a running average of the rate of synchronous (direct)
  2325. * page reclaim efforts initiated by tasks in each cpuset.
  2326. *
  2327. * This represents the rate at which some task in the cpuset
  2328. * ran low on memory on all nodes it was allowed to use, and
  2329. * had to enter the kernels page reclaim code in an effort to
  2330. * create more free memory by tossing clean pages or swapping
  2331. * or writing dirty pages.
  2332. *
  2333. * Display to user space in the per-cpuset read-only file
  2334. * "memory_pressure". Value displayed is an integer
  2335. * representing the recent rate of entry into the synchronous
  2336. * (direct) page reclaim by any task attached to the cpuset.
  2337. **/
  2338. void __cpuset_memory_pressure_bump(void)
  2339. {
  2340. task_lock(current);
  2341. fmeter_markevent(&task_cs(current)->fmeter);
  2342. task_unlock(current);
  2343. }
  2344. #ifdef CONFIG_PROC_PID_CPUSET
  2345. /*
  2346. * proc_cpuset_show()
  2347. * - Print tasks cpuset path into seq_file.
  2348. * - Used for /proc/<pid>/cpuset.
  2349. * - No need to task_lock(tsk) on this tsk->cpuset reference, as it
  2350. * doesn't really matter if tsk->cpuset changes after we read it,
  2351. * and we take cpuset_mutex, keeping cpuset_attach() from changing it
  2352. * anyway.
  2353. */
  2354. int proc_cpuset_show(struct seq_file *m, void *unused_v)
  2355. {
  2356. struct pid *pid;
  2357. struct task_struct *tsk;
  2358. char *buf;
  2359. struct cgroup_subsys_state *css;
  2360. int retval;
  2361. retval = -ENOMEM;
  2362. buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  2363. if (!buf)
  2364. goto out;
  2365. retval = -ESRCH;
  2366. pid = m->private;
  2367. tsk = get_pid_task(pid, PIDTYPE_PID);
  2368. if (!tsk)
  2369. goto out_free;
  2370. rcu_read_lock();
  2371. css = task_css(tsk, cpuset_subsys_id);
  2372. retval = cgroup_path(css->cgroup, buf, PAGE_SIZE);
  2373. rcu_read_unlock();
  2374. if (retval < 0)
  2375. goto out_put_task;
  2376. seq_puts(m, buf);
  2377. seq_putc(m, '\n');
  2378. out_put_task:
  2379. put_task_struct(tsk);
  2380. out_free:
  2381. kfree(buf);
  2382. out:
  2383. return retval;
  2384. }
  2385. #endif /* CONFIG_PROC_PID_CPUSET */
  2386. /* Display task mems_allowed in /proc/<pid>/status file. */
  2387. void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task)
  2388. {
  2389. seq_printf(m, "Mems_allowed:\t");
  2390. seq_nodemask(m, &task->mems_allowed);
  2391. seq_printf(m, "\n");
  2392. seq_printf(m, "Mems_allowed_list:\t");
  2393. seq_nodemask_list(m, &task->mems_allowed);
  2394. seq_printf(m, "\n");
  2395. }