cpuset.c 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  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. *
  18. * This file is subject to the terms and conditions of the GNU General Public
  19. * License. See the file COPYING in the main directory of the Linux
  20. * distribution for more details.
  21. */
  22. #include <linux/cpu.h>
  23. #include <linux/cpumask.h>
  24. #include <linux/cpuset.h>
  25. #include <linux/err.h>
  26. #include <linux/errno.h>
  27. #include <linux/file.h>
  28. #include <linux/fs.h>
  29. #include <linux/init.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/kernel.h>
  32. #include <linux/kmod.h>
  33. #include <linux/list.h>
  34. #include <linux/mempolicy.h>
  35. #include <linux/mm.h>
  36. #include <linux/module.h>
  37. #include <linux/mount.h>
  38. #include <linux/namei.h>
  39. #include <linux/pagemap.h>
  40. #include <linux/proc_fs.h>
  41. #include <linux/rcupdate.h>
  42. #include <linux/sched.h>
  43. #include <linux/seq_file.h>
  44. #include <linux/security.h>
  45. #include <linux/slab.h>
  46. #include <linux/spinlock.h>
  47. #include <linux/stat.h>
  48. #include <linux/string.h>
  49. #include <linux/time.h>
  50. #include <linux/backing-dev.h>
  51. #include <linux/sort.h>
  52. #include <asm/uaccess.h>
  53. #include <asm/atomic.h>
  54. #include <linux/mutex.h>
  55. #include <linux/kfifo.h>
  56. #include <linux/workqueue.h>
  57. #include <linux/cgroup.h>
  58. /*
  59. * Tracks how many cpusets are currently defined in system.
  60. * When there is only one cpuset (the root cpuset) we can
  61. * short circuit some hooks.
  62. */
  63. int number_of_cpusets __read_mostly;
  64. /* Forward declare cgroup structures */
  65. struct cgroup_subsys cpuset_subsys;
  66. struct cpuset;
  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_t cpus_allowed; /* CPUs allowed to tasks in cpuset */
  78. nodemask_t mems_allowed; /* Memory Nodes allowed to tasks */
  79. struct cpuset *parent; /* my parent */
  80. /*
  81. * Copy of global cpuset_mems_generation as of the most
  82. * recent time this cpuset changed its mems_allowed.
  83. */
  84. int mems_generation;
  85. struct fmeter fmeter; /* memory_pressure filter */
  86. /* partition number for rebuild_sched_domains() */
  87. int pn;
  88. /* for custom sched domain */
  89. int relax_domain_level;
  90. /* used for walking a cpuset heirarchy */
  91. struct list_head stack_list;
  92. };
  93. /* Retrieve the cpuset for a cgroup */
  94. static inline struct cpuset *cgroup_cs(struct cgroup *cont)
  95. {
  96. return container_of(cgroup_subsys_state(cont, cpuset_subsys_id),
  97. struct cpuset, css);
  98. }
  99. /* Retrieve the cpuset for a task */
  100. static inline struct cpuset *task_cs(struct task_struct *task)
  101. {
  102. return container_of(task_subsys_state(task, cpuset_subsys_id),
  103. struct cpuset, css);
  104. }
  105. struct cpuset_hotplug_scanner {
  106. struct cgroup_scanner scan;
  107. struct cgroup *to;
  108. };
  109. /* bits in struct cpuset flags field */
  110. typedef enum {
  111. CS_CPU_EXCLUSIVE,
  112. CS_MEM_EXCLUSIVE,
  113. CS_MEM_HARDWALL,
  114. CS_MEMORY_MIGRATE,
  115. CS_SCHED_LOAD_BALANCE,
  116. CS_SPREAD_PAGE,
  117. CS_SPREAD_SLAB,
  118. } cpuset_flagbits_t;
  119. /* convenient tests for these bits */
  120. static inline int is_cpu_exclusive(const struct cpuset *cs)
  121. {
  122. return test_bit(CS_CPU_EXCLUSIVE, &cs->flags);
  123. }
  124. static inline int is_mem_exclusive(const struct cpuset *cs)
  125. {
  126. return test_bit(CS_MEM_EXCLUSIVE, &cs->flags);
  127. }
  128. static inline int is_mem_hardwall(const struct cpuset *cs)
  129. {
  130. return test_bit(CS_MEM_HARDWALL, &cs->flags);
  131. }
  132. static inline int is_sched_load_balance(const struct cpuset *cs)
  133. {
  134. return test_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
  135. }
  136. static inline int is_memory_migrate(const struct cpuset *cs)
  137. {
  138. return test_bit(CS_MEMORY_MIGRATE, &cs->flags);
  139. }
  140. static inline int is_spread_page(const struct cpuset *cs)
  141. {
  142. return test_bit(CS_SPREAD_PAGE, &cs->flags);
  143. }
  144. static inline int is_spread_slab(const struct cpuset *cs)
  145. {
  146. return test_bit(CS_SPREAD_SLAB, &cs->flags);
  147. }
  148. /*
  149. * Increment this integer everytime any cpuset changes its
  150. * mems_allowed value. Users of cpusets can track this generation
  151. * number, and avoid having to lock and reload mems_allowed unless
  152. * the cpuset they're using changes generation.
  153. *
  154. * A single, global generation is needed because cpuset_attach_task() could
  155. * reattach a task to a different cpuset, which must not have its
  156. * generation numbers aliased with those of that tasks previous cpuset.
  157. *
  158. * Generations are needed for mems_allowed because one task cannot
  159. * modify another's memory placement. So we must enable every task,
  160. * on every visit to __alloc_pages(), to efficiently check whether
  161. * its current->cpuset->mems_allowed has changed, requiring an update
  162. * of its current->mems_allowed.
  163. *
  164. * Since writes to cpuset_mems_generation are guarded by the cgroup lock
  165. * there is no need to mark it atomic.
  166. */
  167. static int cpuset_mems_generation;
  168. static struct cpuset top_cpuset = {
  169. .flags = ((1 << CS_CPU_EXCLUSIVE) | (1 << CS_MEM_EXCLUSIVE)),
  170. .cpus_allowed = CPU_MASK_ALL,
  171. .mems_allowed = NODE_MASK_ALL,
  172. };
  173. /*
  174. * There are two global mutexes guarding cpuset structures. The first
  175. * is the main control groups cgroup_mutex, accessed via
  176. * cgroup_lock()/cgroup_unlock(). The second is the cpuset-specific
  177. * callback_mutex, below. They can nest. It is ok to first take
  178. * cgroup_mutex, then nest callback_mutex. We also require taking
  179. * task_lock() when dereferencing a task's cpuset pointer. See "The
  180. * task_lock() exception", at the end of this comment.
  181. *
  182. * A task must hold both mutexes to modify cpusets. If a task
  183. * holds cgroup_mutex, then it blocks others wanting that mutex,
  184. * ensuring that it is the only task able to also acquire callback_mutex
  185. * and be able to modify cpusets. It can perform various checks on
  186. * the cpuset structure first, knowing nothing will change. It can
  187. * also allocate memory while just holding cgroup_mutex. While it is
  188. * performing these checks, various callback routines can briefly
  189. * acquire callback_mutex to query cpusets. Once it is ready to make
  190. * the changes, it takes callback_mutex, blocking everyone else.
  191. *
  192. * Calls to the kernel memory allocator can not be made while holding
  193. * callback_mutex, as that would risk double tripping on callback_mutex
  194. * from one of the callbacks into the cpuset code from within
  195. * __alloc_pages().
  196. *
  197. * If a task is only holding callback_mutex, then it has read-only
  198. * access to cpusets.
  199. *
  200. * The task_struct fields mems_allowed and mems_generation may only
  201. * be accessed in the context of that task, so require no locks.
  202. *
  203. * The cpuset_common_file_read() handlers only hold callback_mutex across
  204. * small pieces of code, such as when reading out possibly multi-word
  205. * cpumasks and nodemasks.
  206. *
  207. * Accessing a task's cpuset should be done in accordance with the
  208. * guidelines for accessing subsystem state in kernel/cgroup.c
  209. */
  210. static DEFINE_MUTEX(callback_mutex);
  211. /* This is ugly, but preserves the userspace API for existing cpuset
  212. * users. If someone tries to mount the "cpuset" filesystem, we
  213. * silently switch it to mount "cgroup" instead */
  214. static int cpuset_get_sb(struct file_system_type *fs_type,
  215. int flags, const char *unused_dev_name,
  216. void *data, struct vfsmount *mnt)
  217. {
  218. struct file_system_type *cgroup_fs = get_fs_type("cgroup");
  219. int ret = -ENODEV;
  220. if (cgroup_fs) {
  221. char mountopts[] =
  222. "cpuset,noprefix,"
  223. "release_agent=/sbin/cpuset_release_agent";
  224. ret = cgroup_fs->get_sb(cgroup_fs, flags,
  225. unused_dev_name, mountopts, mnt);
  226. put_filesystem(cgroup_fs);
  227. }
  228. return ret;
  229. }
  230. static struct file_system_type cpuset_fs_type = {
  231. .name = "cpuset",
  232. .get_sb = cpuset_get_sb,
  233. };
  234. /*
  235. * Return in *pmask the portion of a cpusets's cpus_allowed that
  236. * are online. If none are online, walk up the cpuset hierarchy
  237. * until we find one that does have some online cpus. If we get
  238. * all the way to the top and still haven't found any online cpus,
  239. * return cpu_online_map. Or if passed a NULL cs from an exit'ing
  240. * task, return cpu_online_map.
  241. *
  242. * One way or another, we guarantee to return some non-empty subset
  243. * of cpu_online_map.
  244. *
  245. * Call with callback_mutex held.
  246. */
  247. static void guarantee_online_cpus(const struct cpuset *cs, cpumask_t *pmask)
  248. {
  249. while (cs && !cpus_intersects(cs->cpus_allowed, cpu_online_map))
  250. cs = cs->parent;
  251. if (cs)
  252. cpus_and(*pmask, cs->cpus_allowed, cpu_online_map);
  253. else
  254. *pmask = cpu_online_map;
  255. BUG_ON(!cpus_intersects(*pmask, cpu_online_map));
  256. }
  257. /*
  258. * Return in *pmask the portion of a cpusets's mems_allowed that
  259. * are online, with memory. If none are online with memory, walk
  260. * up the cpuset hierarchy until we find one that does have some
  261. * online mems. If we get all the way to the top and still haven't
  262. * found any online mems, return node_states[N_HIGH_MEMORY].
  263. *
  264. * One way or another, we guarantee to return some non-empty subset
  265. * of node_states[N_HIGH_MEMORY].
  266. *
  267. * Call with callback_mutex held.
  268. */
  269. static void guarantee_online_mems(const struct cpuset *cs, nodemask_t *pmask)
  270. {
  271. while (cs && !nodes_intersects(cs->mems_allowed,
  272. node_states[N_HIGH_MEMORY]))
  273. cs = cs->parent;
  274. if (cs)
  275. nodes_and(*pmask, cs->mems_allowed,
  276. node_states[N_HIGH_MEMORY]);
  277. else
  278. *pmask = node_states[N_HIGH_MEMORY];
  279. BUG_ON(!nodes_intersects(*pmask, node_states[N_HIGH_MEMORY]));
  280. }
  281. /**
  282. * cpuset_update_task_memory_state - update task memory placement
  283. *
  284. * If the current tasks cpusets mems_allowed changed behind our
  285. * backs, update current->mems_allowed, mems_generation and task NUMA
  286. * mempolicy to the new value.
  287. *
  288. * Task mempolicy is updated by rebinding it relative to the
  289. * current->cpuset if a task has its memory placement changed.
  290. * Do not call this routine if in_interrupt().
  291. *
  292. * Call without callback_mutex or task_lock() held. May be
  293. * called with or without cgroup_mutex held. Thanks in part to
  294. * 'the_top_cpuset_hack', the task's cpuset pointer will never
  295. * be NULL. This routine also might acquire callback_mutex during
  296. * call.
  297. *
  298. * Reading current->cpuset->mems_generation doesn't need task_lock
  299. * to guard the current->cpuset derefence, because it is guarded
  300. * from concurrent freeing of current->cpuset using RCU.
  301. *
  302. * The rcu_dereference() is technically probably not needed,
  303. * as I don't actually mind if I see a new cpuset pointer but
  304. * an old value of mems_generation. However this really only
  305. * matters on alpha systems using cpusets heavily. If I dropped
  306. * that rcu_dereference(), it would save them a memory barrier.
  307. * For all other arch's, rcu_dereference is a no-op anyway, and for
  308. * alpha systems not using cpusets, another planned optimization,
  309. * avoiding the rcu critical section for tasks in the root cpuset
  310. * which is statically allocated, so can't vanish, will make this
  311. * irrelevant. Better to use RCU as intended, than to engage in
  312. * some cute trick to save a memory barrier that is impossible to
  313. * test, for alpha systems using cpusets heavily, which might not
  314. * even exist.
  315. *
  316. * This routine is needed to update the per-task mems_allowed data,
  317. * within the tasks context, when it is trying to allocate memory
  318. * (in various mm/mempolicy.c routines) and notices that some other
  319. * task has been modifying its cpuset.
  320. */
  321. void cpuset_update_task_memory_state(void)
  322. {
  323. int my_cpusets_mem_gen;
  324. struct task_struct *tsk = current;
  325. struct cpuset *cs;
  326. if (task_cs(tsk) == &top_cpuset) {
  327. /* Don't need rcu for top_cpuset. It's never freed. */
  328. my_cpusets_mem_gen = top_cpuset.mems_generation;
  329. } else {
  330. rcu_read_lock();
  331. my_cpusets_mem_gen = task_cs(tsk)->mems_generation;
  332. rcu_read_unlock();
  333. }
  334. if (my_cpusets_mem_gen != tsk->cpuset_mems_generation) {
  335. mutex_lock(&callback_mutex);
  336. task_lock(tsk);
  337. cs = task_cs(tsk); /* Maybe changed when task not locked */
  338. guarantee_online_mems(cs, &tsk->mems_allowed);
  339. tsk->cpuset_mems_generation = cs->mems_generation;
  340. if (is_spread_page(cs))
  341. tsk->flags |= PF_SPREAD_PAGE;
  342. else
  343. tsk->flags &= ~PF_SPREAD_PAGE;
  344. if (is_spread_slab(cs))
  345. tsk->flags |= PF_SPREAD_SLAB;
  346. else
  347. tsk->flags &= ~PF_SPREAD_SLAB;
  348. task_unlock(tsk);
  349. mutex_unlock(&callback_mutex);
  350. mpol_rebind_task(tsk, &tsk->mems_allowed);
  351. }
  352. }
  353. /*
  354. * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
  355. *
  356. * One cpuset is a subset of another if all its allowed CPUs and
  357. * Memory Nodes are a subset of the other, and its exclusive flags
  358. * are only set if the other's are set. Call holding cgroup_mutex.
  359. */
  360. static int is_cpuset_subset(const struct cpuset *p, const struct cpuset *q)
  361. {
  362. return cpus_subset(p->cpus_allowed, q->cpus_allowed) &&
  363. nodes_subset(p->mems_allowed, q->mems_allowed) &&
  364. is_cpu_exclusive(p) <= is_cpu_exclusive(q) &&
  365. is_mem_exclusive(p) <= is_mem_exclusive(q);
  366. }
  367. /*
  368. * validate_change() - Used to validate that any proposed cpuset change
  369. * follows the structural rules for cpusets.
  370. *
  371. * If we replaced the flag and mask values of the current cpuset
  372. * (cur) with those values in the trial cpuset (trial), would
  373. * our various subset and exclusive rules still be valid? Presumes
  374. * cgroup_mutex held.
  375. *
  376. * 'cur' is the address of an actual, in-use cpuset. Operations
  377. * such as list traversal that depend on the actual address of the
  378. * cpuset in the list must use cur below, not trial.
  379. *
  380. * 'trial' is the address of bulk structure copy of cur, with
  381. * perhaps one or more of the fields cpus_allowed, mems_allowed,
  382. * or flags changed to new, trial values.
  383. *
  384. * Return 0 if valid, -errno if not.
  385. */
  386. static int validate_change(const struct cpuset *cur, const struct cpuset *trial)
  387. {
  388. struct cgroup *cont;
  389. struct cpuset *c, *par;
  390. /* Each of our child cpusets must be a subset of us */
  391. list_for_each_entry(cont, &cur->css.cgroup->children, sibling) {
  392. if (!is_cpuset_subset(cgroup_cs(cont), trial))
  393. return -EBUSY;
  394. }
  395. /* Remaining checks don't apply to root cpuset */
  396. if (cur == &top_cpuset)
  397. return 0;
  398. par = cur->parent;
  399. /* We must be a subset of our parent cpuset */
  400. if (!is_cpuset_subset(trial, par))
  401. return -EACCES;
  402. /*
  403. * If either I or some sibling (!= me) is exclusive, we can't
  404. * overlap
  405. */
  406. list_for_each_entry(cont, &par->css.cgroup->children, sibling) {
  407. c = cgroup_cs(cont);
  408. if ((is_cpu_exclusive(trial) || is_cpu_exclusive(c)) &&
  409. c != cur &&
  410. cpus_intersects(trial->cpus_allowed, c->cpus_allowed))
  411. return -EINVAL;
  412. if ((is_mem_exclusive(trial) || is_mem_exclusive(c)) &&
  413. c != cur &&
  414. nodes_intersects(trial->mems_allowed, c->mems_allowed))
  415. return -EINVAL;
  416. }
  417. /* Cpusets with tasks can't have empty cpus_allowed or mems_allowed */
  418. if (cgroup_task_count(cur->css.cgroup)) {
  419. if (cpus_empty(trial->cpus_allowed) ||
  420. nodes_empty(trial->mems_allowed)) {
  421. return -ENOSPC;
  422. }
  423. }
  424. return 0;
  425. }
  426. /*
  427. * Helper routine for rebuild_sched_domains().
  428. * Do cpusets a, b have overlapping cpus_allowed masks?
  429. */
  430. static int cpusets_overlap(struct cpuset *a, struct cpuset *b)
  431. {
  432. return cpus_intersects(a->cpus_allowed, b->cpus_allowed);
  433. }
  434. static void
  435. update_domain_attr(struct sched_domain_attr *dattr, struct cpuset *c)
  436. {
  437. if (dattr->relax_domain_level < c->relax_domain_level)
  438. dattr->relax_domain_level = c->relax_domain_level;
  439. return;
  440. }
  441. static void
  442. update_domain_attr_tree(struct sched_domain_attr *dattr, struct cpuset *c)
  443. {
  444. LIST_HEAD(q);
  445. list_add(&c->stack_list, &q);
  446. while (!list_empty(&q)) {
  447. struct cpuset *cp;
  448. struct cgroup *cont;
  449. struct cpuset *child;
  450. cp = list_first_entry(&q, struct cpuset, stack_list);
  451. list_del(q.next);
  452. if (cpus_empty(cp->cpus_allowed))
  453. continue;
  454. if (is_sched_load_balance(cp))
  455. update_domain_attr(dattr, cp);
  456. list_for_each_entry(cont, &cp->css.cgroup->children, sibling) {
  457. child = cgroup_cs(cont);
  458. list_add_tail(&child->stack_list, &q);
  459. }
  460. }
  461. }
  462. /*
  463. * rebuild_sched_domains()
  464. *
  465. * This routine will be called to rebuild the scheduler's dynamic
  466. * sched domains:
  467. * - if the flag 'sched_load_balance' of any cpuset with non-empty
  468. * 'cpus' changes,
  469. * - or if the 'cpus' allowed changes in any cpuset which has that
  470. * flag enabled,
  471. * - or if the 'sched_relax_domain_level' of any cpuset which has
  472. * that flag enabled and with non-empty 'cpus' changes,
  473. * - or if any cpuset with non-empty 'cpus' is removed,
  474. * - or if a cpu gets offlined.
  475. *
  476. * This routine builds a partial partition of the systems CPUs
  477. * (the set of non-overlappping cpumask_t's in the array 'part'
  478. * below), and passes that partial partition to the kernel/sched.c
  479. * partition_sched_domains() routine, which will rebuild the
  480. * schedulers load balancing domains (sched domains) as specified
  481. * by that partial partition. A 'partial partition' is a set of
  482. * non-overlapping subsets whose union is a subset of that set.
  483. *
  484. * See "What is sched_load_balance" in Documentation/cpusets.txt
  485. * for a background explanation of this.
  486. *
  487. * Does not return errors, on the theory that the callers of this
  488. * routine would rather not worry about failures to rebuild sched
  489. * domains when operating in the severe memory shortage situations
  490. * that could cause allocation failures below.
  491. *
  492. * Call with cgroup_mutex held. May take callback_mutex during
  493. * call due to the kfifo_alloc() and kmalloc() calls. May nest
  494. * a call to the get_online_cpus()/put_online_cpus() pair.
  495. * Must not be called holding callback_mutex, because we must not
  496. * call get_online_cpus() while holding callback_mutex. Elsewhere
  497. * the kernel nests callback_mutex inside get_online_cpus() calls.
  498. * So the reverse nesting would risk an ABBA deadlock.
  499. *
  500. * The three key local variables below are:
  501. * q - a kfifo queue of cpuset pointers, used to implement a
  502. * top-down scan of all cpusets. This scan loads a pointer
  503. * to each cpuset marked is_sched_load_balance into the
  504. * array 'csa'. For our purposes, rebuilding the schedulers
  505. * sched domains, we can ignore !is_sched_load_balance cpusets.
  506. * csa - (for CpuSet Array) Array of pointers to all the cpusets
  507. * that need to be load balanced, for convenient iterative
  508. * access by the subsequent code that finds the best partition,
  509. * i.e the set of domains (subsets) of CPUs such that the
  510. * cpus_allowed of every cpuset marked is_sched_load_balance
  511. * is a subset of one of these domains, while there are as
  512. * many such domains as possible, each as small as possible.
  513. * doms - Conversion of 'csa' to an array of cpumasks, for passing to
  514. * the kernel/sched.c routine partition_sched_domains() in a
  515. * convenient format, that can be easily compared to the prior
  516. * value to determine what partition elements (sched domains)
  517. * were changed (added or removed.)
  518. *
  519. * Finding the best partition (set of domains):
  520. * The triple nested loops below over i, j, k scan over the
  521. * load balanced cpusets (using the array of cpuset pointers in
  522. * csa[]) looking for pairs of cpusets that have overlapping
  523. * cpus_allowed, but which don't have the same 'pn' partition
  524. * number and gives them in the same partition number. It keeps
  525. * looping on the 'restart' label until it can no longer find
  526. * any such pairs.
  527. *
  528. * The union of the cpus_allowed masks from the set of
  529. * all cpusets having the same 'pn' value then form the one
  530. * element of the partition (one sched domain) to be passed to
  531. * partition_sched_domains().
  532. */
  533. void rebuild_sched_domains(void)
  534. {
  535. struct kfifo *q; /* queue of cpusets to be scanned */
  536. struct cpuset *cp; /* scans q */
  537. struct cpuset **csa; /* array of all cpuset ptrs */
  538. int csn; /* how many cpuset ptrs in csa so far */
  539. int i, j, k; /* indices for partition finding loops */
  540. cpumask_t *doms; /* resulting partition; i.e. sched domains */
  541. struct sched_domain_attr *dattr; /* attributes for custom domains */
  542. int ndoms; /* number of sched domains in result */
  543. int nslot; /* next empty doms[] cpumask_t slot */
  544. q = NULL;
  545. csa = NULL;
  546. doms = NULL;
  547. dattr = NULL;
  548. /* Special case for the 99% of systems with one, full, sched domain */
  549. if (is_sched_load_balance(&top_cpuset)) {
  550. ndoms = 1;
  551. doms = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
  552. if (!doms)
  553. goto rebuild;
  554. dattr = kmalloc(sizeof(struct sched_domain_attr), GFP_KERNEL);
  555. if (dattr) {
  556. *dattr = SD_ATTR_INIT;
  557. update_domain_attr_tree(dattr, &top_cpuset);
  558. }
  559. *doms = top_cpuset.cpus_allowed;
  560. goto rebuild;
  561. }
  562. q = kfifo_alloc(number_of_cpusets * sizeof(cp), GFP_KERNEL, NULL);
  563. if (IS_ERR(q))
  564. goto done;
  565. csa = kmalloc(number_of_cpusets * sizeof(cp), GFP_KERNEL);
  566. if (!csa)
  567. goto done;
  568. csn = 0;
  569. cp = &top_cpuset;
  570. __kfifo_put(q, (void *)&cp, sizeof(cp));
  571. while (__kfifo_get(q, (void *)&cp, sizeof(cp))) {
  572. struct cgroup *cont;
  573. struct cpuset *child; /* scans child cpusets of cp */
  574. if (cpus_empty(cp->cpus_allowed))
  575. continue;
  576. /*
  577. * All child cpusets contain a subset of the parent's cpus, so
  578. * just skip them, and then we call update_domain_attr_tree()
  579. * to calc relax_domain_level of the corresponding sched
  580. * domain.
  581. */
  582. if (is_sched_load_balance(cp)) {
  583. csa[csn++] = cp;
  584. continue;
  585. }
  586. list_for_each_entry(cont, &cp->css.cgroup->children, sibling) {
  587. child = cgroup_cs(cont);
  588. __kfifo_put(q, (void *)&child, sizeof(cp));
  589. }
  590. }
  591. for (i = 0; i < csn; i++)
  592. csa[i]->pn = i;
  593. ndoms = csn;
  594. restart:
  595. /* Find the best partition (set of sched domains) */
  596. for (i = 0; i < csn; i++) {
  597. struct cpuset *a = csa[i];
  598. int apn = a->pn;
  599. for (j = 0; j < csn; j++) {
  600. struct cpuset *b = csa[j];
  601. int bpn = b->pn;
  602. if (apn != bpn && cpusets_overlap(a, b)) {
  603. for (k = 0; k < csn; k++) {
  604. struct cpuset *c = csa[k];
  605. if (c->pn == bpn)
  606. c->pn = apn;
  607. }
  608. ndoms--; /* one less element */
  609. goto restart;
  610. }
  611. }
  612. }
  613. /* Convert <csn, csa> to <ndoms, doms> */
  614. doms = kmalloc(ndoms * sizeof(cpumask_t), GFP_KERNEL);
  615. if (!doms)
  616. goto rebuild;
  617. dattr = kmalloc(ndoms * sizeof(struct sched_domain_attr), GFP_KERNEL);
  618. for (nslot = 0, i = 0; i < csn; i++) {
  619. struct cpuset *a = csa[i];
  620. int apn = a->pn;
  621. if (apn >= 0) {
  622. cpumask_t *dp = doms + nslot;
  623. if (nslot == ndoms) {
  624. static int warnings = 10;
  625. if (warnings) {
  626. printk(KERN_WARNING
  627. "rebuild_sched_domains confused:"
  628. " nslot %d, ndoms %d, csn %d, i %d,"
  629. " apn %d\n",
  630. nslot, ndoms, csn, i, apn);
  631. warnings--;
  632. }
  633. continue;
  634. }
  635. cpus_clear(*dp);
  636. if (dattr)
  637. *(dattr + nslot) = SD_ATTR_INIT;
  638. for (j = i; j < csn; j++) {
  639. struct cpuset *b = csa[j];
  640. if (apn == b->pn) {
  641. cpus_or(*dp, *dp, b->cpus_allowed);
  642. b->pn = -1;
  643. if (dattr)
  644. update_domain_attr_tree(dattr
  645. + nslot, b);
  646. }
  647. }
  648. nslot++;
  649. }
  650. }
  651. BUG_ON(nslot != ndoms);
  652. rebuild:
  653. /* Have scheduler rebuild sched domains */
  654. get_online_cpus();
  655. partition_sched_domains(ndoms, doms, dattr);
  656. put_online_cpus();
  657. done:
  658. if (q && !IS_ERR(q))
  659. kfifo_free(q);
  660. kfree(csa);
  661. /* Don't kfree(doms) -- partition_sched_domains() does that. */
  662. /* Don't kfree(dattr) -- partition_sched_domains() does that. */
  663. }
  664. /**
  665. * cpuset_test_cpumask - test a task's cpus_allowed versus its cpuset's
  666. * @tsk: task to test
  667. * @scan: struct cgroup_scanner contained in its struct cpuset_hotplug_scanner
  668. *
  669. * Call with cgroup_mutex held. May take callback_mutex during call.
  670. * Called for each task in a cgroup by cgroup_scan_tasks().
  671. * Return nonzero if this tasks's cpus_allowed mask should be changed (in other
  672. * words, if its mask is not equal to its cpuset's mask).
  673. */
  674. static int cpuset_test_cpumask(struct task_struct *tsk,
  675. struct cgroup_scanner *scan)
  676. {
  677. return !cpus_equal(tsk->cpus_allowed,
  678. (cgroup_cs(scan->cg))->cpus_allowed);
  679. }
  680. /**
  681. * cpuset_change_cpumask - make a task's cpus_allowed the same as its cpuset's
  682. * @tsk: task to test
  683. * @scan: struct cgroup_scanner containing the cgroup of the task
  684. *
  685. * Called by cgroup_scan_tasks() for each task in a cgroup whose
  686. * cpus_allowed mask needs to be changed.
  687. *
  688. * We don't need to re-check for the cgroup/cpuset membership, since we're
  689. * holding cgroup_lock() at this point.
  690. */
  691. static void cpuset_change_cpumask(struct task_struct *tsk,
  692. struct cgroup_scanner *scan)
  693. {
  694. set_cpus_allowed_ptr(tsk, &((cgroup_cs(scan->cg))->cpus_allowed));
  695. }
  696. /**
  697. * update_tasks_cpumask - Update the cpumasks of tasks in the cpuset.
  698. * @cs: the cpuset in which each task's cpus_allowed mask needs to be changed
  699. *
  700. * Called with cgroup_mutex held
  701. *
  702. * The cgroup_scan_tasks() function will scan all the tasks in a cgroup,
  703. * calling callback functions for each.
  704. *
  705. * Return 0 if successful, -errno if not.
  706. */
  707. static int update_tasks_cpumask(struct cpuset *cs)
  708. {
  709. struct cgroup_scanner scan;
  710. struct ptr_heap heap;
  711. int retval;
  712. /*
  713. * cgroup_scan_tasks() will initialize heap->gt for us.
  714. * heap_init() is still needed here for we should not change
  715. * cs->cpus_allowed when heap_init() fails.
  716. */
  717. retval = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
  718. if (retval)
  719. return retval;
  720. scan.cg = cs->css.cgroup;
  721. scan.test_task = cpuset_test_cpumask;
  722. scan.process_task = cpuset_change_cpumask;
  723. scan.heap = &heap;
  724. retval = cgroup_scan_tasks(&scan);
  725. heap_free(&heap);
  726. return retval;
  727. }
  728. /**
  729. * update_cpumask - update the cpus_allowed mask of a cpuset and all tasks in it
  730. * @cs: the cpuset to consider
  731. * @buf: buffer of cpu numbers written to this cpuset
  732. */
  733. static int update_cpumask(struct cpuset *cs, const char *buf)
  734. {
  735. struct cpuset trialcs;
  736. int retval;
  737. int is_load_balanced;
  738. /* top_cpuset.cpus_allowed tracks cpu_online_map; it's read-only */
  739. if (cs == &top_cpuset)
  740. return -EACCES;
  741. trialcs = *cs;
  742. /*
  743. * An empty cpus_allowed is ok only if the cpuset has no tasks.
  744. * Since cpulist_parse() fails on an empty mask, we special case
  745. * that parsing. The validate_change() call ensures that cpusets
  746. * with tasks have cpus.
  747. */
  748. if (!*buf) {
  749. cpus_clear(trialcs.cpus_allowed);
  750. } else {
  751. retval = cpulist_parse(buf, trialcs.cpus_allowed);
  752. if (retval < 0)
  753. return retval;
  754. if (!cpus_subset(trialcs.cpus_allowed, cpu_online_map))
  755. return -EINVAL;
  756. }
  757. retval = validate_change(cs, &trialcs);
  758. if (retval < 0)
  759. return retval;
  760. /* Nothing to do if the cpus didn't change */
  761. if (cpus_equal(cs->cpus_allowed, trialcs.cpus_allowed))
  762. return 0;
  763. is_load_balanced = is_sched_load_balance(&trialcs);
  764. mutex_lock(&callback_mutex);
  765. cs->cpus_allowed = trialcs.cpus_allowed;
  766. mutex_unlock(&callback_mutex);
  767. /*
  768. * Scan tasks in the cpuset, and update the cpumasks of any
  769. * that need an update.
  770. */
  771. retval = update_tasks_cpumask(cs);
  772. if (retval < 0)
  773. return retval;
  774. if (is_load_balanced)
  775. rebuild_sched_domains();
  776. return 0;
  777. }
  778. /*
  779. * cpuset_migrate_mm
  780. *
  781. * Migrate memory region from one set of nodes to another.
  782. *
  783. * Temporarilly set tasks mems_allowed to target nodes of migration,
  784. * so that the migration code can allocate pages on these nodes.
  785. *
  786. * Call holding cgroup_mutex, so current's cpuset won't change
  787. * during this call, as manage_mutex holds off any cpuset_attach()
  788. * calls. Therefore we don't need to take task_lock around the
  789. * call to guarantee_online_mems(), as we know no one is changing
  790. * our task's cpuset.
  791. *
  792. * Hold callback_mutex around the two modifications of our tasks
  793. * mems_allowed to synchronize with cpuset_mems_allowed().
  794. *
  795. * While the mm_struct we are migrating is typically from some
  796. * other task, the task_struct mems_allowed that we are hacking
  797. * is for our current task, which must allocate new pages for that
  798. * migrating memory region.
  799. *
  800. * We call cpuset_update_task_memory_state() before hacking
  801. * our tasks mems_allowed, so that we are assured of being in
  802. * sync with our tasks cpuset, and in particular, callbacks to
  803. * cpuset_update_task_memory_state() from nested page allocations
  804. * won't see any mismatch of our cpuset and task mems_generation
  805. * values, so won't overwrite our hacked tasks mems_allowed
  806. * nodemask.
  807. */
  808. static void cpuset_migrate_mm(struct mm_struct *mm, const nodemask_t *from,
  809. const nodemask_t *to)
  810. {
  811. struct task_struct *tsk = current;
  812. cpuset_update_task_memory_state();
  813. mutex_lock(&callback_mutex);
  814. tsk->mems_allowed = *to;
  815. mutex_unlock(&callback_mutex);
  816. do_migrate_pages(mm, from, to, MPOL_MF_MOVE_ALL);
  817. mutex_lock(&callback_mutex);
  818. guarantee_online_mems(task_cs(tsk),&tsk->mems_allowed);
  819. mutex_unlock(&callback_mutex);
  820. }
  821. static void *cpuset_being_rebound;
  822. /**
  823. * update_tasks_nodemask - Update the nodemasks of tasks in the cpuset.
  824. * @cs: the cpuset in which each task's mems_allowed mask needs to be changed
  825. * @oldmem: old mems_allowed of cpuset cs
  826. *
  827. * Called with cgroup_mutex held
  828. * Return 0 if successful, -errno if not.
  829. */
  830. static int update_tasks_nodemask(struct cpuset *cs, const nodemask_t *oldmem)
  831. {
  832. struct task_struct *p;
  833. struct mm_struct **mmarray;
  834. int i, n, ntasks;
  835. int migrate;
  836. int fudge;
  837. struct cgroup_iter it;
  838. int retval;
  839. cpuset_being_rebound = cs; /* causes mpol_dup() rebind */
  840. fudge = 10; /* spare mmarray[] slots */
  841. fudge += cpus_weight(cs->cpus_allowed); /* imagine one fork-bomb/cpu */
  842. retval = -ENOMEM;
  843. /*
  844. * Allocate mmarray[] to hold mm reference for each task
  845. * in cpuset cs. Can't kmalloc GFP_KERNEL while holding
  846. * tasklist_lock. We could use GFP_ATOMIC, but with a
  847. * few more lines of code, we can retry until we get a big
  848. * enough mmarray[] w/o using GFP_ATOMIC.
  849. */
  850. while (1) {
  851. ntasks = cgroup_task_count(cs->css.cgroup); /* guess */
  852. ntasks += fudge;
  853. mmarray = kmalloc(ntasks * sizeof(*mmarray), GFP_KERNEL);
  854. if (!mmarray)
  855. goto done;
  856. read_lock(&tasklist_lock); /* block fork */
  857. if (cgroup_task_count(cs->css.cgroup) <= ntasks)
  858. break; /* got enough */
  859. read_unlock(&tasklist_lock); /* try again */
  860. kfree(mmarray);
  861. }
  862. n = 0;
  863. /* Load up mmarray[] with mm reference for each task in cpuset. */
  864. cgroup_iter_start(cs->css.cgroup, &it);
  865. while ((p = cgroup_iter_next(cs->css.cgroup, &it))) {
  866. struct mm_struct *mm;
  867. if (n >= ntasks) {
  868. printk(KERN_WARNING
  869. "Cpuset mempolicy rebind incomplete.\n");
  870. break;
  871. }
  872. mm = get_task_mm(p);
  873. if (!mm)
  874. continue;
  875. mmarray[n++] = mm;
  876. }
  877. cgroup_iter_end(cs->css.cgroup, &it);
  878. read_unlock(&tasklist_lock);
  879. /*
  880. * Now that we've dropped the tasklist spinlock, we can
  881. * rebind the vma mempolicies of each mm in mmarray[] to their
  882. * new cpuset, and release that mm. The mpol_rebind_mm()
  883. * call takes mmap_sem, which we couldn't take while holding
  884. * tasklist_lock. Forks can happen again now - the mpol_dup()
  885. * cpuset_being_rebound check will catch such forks, and rebind
  886. * their vma mempolicies too. Because we still hold the global
  887. * cgroup_mutex, we know that no other rebind effort will
  888. * be contending for the global variable cpuset_being_rebound.
  889. * It's ok if we rebind the same mm twice; mpol_rebind_mm()
  890. * is idempotent. Also migrate pages in each mm to new nodes.
  891. */
  892. migrate = is_memory_migrate(cs);
  893. for (i = 0; i < n; i++) {
  894. struct mm_struct *mm = mmarray[i];
  895. mpol_rebind_mm(mm, &cs->mems_allowed);
  896. if (migrate)
  897. cpuset_migrate_mm(mm, oldmem, &cs->mems_allowed);
  898. mmput(mm);
  899. }
  900. /* We're done rebinding vmas to this cpuset's new mems_allowed. */
  901. kfree(mmarray);
  902. cpuset_being_rebound = NULL;
  903. retval = 0;
  904. done:
  905. return retval;
  906. }
  907. /*
  908. * Handle user request to change the 'mems' memory placement
  909. * of a cpuset. Needs to validate the request, update the
  910. * cpusets mems_allowed and mems_generation, and for each
  911. * task in the cpuset, rebind any vma mempolicies and if
  912. * the cpuset is marked 'memory_migrate', migrate the tasks
  913. * pages to the new memory.
  914. *
  915. * Call with cgroup_mutex held. May take callback_mutex during call.
  916. * Will take tasklist_lock, scan tasklist for tasks in cpuset cs,
  917. * lock each such tasks mm->mmap_sem, scan its vma's and rebind
  918. * their mempolicies to the cpusets new mems_allowed.
  919. */
  920. static int update_nodemask(struct cpuset *cs, const char *buf)
  921. {
  922. struct cpuset trialcs;
  923. nodemask_t oldmem;
  924. int retval;
  925. /*
  926. * top_cpuset.mems_allowed tracks node_stats[N_HIGH_MEMORY];
  927. * it's read-only
  928. */
  929. if (cs == &top_cpuset)
  930. return -EACCES;
  931. trialcs = *cs;
  932. /*
  933. * An empty mems_allowed is ok iff there are no tasks in the cpuset.
  934. * Since nodelist_parse() fails on an empty mask, we special case
  935. * that parsing. The validate_change() call ensures that cpusets
  936. * with tasks have memory.
  937. */
  938. if (!*buf) {
  939. nodes_clear(trialcs.mems_allowed);
  940. } else {
  941. retval = nodelist_parse(buf, trialcs.mems_allowed);
  942. if (retval < 0)
  943. goto done;
  944. if (!nodes_subset(trialcs.mems_allowed,
  945. node_states[N_HIGH_MEMORY]))
  946. return -EINVAL;
  947. }
  948. oldmem = cs->mems_allowed;
  949. if (nodes_equal(oldmem, trialcs.mems_allowed)) {
  950. retval = 0; /* Too easy - nothing to do */
  951. goto done;
  952. }
  953. retval = validate_change(cs, &trialcs);
  954. if (retval < 0)
  955. goto done;
  956. mutex_lock(&callback_mutex);
  957. cs->mems_allowed = trialcs.mems_allowed;
  958. cs->mems_generation = cpuset_mems_generation++;
  959. mutex_unlock(&callback_mutex);
  960. retval = update_tasks_nodemask(cs, &oldmem);
  961. done:
  962. return retval;
  963. }
  964. int current_cpuset_is_being_rebound(void)
  965. {
  966. return task_cs(current) == cpuset_being_rebound;
  967. }
  968. static int update_relax_domain_level(struct cpuset *cs, s64 val)
  969. {
  970. if (val < -1 || val >= SD_LV_MAX)
  971. return -EINVAL;
  972. if (val != cs->relax_domain_level) {
  973. cs->relax_domain_level = val;
  974. if (!cpus_empty(cs->cpus_allowed) && is_sched_load_balance(cs))
  975. rebuild_sched_domains();
  976. }
  977. return 0;
  978. }
  979. /*
  980. * update_flag - read a 0 or a 1 in a file and update associated flag
  981. * bit: the bit to update (see cpuset_flagbits_t)
  982. * cs: the cpuset to update
  983. * turning_on: whether the flag is being set or cleared
  984. *
  985. * Call with cgroup_mutex held.
  986. */
  987. static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs,
  988. int turning_on)
  989. {
  990. struct cpuset trialcs;
  991. int err;
  992. int cpus_nonempty, balance_flag_changed;
  993. trialcs = *cs;
  994. if (turning_on)
  995. set_bit(bit, &trialcs.flags);
  996. else
  997. clear_bit(bit, &trialcs.flags);
  998. err = validate_change(cs, &trialcs);
  999. if (err < 0)
  1000. return err;
  1001. cpus_nonempty = !cpus_empty(trialcs.cpus_allowed);
  1002. balance_flag_changed = (is_sched_load_balance(cs) !=
  1003. is_sched_load_balance(&trialcs));
  1004. mutex_lock(&callback_mutex);
  1005. cs->flags = trialcs.flags;
  1006. mutex_unlock(&callback_mutex);
  1007. if (cpus_nonempty && balance_flag_changed)
  1008. rebuild_sched_domains();
  1009. return 0;
  1010. }
  1011. /*
  1012. * Frequency meter - How fast is some event occurring?
  1013. *
  1014. * These routines manage a digitally filtered, constant time based,
  1015. * event frequency meter. There are four routines:
  1016. * fmeter_init() - initialize a frequency meter.
  1017. * fmeter_markevent() - called each time the event happens.
  1018. * fmeter_getrate() - returns the recent rate of such events.
  1019. * fmeter_update() - internal routine used to update fmeter.
  1020. *
  1021. * A common data structure is passed to each of these routines,
  1022. * which is used to keep track of the state required to manage the
  1023. * frequency meter and its digital filter.
  1024. *
  1025. * The filter works on the number of events marked per unit time.
  1026. * The filter is single-pole low-pass recursive (IIR). The time unit
  1027. * is 1 second. Arithmetic is done using 32-bit integers scaled to
  1028. * simulate 3 decimal digits of precision (multiplied by 1000).
  1029. *
  1030. * With an FM_COEF of 933, and a time base of 1 second, the filter
  1031. * has a half-life of 10 seconds, meaning that if the events quit
  1032. * happening, then the rate returned from the fmeter_getrate()
  1033. * will be cut in half each 10 seconds, until it converges to zero.
  1034. *
  1035. * It is not worth doing a real infinitely recursive filter. If more
  1036. * than FM_MAXTICKS ticks have elapsed since the last filter event,
  1037. * just compute FM_MAXTICKS ticks worth, by which point the level
  1038. * will be stable.
  1039. *
  1040. * Limit the count of unprocessed events to FM_MAXCNT, so as to avoid
  1041. * arithmetic overflow in the fmeter_update() routine.
  1042. *
  1043. * Given the simple 32 bit integer arithmetic used, this meter works
  1044. * best for reporting rates between one per millisecond (msec) and
  1045. * one per 32 (approx) seconds. At constant rates faster than one
  1046. * per msec it maxes out at values just under 1,000,000. At constant
  1047. * rates between one per msec, and one per second it will stabilize
  1048. * to a value N*1000, where N is the rate of events per second.
  1049. * At constant rates between one per second and one per 32 seconds,
  1050. * it will be choppy, moving up on the seconds that have an event,
  1051. * and then decaying until the next event. At rates slower than
  1052. * about one in 32 seconds, it decays all the way back to zero between
  1053. * each event.
  1054. */
  1055. #define FM_COEF 933 /* coefficient for half-life of 10 secs */
  1056. #define FM_MAXTICKS ((time_t)99) /* useless computing more ticks than this */
  1057. #define FM_MAXCNT 1000000 /* limit cnt to avoid overflow */
  1058. #define FM_SCALE 1000 /* faux fixed point scale */
  1059. /* Initialize a frequency meter */
  1060. static void fmeter_init(struct fmeter *fmp)
  1061. {
  1062. fmp->cnt = 0;
  1063. fmp->val = 0;
  1064. fmp->time = 0;
  1065. spin_lock_init(&fmp->lock);
  1066. }
  1067. /* Internal meter update - process cnt events and update value */
  1068. static void fmeter_update(struct fmeter *fmp)
  1069. {
  1070. time_t now = get_seconds();
  1071. time_t ticks = now - fmp->time;
  1072. if (ticks == 0)
  1073. return;
  1074. ticks = min(FM_MAXTICKS, ticks);
  1075. while (ticks-- > 0)
  1076. fmp->val = (FM_COEF * fmp->val) / FM_SCALE;
  1077. fmp->time = now;
  1078. fmp->val += ((FM_SCALE - FM_COEF) * fmp->cnt) / FM_SCALE;
  1079. fmp->cnt = 0;
  1080. }
  1081. /* Process any previous ticks, then bump cnt by one (times scale). */
  1082. static void fmeter_markevent(struct fmeter *fmp)
  1083. {
  1084. spin_lock(&fmp->lock);
  1085. fmeter_update(fmp);
  1086. fmp->cnt = min(FM_MAXCNT, fmp->cnt + FM_SCALE);
  1087. spin_unlock(&fmp->lock);
  1088. }
  1089. /* Process any previous ticks, then return current value. */
  1090. static int fmeter_getrate(struct fmeter *fmp)
  1091. {
  1092. int val;
  1093. spin_lock(&fmp->lock);
  1094. fmeter_update(fmp);
  1095. val = fmp->val;
  1096. spin_unlock(&fmp->lock);
  1097. return val;
  1098. }
  1099. /* Called by cgroups to determine if a cpuset is usable; cgroup_mutex held */
  1100. static int cpuset_can_attach(struct cgroup_subsys *ss,
  1101. struct cgroup *cont, struct task_struct *tsk)
  1102. {
  1103. struct cpuset *cs = cgroup_cs(cont);
  1104. if (cpus_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed))
  1105. return -ENOSPC;
  1106. if (tsk->flags & PF_THREAD_BOUND) {
  1107. cpumask_t mask;
  1108. mutex_lock(&callback_mutex);
  1109. mask = cs->cpus_allowed;
  1110. mutex_unlock(&callback_mutex);
  1111. if (!cpus_equal(tsk->cpus_allowed, mask))
  1112. return -EINVAL;
  1113. }
  1114. return security_task_setscheduler(tsk, 0, NULL);
  1115. }
  1116. static void cpuset_attach(struct cgroup_subsys *ss,
  1117. struct cgroup *cont, struct cgroup *oldcont,
  1118. struct task_struct *tsk)
  1119. {
  1120. cpumask_t cpus;
  1121. nodemask_t from, to;
  1122. struct mm_struct *mm;
  1123. struct cpuset *cs = cgroup_cs(cont);
  1124. struct cpuset *oldcs = cgroup_cs(oldcont);
  1125. int err;
  1126. mutex_lock(&callback_mutex);
  1127. guarantee_online_cpus(cs, &cpus);
  1128. err = set_cpus_allowed_ptr(tsk, &cpus);
  1129. mutex_unlock(&callback_mutex);
  1130. if (err)
  1131. return;
  1132. from = oldcs->mems_allowed;
  1133. to = cs->mems_allowed;
  1134. mm = get_task_mm(tsk);
  1135. if (mm) {
  1136. mpol_rebind_mm(mm, &to);
  1137. if (is_memory_migrate(cs))
  1138. cpuset_migrate_mm(mm, &from, &to);
  1139. mmput(mm);
  1140. }
  1141. }
  1142. /* The various types of files and directories in a cpuset file system */
  1143. typedef enum {
  1144. FILE_MEMORY_MIGRATE,
  1145. FILE_CPULIST,
  1146. FILE_MEMLIST,
  1147. FILE_CPU_EXCLUSIVE,
  1148. FILE_MEM_EXCLUSIVE,
  1149. FILE_MEM_HARDWALL,
  1150. FILE_SCHED_LOAD_BALANCE,
  1151. FILE_SCHED_RELAX_DOMAIN_LEVEL,
  1152. FILE_MEMORY_PRESSURE_ENABLED,
  1153. FILE_MEMORY_PRESSURE,
  1154. FILE_SPREAD_PAGE,
  1155. FILE_SPREAD_SLAB,
  1156. } cpuset_filetype_t;
  1157. static int cpuset_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
  1158. {
  1159. int retval = 0;
  1160. struct cpuset *cs = cgroup_cs(cgrp);
  1161. cpuset_filetype_t type = cft->private;
  1162. if (!cgroup_lock_live_group(cgrp))
  1163. return -ENODEV;
  1164. switch (type) {
  1165. case FILE_CPU_EXCLUSIVE:
  1166. retval = update_flag(CS_CPU_EXCLUSIVE, cs, val);
  1167. break;
  1168. case FILE_MEM_EXCLUSIVE:
  1169. retval = update_flag(CS_MEM_EXCLUSIVE, cs, val);
  1170. break;
  1171. case FILE_MEM_HARDWALL:
  1172. retval = update_flag(CS_MEM_HARDWALL, cs, val);
  1173. break;
  1174. case FILE_SCHED_LOAD_BALANCE:
  1175. retval = update_flag(CS_SCHED_LOAD_BALANCE, cs, val);
  1176. break;
  1177. case FILE_MEMORY_MIGRATE:
  1178. retval = update_flag(CS_MEMORY_MIGRATE, cs, val);
  1179. break;
  1180. case FILE_MEMORY_PRESSURE_ENABLED:
  1181. cpuset_memory_pressure_enabled = !!val;
  1182. break;
  1183. case FILE_MEMORY_PRESSURE:
  1184. retval = -EACCES;
  1185. break;
  1186. case FILE_SPREAD_PAGE:
  1187. retval = update_flag(CS_SPREAD_PAGE, cs, val);
  1188. cs->mems_generation = cpuset_mems_generation++;
  1189. break;
  1190. case FILE_SPREAD_SLAB:
  1191. retval = update_flag(CS_SPREAD_SLAB, cs, val);
  1192. cs->mems_generation = cpuset_mems_generation++;
  1193. break;
  1194. default:
  1195. retval = -EINVAL;
  1196. break;
  1197. }
  1198. cgroup_unlock();
  1199. return retval;
  1200. }
  1201. static int cpuset_write_s64(struct cgroup *cgrp, struct cftype *cft, s64 val)
  1202. {
  1203. int retval = 0;
  1204. struct cpuset *cs = cgroup_cs(cgrp);
  1205. cpuset_filetype_t type = cft->private;
  1206. if (!cgroup_lock_live_group(cgrp))
  1207. return -ENODEV;
  1208. switch (type) {
  1209. case FILE_SCHED_RELAX_DOMAIN_LEVEL:
  1210. retval = update_relax_domain_level(cs, val);
  1211. break;
  1212. default:
  1213. retval = -EINVAL;
  1214. break;
  1215. }
  1216. cgroup_unlock();
  1217. return retval;
  1218. }
  1219. /*
  1220. * Common handling for a write to a "cpus" or "mems" file.
  1221. */
  1222. static int cpuset_write_resmask(struct cgroup *cgrp, struct cftype *cft,
  1223. const char *buf)
  1224. {
  1225. int retval = 0;
  1226. if (!cgroup_lock_live_group(cgrp))
  1227. return -ENODEV;
  1228. switch (cft->private) {
  1229. case FILE_CPULIST:
  1230. retval = update_cpumask(cgroup_cs(cgrp), buf);
  1231. break;
  1232. case FILE_MEMLIST:
  1233. retval = update_nodemask(cgroup_cs(cgrp), buf);
  1234. break;
  1235. default:
  1236. retval = -EINVAL;
  1237. break;
  1238. }
  1239. cgroup_unlock();
  1240. return retval;
  1241. }
  1242. /*
  1243. * These ascii lists should be read in a single call, by using a user
  1244. * buffer large enough to hold the entire map. If read in smaller
  1245. * chunks, there is no guarantee of atomicity. Since the display format
  1246. * used, list of ranges of sequential numbers, is variable length,
  1247. * and since these maps can change value dynamically, one could read
  1248. * gibberish by doing partial reads while a list was changing.
  1249. * A single large read to a buffer that crosses a page boundary is
  1250. * ok, because the result being copied to user land is not recomputed
  1251. * across a page fault.
  1252. */
  1253. static int cpuset_sprintf_cpulist(char *page, struct cpuset *cs)
  1254. {
  1255. cpumask_t mask;
  1256. mutex_lock(&callback_mutex);
  1257. mask = cs->cpus_allowed;
  1258. mutex_unlock(&callback_mutex);
  1259. return cpulist_scnprintf(page, PAGE_SIZE, mask);
  1260. }
  1261. static int cpuset_sprintf_memlist(char *page, struct cpuset *cs)
  1262. {
  1263. nodemask_t mask;
  1264. mutex_lock(&callback_mutex);
  1265. mask = cs->mems_allowed;
  1266. mutex_unlock(&callback_mutex);
  1267. return nodelist_scnprintf(page, PAGE_SIZE, mask);
  1268. }
  1269. static ssize_t cpuset_common_file_read(struct cgroup *cont,
  1270. struct cftype *cft,
  1271. struct file *file,
  1272. char __user *buf,
  1273. size_t nbytes, loff_t *ppos)
  1274. {
  1275. struct cpuset *cs = cgroup_cs(cont);
  1276. cpuset_filetype_t type = cft->private;
  1277. char *page;
  1278. ssize_t retval = 0;
  1279. char *s;
  1280. if (!(page = (char *)__get_free_page(GFP_TEMPORARY)))
  1281. return -ENOMEM;
  1282. s = page;
  1283. switch (type) {
  1284. case FILE_CPULIST:
  1285. s += cpuset_sprintf_cpulist(s, cs);
  1286. break;
  1287. case FILE_MEMLIST:
  1288. s += cpuset_sprintf_memlist(s, cs);
  1289. break;
  1290. default:
  1291. retval = -EINVAL;
  1292. goto out;
  1293. }
  1294. *s++ = '\n';
  1295. retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
  1296. out:
  1297. free_page((unsigned long)page);
  1298. return retval;
  1299. }
  1300. static u64 cpuset_read_u64(struct cgroup *cont, struct cftype *cft)
  1301. {
  1302. struct cpuset *cs = cgroup_cs(cont);
  1303. cpuset_filetype_t type = cft->private;
  1304. switch (type) {
  1305. case FILE_CPU_EXCLUSIVE:
  1306. return is_cpu_exclusive(cs);
  1307. case FILE_MEM_EXCLUSIVE:
  1308. return is_mem_exclusive(cs);
  1309. case FILE_MEM_HARDWALL:
  1310. return is_mem_hardwall(cs);
  1311. case FILE_SCHED_LOAD_BALANCE:
  1312. return is_sched_load_balance(cs);
  1313. case FILE_MEMORY_MIGRATE:
  1314. return is_memory_migrate(cs);
  1315. case FILE_MEMORY_PRESSURE_ENABLED:
  1316. return cpuset_memory_pressure_enabled;
  1317. case FILE_MEMORY_PRESSURE:
  1318. return fmeter_getrate(&cs->fmeter);
  1319. case FILE_SPREAD_PAGE:
  1320. return is_spread_page(cs);
  1321. case FILE_SPREAD_SLAB:
  1322. return is_spread_slab(cs);
  1323. default:
  1324. BUG();
  1325. }
  1326. }
  1327. static s64 cpuset_read_s64(struct cgroup *cont, struct cftype *cft)
  1328. {
  1329. struct cpuset *cs = cgroup_cs(cont);
  1330. cpuset_filetype_t type = cft->private;
  1331. switch (type) {
  1332. case FILE_SCHED_RELAX_DOMAIN_LEVEL:
  1333. return cs->relax_domain_level;
  1334. default:
  1335. BUG();
  1336. }
  1337. }
  1338. /*
  1339. * for the common functions, 'private' gives the type of file
  1340. */
  1341. static struct cftype files[] = {
  1342. {
  1343. .name = "cpus",
  1344. .read = cpuset_common_file_read,
  1345. .write_string = cpuset_write_resmask,
  1346. .max_write_len = (100U + 6 * NR_CPUS),
  1347. .private = FILE_CPULIST,
  1348. },
  1349. {
  1350. .name = "mems",
  1351. .read = cpuset_common_file_read,
  1352. .write_string = cpuset_write_resmask,
  1353. .max_write_len = (100U + 6 * MAX_NUMNODES),
  1354. .private = FILE_MEMLIST,
  1355. },
  1356. {
  1357. .name = "cpu_exclusive",
  1358. .read_u64 = cpuset_read_u64,
  1359. .write_u64 = cpuset_write_u64,
  1360. .private = FILE_CPU_EXCLUSIVE,
  1361. },
  1362. {
  1363. .name = "mem_exclusive",
  1364. .read_u64 = cpuset_read_u64,
  1365. .write_u64 = cpuset_write_u64,
  1366. .private = FILE_MEM_EXCLUSIVE,
  1367. },
  1368. {
  1369. .name = "mem_hardwall",
  1370. .read_u64 = cpuset_read_u64,
  1371. .write_u64 = cpuset_write_u64,
  1372. .private = FILE_MEM_HARDWALL,
  1373. },
  1374. {
  1375. .name = "sched_load_balance",
  1376. .read_u64 = cpuset_read_u64,
  1377. .write_u64 = cpuset_write_u64,
  1378. .private = FILE_SCHED_LOAD_BALANCE,
  1379. },
  1380. {
  1381. .name = "sched_relax_domain_level",
  1382. .read_s64 = cpuset_read_s64,
  1383. .write_s64 = cpuset_write_s64,
  1384. .private = FILE_SCHED_RELAX_DOMAIN_LEVEL,
  1385. },
  1386. {
  1387. .name = "memory_migrate",
  1388. .read_u64 = cpuset_read_u64,
  1389. .write_u64 = cpuset_write_u64,
  1390. .private = FILE_MEMORY_MIGRATE,
  1391. },
  1392. {
  1393. .name = "memory_pressure",
  1394. .read_u64 = cpuset_read_u64,
  1395. .write_u64 = cpuset_write_u64,
  1396. .private = FILE_MEMORY_PRESSURE,
  1397. },
  1398. {
  1399. .name = "memory_spread_page",
  1400. .read_u64 = cpuset_read_u64,
  1401. .write_u64 = cpuset_write_u64,
  1402. .private = FILE_SPREAD_PAGE,
  1403. },
  1404. {
  1405. .name = "memory_spread_slab",
  1406. .read_u64 = cpuset_read_u64,
  1407. .write_u64 = cpuset_write_u64,
  1408. .private = FILE_SPREAD_SLAB,
  1409. },
  1410. };
  1411. static struct cftype cft_memory_pressure_enabled = {
  1412. .name = "memory_pressure_enabled",
  1413. .read_u64 = cpuset_read_u64,
  1414. .write_u64 = cpuset_write_u64,
  1415. .private = FILE_MEMORY_PRESSURE_ENABLED,
  1416. };
  1417. static int cpuset_populate(struct cgroup_subsys *ss, struct cgroup *cont)
  1418. {
  1419. int err;
  1420. err = cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
  1421. if (err)
  1422. return err;
  1423. /* memory_pressure_enabled is in root cpuset only */
  1424. if (!cont->parent)
  1425. err = cgroup_add_file(cont, ss,
  1426. &cft_memory_pressure_enabled);
  1427. return err;
  1428. }
  1429. /*
  1430. * post_clone() is called at the end of cgroup_clone().
  1431. * 'cgroup' was just created automatically as a result of
  1432. * a cgroup_clone(), and the current task is about to
  1433. * be moved into 'cgroup'.
  1434. *
  1435. * Currently we refuse to set up the cgroup - thereby
  1436. * refusing the task to be entered, and as a result refusing
  1437. * the sys_unshare() or clone() which initiated it - if any
  1438. * sibling cpusets have exclusive cpus or mem.
  1439. *
  1440. * If this becomes a problem for some users who wish to
  1441. * allow that scenario, then cpuset_post_clone() could be
  1442. * changed to grant parent->cpus_allowed-sibling_cpus_exclusive
  1443. * (and likewise for mems) to the new cgroup. Called with cgroup_mutex
  1444. * held.
  1445. */
  1446. static void cpuset_post_clone(struct cgroup_subsys *ss,
  1447. struct cgroup *cgroup)
  1448. {
  1449. struct cgroup *parent, *child;
  1450. struct cpuset *cs, *parent_cs;
  1451. parent = cgroup->parent;
  1452. list_for_each_entry(child, &parent->children, sibling) {
  1453. cs = cgroup_cs(child);
  1454. if (is_mem_exclusive(cs) || is_cpu_exclusive(cs))
  1455. return;
  1456. }
  1457. cs = cgroup_cs(cgroup);
  1458. parent_cs = cgroup_cs(parent);
  1459. cs->mems_allowed = parent_cs->mems_allowed;
  1460. cs->cpus_allowed = parent_cs->cpus_allowed;
  1461. return;
  1462. }
  1463. /*
  1464. * cpuset_create - create a cpuset
  1465. * ss: cpuset cgroup subsystem
  1466. * cont: control group that the new cpuset will be part of
  1467. */
  1468. static struct cgroup_subsys_state *cpuset_create(
  1469. struct cgroup_subsys *ss,
  1470. struct cgroup *cont)
  1471. {
  1472. struct cpuset *cs;
  1473. struct cpuset *parent;
  1474. if (!cont->parent) {
  1475. /* This is early initialization for the top cgroup */
  1476. top_cpuset.mems_generation = cpuset_mems_generation++;
  1477. return &top_cpuset.css;
  1478. }
  1479. parent = cgroup_cs(cont->parent);
  1480. cs = kmalloc(sizeof(*cs), GFP_KERNEL);
  1481. if (!cs)
  1482. return ERR_PTR(-ENOMEM);
  1483. cpuset_update_task_memory_state();
  1484. cs->flags = 0;
  1485. if (is_spread_page(parent))
  1486. set_bit(CS_SPREAD_PAGE, &cs->flags);
  1487. if (is_spread_slab(parent))
  1488. set_bit(CS_SPREAD_SLAB, &cs->flags);
  1489. set_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
  1490. cpus_clear(cs->cpus_allowed);
  1491. nodes_clear(cs->mems_allowed);
  1492. cs->mems_generation = cpuset_mems_generation++;
  1493. fmeter_init(&cs->fmeter);
  1494. cs->relax_domain_level = -1;
  1495. cs->parent = parent;
  1496. number_of_cpusets++;
  1497. return &cs->css ;
  1498. }
  1499. /*
  1500. * Locking note on the strange update_flag() call below:
  1501. *
  1502. * If the cpuset being removed has its flag 'sched_load_balance'
  1503. * enabled, then simulate turning sched_load_balance off, which
  1504. * will call rebuild_sched_domains(). The get_online_cpus()
  1505. * call in rebuild_sched_domains() must not be made while holding
  1506. * callback_mutex. Elsewhere the kernel nests callback_mutex inside
  1507. * get_online_cpus() calls. So the reverse nesting would risk an
  1508. * ABBA deadlock.
  1509. */
  1510. static void cpuset_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
  1511. {
  1512. struct cpuset *cs = cgroup_cs(cont);
  1513. cpuset_update_task_memory_state();
  1514. if (is_sched_load_balance(cs))
  1515. update_flag(CS_SCHED_LOAD_BALANCE, cs, 0);
  1516. number_of_cpusets--;
  1517. kfree(cs);
  1518. }
  1519. struct cgroup_subsys cpuset_subsys = {
  1520. .name = "cpuset",
  1521. .create = cpuset_create,
  1522. .destroy = cpuset_destroy,
  1523. .can_attach = cpuset_can_attach,
  1524. .attach = cpuset_attach,
  1525. .populate = cpuset_populate,
  1526. .post_clone = cpuset_post_clone,
  1527. .subsys_id = cpuset_subsys_id,
  1528. .early_init = 1,
  1529. };
  1530. /*
  1531. * cpuset_init_early - just enough so that the calls to
  1532. * cpuset_update_task_memory_state() in early init code
  1533. * are harmless.
  1534. */
  1535. int __init cpuset_init_early(void)
  1536. {
  1537. top_cpuset.mems_generation = cpuset_mems_generation++;
  1538. return 0;
  1539. }
  1540. /**
  1541. * cpuset_init - initialize cpusets at system boot
  1542. *
  1543. * Description: Initialize top_cpuset and the cpuset internal file system,
  1544. **/
  1545. int __init cpuset_init(void)
  1546. {
  1547. int err = 0;
  1548. cpus_setall(top_cpuset.cpus_allowed);
  1549. nodes_setall(top_cpuset.mems_allowed);
  1550. fmeter_init(&top_cpuset.fmeter);
  1551. top_cpuset.mems_generation = cpuset_mems_generation++;
  1552. set_bit(CS_SCHED_LOAD_BALANCE, &top_cpuset.flags);
  1553. top_cpuset.relax_domain_level = -1;
  1554. err = register_filesystem(&cpuset_fs_type);
  1555. if (err < 0)
  1556. return err;
  1557. number_of_cpusets = 1;
  1558. return 0;
  1559. }
  1560. /**
  1561. * cpuset_do_move_task - move a given task to another cpuset
  1562. * @tsk: pointer to task_struct the task to move
  1563. * @scan: struct cgroup_scanner contained in its struct cpuset_hotplug_scanner
  1564. *
  1565. * Called by cgroup_scan_tasks() for each task in a cgroup.
  1566. * Return nonzero to stop the walk through the tasks.
  1567. */
  1568. static void cpuset_do_move_task(struct task_struct *tsk,
  1569. struct cgroup_scanner *scan)
  1570. {
  1571. struct cpuset_hotplug_scanner *chsp;
  1572. chsp = container_of(scan, struct cpuset_hotplug_scanner, scan);
  1573. cgroup_attach_task(chsp->to, tsk);
  1574. }
  1575. /**
  1576. * move_member_tasks_to_cpuset - move tasks from one cpuset to another
  1577. * @from: cpuset in which the tasks currently reside
  1578. * @to: cpuset to which the tasks will be moved
  1579. *
  1580. * Called with cgroup_mutex held
  1581. * callback_mutex must not be held, as cpuset_attach() will take it.
  1582. *
  1583. * The cgroup_scan_tasks() function will scan all the tasks in a cgroup,
  1584. * calling callback functions for each.
  1585. */
  1586. static void move_member_tasks_to_cpuset(struct cpuset *from, struct cpuset *to)
  1587. {
  1588. struct cpuset_hotplug_scanner scan;
  1589. scan.scan.cg = from->css.cgroup;
  1590. scan.scan.test_task = NULL; /* select all tasks in cgroup */
  1591. scan.scan.process_task = cpuset_do_move_task;
  1592. scan.scan.heap = NULL;
  1593. scan.to = to->css.cgroup;
  1594. if (cgroup_scan_tasks(&scan.scan))
  1595. printk(KERN_ERR "move_member_tasks_to_cpuset: "
  1596. "cgroup_scan_tasks failed\n");
  1597. }
  1598. /*
  1599. * If common_cpu_mem_hotplug_unplug(), below, unplugs any CPUs
  1600. * or memory nodes, we need to walk over the cpuset hierarchy,
  1601. * removing that CPU or node from all cpusets. If this removes the
  1602. * last CPU or node from a cpuset, then move the tasks in the empty
  1603. * cpuset to its next-highest non-empty parent.
  1604. *
  1605. * Called with cgroup_mutex held
  1606. * callback_mutex must not be held, as cpuset_attach() will take it.
  1607. */
  1608. static void remove_tasks_in_empty_cpuset(struct cpuset *cs)
  1609. {
  1610. struct cpuset *parent;
  1611. /*
  1612. * The cgroup's css_sets list is in use if there are tasks
  1613. * in the cpuset; the list is empty if there are none;
  1614. * the cs->css.refcnt seems always 0.
  1615. */
  1616. if (list_empty(&cs->css.cgroup->css_sets))
  1617. return;
  1618. /*
  1619. * Find its next-highest non-empty parent, (top cpuset
  1620. * has online cpus, so can't be empty).
  1621. */
  1622. parent = cs->parent;
  1623. while (cpus_empty(parent->cpus_allowed) ||
  1624. nodes_empty(parent->mems_allowed))
  1625. parent = parent->parent;
  1626. move_member_tasks_to_cpuset(cs, parent);
  1627. }
  1628. /*
  1629. * Walk the specified cpuset subtree and look for empty cpusets.
  1630. * The tasks of such cpuset must be moved to a parent cpuset.
  1631. *
  1632. * Called with cgroup_mutex held. We take callback_mutex to modify
  1633. * cpus_allowed and mems_allowed.
  1634. *
  1635. * This walk processes the tree from top to bottom, completing one layer
  1636. * before dropping down to the next. It always processes a node before
  1637. * any of its children.
  1638. *
  1639. * For now, since we lack memory hot unplug, we'll never see a cpuset
  1640. * that has tasks along with an empty 'mems'. But if we did see such
  1641. * a cpuset, we'd handle it just like we do if its 'cpus' was empty.
  1642. */
  1643. static void scan_for_empty_cpusets(const struct cpuset *root)
  1644. {
  1645. LIST_HEAD(queue);
  1646. struct cpuset *cp; /* scans cpusets being updated */
  1647. struct cpuset *child; /* scans child cpusets of cp */
  1648. struct cgroup *cont;
  1649. nodemask_t oldmems;
  1650. list_add_tail((struct list_head *)&root->stack_list, &queue);
  1651. while (!list_empty(&queue)) {
  1652. cp = list_first_entry(&queue, struct cpuset, stack_list);
  1653. list_del(queue.next);
  1654. list_for_each_entry(cont, &cp->css.cgroup->children, sibling) {
  1655. child = cgroup_cs(cont);
  1656. list_add_tail(&child->stack_list, &queue);
  1657. }
  1658. /* Continue past cpusets with all cpus, mems online */
  1659. if (cpus_subset(cp->cpus_allowed, cpu_online_map) &&
  1660. nodes_subset(cp->mems_allowed, node_states[N_HIGH_MEMORY]))
  1661. continue;
  1662. oldmems = cp->mems_allowed;
  1663. /* Remove offline cpus and mems from this cpuset. */
  1664. mutex_lock(&callback_mutex);
  1665. cpus_and(cp->cpus_allowed, cp->cpus_allowed, cpu_online_map);
  1666. nodes_and(cp->mems_allowed, cp->mems_allowed,
  1667. node_states[N_HIGH_MEMORY]);
  1668. mutex_unlock(&callback_mutex);
  1669. /* Move tasks from the empty cpuset to a parent */
  1670. if (cpus_empty(cp->cpus_allowed) ||
  1671. nodes_empty(cp->mems_allowed))
  1672. remove_tasks_in_empty_cpuset(cp);
  1673. else {
  1674. update_tasks_cpumask(cp);
  1675. update_tasks_nodemask(cp, &oldmems);
  1676. }
  1677. }
  1678. }
  1679. /*
  1680. * The cpus_allowed and mems_allowed nodemasks in the top_cpuset track
  1681. * cpu_online_map and node_states[N_HIGH_MEMORY]. Force the top cpuset to
  1682. * track what's online after any CPU or memory node hotplug or unplug event.
  1683. *
  1684. * Since there are two callers of this routine, one for CPU hotplug
  1685. * events and one for memory node hotplug events, we could have coded
  1686. * two separate routines here. We code it as a single common routine
  1687. * in order to minimize text size.
  1688. */
  1689. static void common_cpu_mem_hotplug_unplug(int rebuild_sd)
  1690. {
  1691. cgroup_lock();
  1692. top_cpuset.cpus_allowed = cpu_online_map;
  1693. top_cpuset.mems_allowed = node_states[N_HIGH_MEMORY];
  1694. scan_for_empty_cpusets(&top_cpuset);
  1695. /*
  1696. * Scheduler destroys domains on hotplug events.
  1697. * Rebuild them based on the current settings.
  1698. */
  1699. if (rebuild_sd)
  1700. rebuild_sched_domains();
  1701. cgroup_unlock();
  1702. }
  1703. /*
  1704. * The top_cpuset tracks what CPUs and Memory Nodes are online,
  1705. * period. This is necessary in order to make cpusets transparent
  1706. * (of no affect) on systems that are actively using CPU hotplug
  1707. * but making no active use of cpusets.
  1708. *
  1709. * This routine ensures that top_cpuset.cpus_allowed tracks
  1710. * cpu_online_map on each CPU hotplug (cpuhp) event.
  1711. */
  1712. static int cpuset_handle_cpuhp(struct notifier_block *unused_nb,
  1713. unsigned long phase, void *unused_cpu)
  1714. {
  1715. switch (phase) {
  1716. case CPU_UP_CANCELED:
  1717. case CPU_UP_CANCELED_FROZEN:
  1718. case CPU_DOWN_FAILED:
  1719. case CPU_DOWN_FAILED_FROZEN:
  1720. case CPU_ONLINE:
  1721. case CPU_ONLINE_FROZEN:
  1722. case CPU_DEAD:
  1723. case CPU_DEAD_FROZEN:
  1724. common_cpu_mem_hotplug_unplug(1);
  1725. break;
  1726. default:
  1727. return NOTIFY_DONE;
  1728. }
  1729. return NOTIFY_OK;
  1730. }
  1731. #ifdef CONFIG_MEMORY_HOTPLUG
  1732. /*
  1733. * Keep top_cpuset.mems_allowed tracking node_states[N_HIGH_MEMORY].
  1734. * Call this routine anytime after you change
  1735. * node_states[N_HIGH_MEMORY].
  1736. * See also the previous routine cpuset_handle_cpuhp().
  1737. */
  1738. void cpuset_track_online_nodes(void)
  1739. {
  1740. common_cpu_mem_hotplug_unplug(0);
  1741. }
  1742. #endif
  1743. /**
  1744. * cpuset_init_smp - initialize cpus_allowed
  1745. *
  1746. * Description: Finish top cpuset after cpu, node maps are initialized
  1747. **/
  1748. void __init cpuset_init_smp(void)
  1749. {
  1750. top_cpuset.cpus_allowed = cpu_online_map;
  1751. top_cpuset.mems_allowed = node_states[N_HIGH_MEMORY];
  1752. hotcpu_notifier(cpuset_handle_cpuhp, 0);
  1753. }
  1754. /**
  1755. * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
  1756. * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
  1757. * @pmask: pointer to cpumask_t variable to receive cpus_allowed set.
  1758. *
  1759. * Description: Returns the cpumask_t cpus_allowed of the cpuset
  1760. * attached to the specified @tsk. Guaranteed to return some non-empty
  1761. * subset of cpu_online_map, even if this means going outside the
  1762. * tasks cpuset.
  1763. **/
  1764. void cpuset_cpus_allowed(struct task_struct *tsk, cpumask_t *pmask)
  1765. {
  1766. mutex_lock(&callback_mutex);
  1767. cpuset_cpus_allowed_locked(tsk, pmask);
  1768. mutex_unlock(&callback_mutex);
  1769. }
  1770. /**
  1771. * cpuset_cpus_allowed_locked - return cpus_allowed mask from a tasks cpuset.
  1772. * Must be called with callback_mutex held.
  1773. **/
  1774. void cpuset_cpus_allowed_locked(struct task_struct *tsk, cpumask_t *pmask)
  1775. {
  1776. task_lock(tsk);
  1777. guarantee_online_cpus(task_cs(tsk), pmask);
  1778. task_unlock(tsk);
  1779. }
  1780. void cpuset_init_current_mems_allowed(void)
  1781. {
  1782. nodes_setall(current->mems_allowed);
  1783. }
  1784. /**
  1785. * cpuset_mems_allowed - return mems_allowed mask from a tasks cpuset.
  1786. * @tsk: pointer to task_struct from which to obtain cpuset->mems_allowed.
  1787. *
  1788. * Description: Returns the nodemask_t mems_allowed of the cpuset
  1789. * attached to the specified @tsk. Guaranteed to return some non-empty
  1790. * subset of node_states[N_HIGH_MEMORY], even if this means going outside the
  1791. * tasks cpuset.
  1792. **/
  1793. nodemask_t cpuset_mems_allowed(struct task_struct *tsk)
  1794. {
  1795. nodemask_t mask;
  1796. mutex_lock(&callback_mutex);
  1797. task_lock(tsk);
  1798. guarantee_online_mems(task_cs(tsk), &mask);
  1799. task_unlock(tsk);
  1800. mutex_unlock(&callback_mutex);
  1801. return mask;
  1802. }
  1803. /**
  1804. * cpuset_nodemask_valid_mems_allowed - check nodemask vs. curremt mems_allowed
  1805. * @nodemask: the nodemask to be checked
  1806. *
  1807. * Are any of the nodes in the nodemask allowed in current->mems_allowed?
  1808. */
  1809. int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
  1810. {
  1811. return nodes_intersects(*nodemask, current->mems_allowed);
  1812. }
  1813. /*
  1814. * nearest_hardwall_ancestor() - Returns the nearest mem_exclusive or
  1815. * mem_hardwall ancestor to the specified cpuset. Call holding
  1816. * callback_mutex. If no ancestor is mem_exclusive or mem_hardwall
  1817. * (an unusual configuration), then returns the root cpuset.
  1818. */
  1819. static const struct cpuset *nearest_hardwall_ancestor(const struct cpuset *cs)
  1820. {
  1821. while (!(is_mem_exclusive(cs) || is_mem_hardwall(cs)) && cs->parent)
  1822. cs = cs->parent;
  1823. return cs;
  1824. }
  1825. /**
  1826. * cpuset_zone_allowed_softwall - Can we allocate on zone z's memory node?
  1827. * @z: is this zone on an allowed node?
  1828. * @gfp_mask: memory allocation flags
  1829. *
  1830. * If we're in interrupt, yes, we can always allocate. If
  1831. * __GFP_THISNODE is set, yes, we can always allocate. If zone
  1832. * z's node is in our tasks mems_allowed, yes. If it's not a
  1833. * __GFP_HARDWALL request and this zone's nodes is in the nearest
  1834. * hardwalled cpuset ancestor to this tasks cpuset, yes.
  1835. * If the task has been OOM killed and has access to memory reserves
  1836. * as specified by the TIF_MEMDIE flag, yes.
  1837. * Otherwise, no.
  1838. *
  1839. * If __GFP_HARDWALL is set, cpuset_zone_allowed_softwall()
  1840. * reduces to cpuset_zone_allowed_hardwall(). Otherwise,
  1841. * cpuset_zone_allowed_softwall() might sleep, and might allow a zone
  1842. * from an enclosing cpuset.
  1843. *
  1844. * cpuset_zone_allowed_hardwall() only handles the simpler case of
  1845. * hardwall cpusets, and never sleeps.
  1846. *
  1847. * The __GFP_THISNODE placement logic is really handled elsewhere,
  1848. * by forcibly using a zonelist starting at a specified node, and by
  1849. * (in get_page_from_freelist()) refusing to consider the zones for
  1850. * any node on the zonelist except the first. By the time any such
  1851. * calls get to this routine, we should just shut up and say 'yes'.
  1852. *
  1853. * GFP_USER allocations are marked with the __GFP_HARDWALL bit,
  1854. * and do not allow allocations outside the current tasks cpuset
  1855. * unless the task has been OOM killed as is marked TIF_MEMDIE.
  1856. * GFP_KERNEL allocations are not so marked, so can escape to the
  1857. * nearest enclosing hardwalled ancestor cpuset.
  1858. *
  1859. * Scanning up parent cpusets requires callback_mutex. The
  1860. * __alloc_pages() routine only calls here with __GFP_HARDWALL bit
  1861. * _not_ set if it's a GFP_KERNEL allocation, and all nodes in the
  1862. * current tasks mems_allowed came up empty on the first pass over
  1863. * the zonelist. So only GFP_KERNEL allocations, if all nodes in the
  1864. * cpuset are short of memory, might require taking the callback_mutex
  1865. * mutex.
  1866. *
  1867. * The first call here from mm/page_alloc:get_page_from_freelist()
  1868. * has __GFP_HARDWALL set in gfp_mask, enforcing hardwall cpusets,
  1869. * so no allocation on a node outside the cpuset is allowed (unless
  1870. * in interrupt, of course).
  1871. *
  1872. * The second pass through get_page_from_freelist() doesn't even call
  1873. * here for GFP_ATOMIC calls. For those calls, the __alloc_pages()
  1874. * variable 'wait' is not set, and the bit ALLOC_CPUSET is not set
  1875. * in alloc_flags. That logic and the checks below have the combined
  1876. * affect that:
  1877. * in_interrupt - any node ok (current task context irrelevant)
  1878. * GFP_ATOMIC - any node ok
  1879. * TIF_MEMDIE - any node ok
  1880. * GFP_KERNEL - any node in enclosing hardwalled cpuset ok
  1881. * GFP_USER - only nodes in current tasks mems allowed ok.
  1882. *
  1883. * Rule:
  1884. * Don't call cpuset_zone_allowed_softwall if you can't sleep, unless you
  1885. * pass in the __GFP_HARDWALL flag set in gfp_flag, which disables
  1886. * the code that might scan up ancestor cpusets and sleep.
  1887. */
  1888. int __cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
  1889. {
  1890. int node; /* node that zone z is on */
  1891. const struct cpuset *cs; /* current cpuset ancestors */
  1892. int allowed; /* is allocation in zone z allowed? */
  1893. if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
  1894. return 1;
  1895. node = zone_to_nid(z);
  1896. might_sleep_if(!(gfp_mask & __GFP_HARDWALL));
  1897. if (node_isset(node, current->mems_allowed))
  1898. return 1;
  1899. /*
  1900. * Allow tasks that have access to memory reserves because they have
  1901. * been OOM killed to get memory anywhere.
  1902. */
  1903. if (unlikely(test_thread_flag(TIF_MEMDIE)))
  1904. return 1;
  1905. if (gfp_mask & __GFP_HARDWALL) /* If hardwall request, stop here */
  1906. return 0;
  1907. if (current->flags & PF_EXITING) /* Let dying task have memory */
  1908. return 1;
  1909. /* Not hardwall and node outside mems_allowed: scan up cpusets */
  1910. mutex_lock(&callback_mutex);
  1911. task_lock(current);
  1912. cs = nearest_hardwall_ancestor(task_cs(current));
  1913. task_unlock(current);
  1914. allowed = node_isset(node, cs->mems_allowed);
  1915. mutex_unlock(&callback_mutex);
  1916. return allowed;
  1917. }
  1918. /*
  1919. * cpuset_zone_allowed_hardwall - Can we allocate on zone z's memory node?
  1920. * @z: is this zone on an allowed node?
  1921. * @gfp_mask: memory allocation flags
  1922. *
  1923. * If we're in interrupt, yes, we can always allocate.
  1924. * If __GFP_THISNODE is set, yes, we can always allocate. If zone
  1925. * z's node is in our tasks mems_allowed, yes. If the task has been
  1926. * OOM killed and has access to memory reserves as specified by the
  1927. * TIF_MEMDIE flag, yes. Otherwise, no.
  1928. *
  1929. * The __GFP_THISNODE placement logic is really handled elsewhere,
  1930. * by forcibly using a zonelist starting at a specified node, and by
  1931. * (in get_page_from_freelist()) refusing to consider the zones for
  1932. * any node on the zonelist except the first. By the time any such
  1933. * calls get to this routine, we should just shut up and say 'yes'.
  1934. *
  1935. * Unlike the cpuset_zone_allowed_softwall() variant, above,
  1936. * this variant requires that the zone be in the current tasks
  1937. * mems_allowed or that we're in interrupt. It does not scan up the
  1938. * cpuset hierarchy for the nearest enclosing mem_exclusive cpuset.
  1939. * It never sleeps.
  1940. */
  1941. int __cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
  1942. {
  1943. int node; /* node that zone z is on */
  1944. if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
  1945. return 1;
  1946. node = zone_to_nid(z);
  1947. if (node_isset(node, current->mems_allowed))
  1948. return 1;
  1949. /*
  1950. * Allow tasks that have access to memory reserves because they have
  1951. * been OOM killed to get memory anywhere.
  1952. */
  1953. if (unlikely(test_thread_flag(TIF_MEMDIE)))
  1954. return 1;
  1955. return 0;
  1956. }
  1957. /**
  1958. * cpuset_lock - lock out any changes to cpuset structures
  1959. *
  1960. * The out of memory (oom) code needs to mutex_lock cpusets
  1961. * from being changed while it scans the tasklist looking for a
  1962. * task in an overlapping cpuset. Expose callback_mutex via this
  1963. * cpuset_lock() routine, so the oom code can lock it, before
  1964. * locking the task list. The tasklist_lock is a spinlock, so
  1965. * must be taken inside callback_mutex.
  1966. */
  1967. void cpuset_lock(void)
  1968. {
  1969. mutex_lock(&callback_mutex);
  1970. }
  1971. /**
  1972. * cpuset_unlock - release lock on cpuset changes
  1973. *
  1974. * Undo the lock taken in a previous cpuset_lock() call.
  1975. */
  1976. void cpuset_unlock(void)
  1977. {
  1978. mutex_unlock(&callback_mutex);
  1979. }
  1980. /**
  1981. * cpuset_mem_spread_node() - On which node to begin search for a page
  1982. *
  1983. * If a task is marked PF_SPREAD_PAGE or PF_SPREAD_SLAB (as for
  1984. * tasks in a cpuset with is_spread_page or is_spread_slab set),
  1985. * and if the memory allocation used cpuset_mem_spread_node()
  1986. * to determine on which node to start looking, as it will for
  1987. * certain page cache or slab cache pages such as used for file
  1988. * system buffers and inode caches, then instead of starting on the
  1989. * local node to look for a free page, rather spread the starting
  1990. * node around the tasks mems_allowed nodes.
  1991. *
  1992. * We don't have to worry about the returned node being offline
  1993. * because "it can't happen", and even if it did, it would be ok.
  1994. *
  1995. * The routines calling guarantee_online_mems() are careful to
  1996. * only set nodes in task->mems_allowed that are online. So it
  1997. * should not be possible for the following code to return an
  1998. * offline node. But if it did, that would be ok, as this routine
  1999. * is not returning the node where the allocation must be, only
  2000. * the node where the search should start. The zonelist passed to
  2001. * __alloc_pages() will include all nodes. If the slab allocator
  2002. * is passed an offline node, it will fall back to the local node.
  2003. * See kmem_cache_alloc_node().
  2004. */
  2005. int cpuset_mem_spread_node(void)
  2006. {
  2007. int node;
  2008. node = next_node(current->cpuset_mem_spread_rotor, current->mems_allowed);
  2009. if (node == MAX_NUMNODES)
  2010. node = first_node(current->mems_allowed);
  2011. current->cpuset_mem_spread_rotor = node;
  2012. return node;
  2013. }
  2014. EXPORT_SYMBOL_GPL(cpuset_mem_spread_node);
  2015. /**
  2016. * cpuset_mems_allowed_intersects - Does @tsk1's mems_allowed intersect @tsk2's?
  2017. * @tsk1: pointer to task_struct of some task.
  2018. * @tsk2: pointer to task_struct of some other task.
  2019. *
  2020. * Description: Return true if @tsk1's mems_allowed intersects the
  2021. * mems_allowed of @tsk2. Used by the OOM killer to determine if
  2022. * one of the task's memory usage might impact the memory available
  2023. * to the other.
  2024. **/
  2025. int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
  2026. const struct task_struct *tsk2)
  2027. {
  2028. return nodes_intersects(tsk1->mems_allowed, tsk2->mems_allowed);
  2029. }
  2030. /*
  2031. * Collection of memory_pressure is suppressed unless
  2032. * this flag is enabled by writing "1" to the special
  2033. * cpuset file 'memory_pressure_enabled' in the root cpuset.
  2034. */
  2035. int cpuset_memory_pressure_enabled __read_mostly;
  2036. /**
  2037. * cpuset_memory_pressure_bump - keep stats of per-cpuset reclaims.
  2038. *
  2039. * Keep a running average of the rate of synchronous (direct)
  2040. * page reclaim efforts initiated by tasks in each cpuset.
  2041. *
  2042. * This represents the rate at which some task in the cpuset
  2043. * ran low on memory on all nodes it was allowed to use, and
  2044. * had to enter the kernels page reclaim code in an effort to
  2045. * create more free memory by tossing clean pages or swapping
  2046. * or writing dirty pages.
  2047. *
  2048. * Display to user space in the per-cpuset read-only file
  2049. * "memory_pressure". Value displayed is an integer
  2050. * representing the recent rate of entry into the synchronous
  2051. * (direct) page reclaim by any task attached to the cpuset.
  2052. **/
  2053. void __cpuset_memory_pressure_bump(void)
  2054. {
  2055. task_lock(current);
  2056. fmeter_markevent(&task_cs(current)->fmeter);
  2057. task_unlock(current);
  2058. }
  2059. #ifdef CONFIG_PROC_PID_CPUSET
  2060. /*
  2061. * proc_cpuset_show()
  2062. * - Print tasks cpuset path into seq_file.
  2063. * - Used for /proc/<pid>/cpuset.
  2064. * - No need to task_lock(tsk) on this tsk->cpuset reference, as it
  2065. * doesn't really matter if tsk->cpuset changes after we read it,
  2066. * and we take cgroup_mutex, keeping cpuset_attach() from changing it
  2067. * anyway.
  2068. */
  2069. static int proc_cpuset_show(struct seq_file *m, void *unused_v)
  2070. {
  2071. struct pid *pid;
  2072. struct task_struct *tsk;
  2073. char *buf;
  2074. struct cgroup_subsys_state *css;
  2075. int retval;
  2076. retval = -ENOMEM;
  2077. buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  2078. if (!buf)
  2079. goto out;
  2080. retval = -ESRCH;
  2081. pid = m->private;
  2082. tsk = get_pid_task(pid, PIDTYPE_PID);
  2083. if (!tsk)
  2084. goto out_free;
  2085. retval = -EINVAL;
  2086. cgroup_lock();
  2087. css = task_subsys_state(tsk, cpuset_subsys_id);
  2088. retval = cgroup_path(css->cgroup, buf, PAGE_SIZE);
  2089. if (retval < 0)
  2090. goto out_unlock;
  2091. seq_puts(m, buf);
  2092. seq_putc(m, '\n');
  2093. out_unlock:
  2094. cgroup_unlock();
  2095. put_task_struct(tsk);
  2096. out_free:
  2097. kfree(buf);
  2098. out:
  2099. return retval;
  2100. }
  2101. static int cpuset_open(struct inode *inode, struct file *file)
  2102. {
  2103. struct pid *pid = PROC_I(inode)->pid;
  2104. return single_open(file, proc_cpuset_show, pid);
  2105. }
  2106. const struct file_operations proc_cpuset_operations = {
  2107. .open = cpuset_open,
  2108. .read = seq_read,
  2109. .llseek = seq_lseek,
  2110. .release = single_release,
  2111. };
  2112. #endif /* CONFIG_PROC_PID_CPUSET */
  2113. /* Display task cpus_allowed, mems_allowed in /proc/<pid>/status file. */
  2114. void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task)
  2115. {
  2116. seq_printf(m, "Cpus_allowed:\t");
  2117. m->count += cpumask_scnprintf(m->buf + m->count, m->size - m->count,
  2118. task->cpus_allowed);
  2119. seq_printf(m, "\n");
  2120. seq_printf(m, "Cpus_allowed_list:\t");
  2121. m->count += cpulist_scnprintf(m->buf + m->count, m->size - m->count,
  2122. task->cpus_allowed);
  2123. seq_printf(m, "\n");
  2124. seq_printf(m, "Mems_allowed:\t");
  2125. m->count += nodemask_scnprintf(m->buf + m->count, m->size - m->count,
  2126. task->mems_allowed);
  2127. seq_printf(m, "\n");
  2128. seq_printf(m, "Mems_allowed_list:\t");
  2129. m->count += nodelist_scnprintf(m->buf + m->count, m->size - m->count,
  2130. task->mems_allowed);
  2131. seq_printf(m, "\n");
  2132. }