cpuset.c 74 KB

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