cpuset.c 74 KB

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