cpuset: Minor cgroup2 interface updates
[linux-2.6-microblaze.git] / kernel / cgroup / cpuset.c
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
25 #include <linux/cpu.h>
26 #include <linux/cpumask.h>
27 #include <linux/cpuset.h>
28 #include <linux/err.h>
29 #include <linux/errno.h>
30 #include <linux/file.h>
31 #include <linux/fs.h>
32 #include <linux/init.h>
33 #include <linux/interrupt.h>
34 #include <linux/kernel.h>
35 #include <linux/kmod.h>
36 #include <linux/list.h>
37 #include <linux/mempolicy.h>
38 #include <linux/mm.h>
39 #include <linux/memory.h>
40 #include <linux/export.h>
41 #include <linux/mount.h>
42 #include <linux/namei.h>
43 #include <linux/pagemap.h>
44 #include <linux/proc_fs.h>
45 #include <linux/rcupdate.h>
46 #include <linux/sched.h>
47 #include <linux/sched/mm.h>
48 #include <linux/sched/task.h>
49 #include <linux/seq_file.h>
50 #include <linux/security.h>
51 #include <linux/slab.h>
52 #include <linux/spinlock.h>
53 #include <linux/stat.h>
54 #include <linux/string.h>
55 #include <linux/time.h>
56 #include <linux/time64.h>
57 #include <linux/backing-dev.h>
58 #include <linux/sort.h>
59 #include <linux/oom.h>
60 #include <linux/sched/isolation.h>
61 #include <linux/uaccess.h>
62 #include <linux/atomic.h>
63 #include <linux/mutex.h>
64 #include <linux/cgroup.h>
65 #include <linux/wait.h>
66
67 DEFINE_STATIC_KEY_FALSE(cpusets_pre_enable_key);
68 DEFINE_STATIC_KEY_FALSE(cpusets_enabled_key);
69
70 /* See "Frequency meter" comments, below. */
71
72 struct fmeter {
73         int cnt;                /* unprocessed events count */
74         int val;                /* most recent output value */
75         time64_t time;          /* clock (secs) when val computed */
76         spinlock_t lock;        /* guards read or write of above */
77 };
78
79 struct cpuset {
80         struct cgroup_subsys_state css;
81
82         unsigned long flags;            /* "unsigned long" so bitops work */
83
84         /*
85          * On default hierarchy:
86          *
87          * The user-configured masks can only be changed by writing to
88          * cpuset.cpus and cpuset.mems, and won't be limited by the
89          * parent masks.
90          *
91          * The effective masks is the real masks that apply to the tasks
92          * in the cpuset. They may be changed if the configured masks are
93          * changed or hotplug happens.
94          *
95          * effective_mask == configured_mask & parent's effective_mask,
96          * and if it ends up empty, it will inherit the parent's mask.
97          *
98          *
99          * On legacy hierachy:
100          *
101          * The user-configured masks are always the same with effective masks.
102          */
103
104         /* user-configured CPUs and Memory Nodes allow to tasks */
105         cpumask_var_t cpus_allowed;
106         nodemask_t mems_allowed;
107
108         /* effective CPUs and Memory Nodes allow to tasks */
109         cpumask_var_t effective_cpus;
110         nodemask_t effective_mems;
111
112         /*
113          * CPUs allocated to child sub-partitions (default hierarchy only)
114          * - CPUs granted by the parent = effective_cpus U subparts_cpus
115          * - effective_cpus and subparts_cpus are mutually exclusive.
116          *
117          * effective_cpus contains only onlined CPUs, but subparts_cpus
118          * may have offlined ones.
119          */
120         cpumask_var_t subparts_cpus;
121
122         /*
123          * This is old Memory Nodes tasks took on.
124          *
125          * - top_cpuset.old_mems_allowed is initialized to mems_allowed.
126          * - A new cpuset's old_mems_allowed is initialized when some
127          *   task is moved into it.
128          * - old_mems_allowed is used in cpuset_migrate_mm() when we change
129          *   cpuset.mems_allowed and have tasks' nodemask updated, and
130          *   then old_mems_allowed is updated to mems_allowed.
131          */
132         nodemask_t old_mems_allowed;
133
134         struct fmeter fmeter;           /* memory_pressure filter */
135
136         /*
137          * Tasks are being attached to this cpuset.  Used to prevent
138          * zeroing cpus/mems_allowed between ->can_attach() and ->attach().
139          */
140         int attach_in_progress;
141
142         /* partition number for rebuild_sched_domains() */
143         int pn;
144
145         /* for custom sched domain */
146         int relax_domain_level;
147
148         /* number of CPUs in subparts_cpus */
149         int nr_subparts_cpus;
150
151         /* partition root state */
152         int partition_root_state;
153
154         /*
155          * Default hierarchy only:
156          * use_parent_ecpus - set if using parent's effective_cpus
157          * child_ecpus_count - # of children with use_parent_ecpus set
158          */
159         int use_parent_ecpus;
160         int child_ecpus_count;
161 };
162
163 /*
164  * Partition root states:
165  *
166  *   0 - not a partition root
167  *
168  *   1 - partition root
169  *
170  *  -1 - invalid partition root
171  *       None of the cpus in cpus_allowed can be put into the parent's
172  *       subparts_cpus. In this case, the cpuset is not a real partition
173  *       root anymore.  However, the CPU_EXCLUSIVE bit will still be set
174  *       and the cpuset can be restored back to a partition root if the
175  *       parent cpuset can give more CPUs back to this child cpuset.
176  */
177 #define PRS_DISABLED            0
178 #define PRS_ENABLED             1
179 #define PRS_ERROR               -1
180
181 /*
182  * Temporary cpumasks for working with partitions that are passed among
183  * functions to avoid memory allocation in inner functions.
184  */
185 struct tmpmasks {
186         cpumask_var_t addmask, delmask; /* For partition root */
187         cpumask_var_t new_cpus;         /* For update_cpumasks_hier() */
188 };
189
190 static inline struct cpuset *css_cs(struct cgroup_subsys_state *css)
191 {
192         return css ? container_of(css, struct cpuset, css) : NULL;
193 }
194
195 /* Retrieve the cpuset for a task */
196 static inline struct cpuset *task_cs(struct task_struct *task)
197 {
198         return css_cs(task_css(task, cpuset_cgrp_id));
199 }
200
201 static inline struct cpuset *parent_cs(struct cpuset *cs)
202 {
203         return css_cs(cs->css.parent);
204 }
205
206 #ifdef CONFIG_NUMA
207 static inline bool task_has_mempolicy(struct task_struct *task)
208 {
209         return task->mempolicy;
210 }
211 #else
212 static inline bool task_has_mempolicy(struct task_struct *task)
213 {
214         return false;
215 }
216 #endif
217
218
219 /* bits in struct cpuset flags field */
220 typedef enum {
221         CS_ONLINE,
222         CS_CPU_EXCLUSIVE,
223         CS_MEM_EXCLUSIVE,
224         CS_MEM_HARDWALL,
225         CS_MEMORY_MIGRATE,
226         CS_SCHED_LOAD_BALANCE,
227         CS_SPREAD_PAGE,
228         CS_SPREAD_SLAB,
229 } cpuset_flagbits_t;
230
231 /* convenient tests for these bits */
232 static inline bool is_cpuset_online(struct cpuset *cs)
233 {
234         return test_bit(CS_ONLINE, &cs->flags) && !css_is_dying(&cs->css);
235 }
236
237 static inline int is_cpu_exclusive(const struct cpuset *cs)
238 {
239         return test_bit(CS_CPU_EXCLUSIVE, &cs->flags);
240 }
241
242 static inline int is_mem_exclusive(const struct cpuset *cs)
243 {
244         return test_bit(CS_MEM_EXCLUSIVE, &cs->flags);
245 }
246
247 static inline int is_mem_hardwall(const struct cpuset *cs)
248 {
249         return test_bit(CS_MEM_HARDWALL, &cs->flags);
250 }
251
252 static inline int is_sched_load_balance(const struct cpuset *cs)
253 {
254         return test_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
255 }
256
257 static inline int is_memory_migrate(const struct cpuset *cs)
258 {
259         return test_bit(CS_MEMORY_MIGRATE, &cs->flags);
260 }
261
262 static inline int is_spread_page(const struct cpuset *cs)
263 {
264         return test_bit(CS_SPREAD_PAGE, &cs->flags);
265 }
266
267 static inline int is_spread_slab(const struct cpuset *cs)
268 {
269         return test_bit(CS_SPREAD_SLAB, &cs->flags);
270 }
271
272 static inline int is_partition_root(const struct cpuset *cs)
273 {
274         return cs->partition_root_state > 0;
275 }
276
277 static struct cpuset top_cpuset = {
278         .flags = ((1 << CS_ONLINE) | (1 << CS_CPU_EXCLUSIVE) |
279                   (1 << CS_MEM_EXCLUSIVE)),
280         .partition_root_state = PRS_ENABLED,
281 };
282
283 /**
284  * cpuset_for_each_child - traverse online children of a cpuset
285  * @child_cs: loop cursor pointing to the current child
286  * @pos_css: used for iteration
287  * @parent_cs: target cpuset to walk children of
288  *
289  * Walk @child_cs through the online children of @parent_cs.  Must be used
290  * with RCU read locked.
291  */
292 #define cpuset_for_each_child(child_cs, pos_css, parent_cs)             \
293         css_for_each_child((pos_css), &(parent_cs)->css)                \
294                 if (is_cpuset_online(((child_cs) = css_cs((pos_css)))))
295
296 /**
297  * cpuset_for_each_descendant_pre - pre-order walk of a cpuset's descendants
298  * @des_cs: loop cursor pointing to the current descendant
299  * @pos_css: used for iteration
300  * @root_cs: target cpuset to walk ancestor of
301  *
302  * Walk @des_cs through the online descendants of @root_cs.  Must be used
303  * with RCU read locked.  The caller may modify @pos_css by calling
304  * css_rightmost_descendant() to skip subtree.  @root_cs is included in the
305  * iteration and the first node to be visited.
306  */
307 #define cpuset_for_each_descendant_pre(des_cs, pos_css, root_cs)        \
308         css_for_each_descendant_pre((pos_css), &(root_cs)->css)         \
309                 if (is_cpuset_online(((des_cs) = css_cs((pos_css)))))
310
311 /*
312  * There are two global locks guarding cpuset structures - cpuset_mutex and
313  * callback_lock. We also require taking task_lock() when dereferencing a
314  * task's cpuset pointer. See "The task_lock() exception", at the end of this
315  * comment.
316  *
317  * A task must hold both locks to modify cpusets.  If a task holds
318  * cpuset_mutex, then it blocks others wanting that mutex, ensuring that it
319  * is the only task able to also acquire callback_lock and be able to
320  * modify cpusets.  It can perform various checks on the cpuset structure
321  * first, knowing nothing will change.  It can also allocate memory while
322  * just holding cpuset_mutex.  While it is performing these checks, various
323  * callback routines can briefly acquire callback_lock to query cpusets.
324  * Once it is ready to make the changes, it takes callback_lock, blocking
325  * everyone else.
326  *
327  * Calls to the kernel memory allocator can not be made while holding
328  * callback_lock, as that would risk double tripping on callback_lock
329  * from one of the callbacks into the cpuset code from within
330  * __alloc_pages().
331  *
332  * If a task is only holding callback_lock, then it has read-only
333  * access to cpusets.
334  *
335  * Now, the task_struct fields mems_allowed and mempolicy may be changed
336  * by other task, we use alloc_lock in the task_struct fields to protect
337  * them.
338  *
339  * The cpuset_common_file_read() handlers only hold callback_lock across
340  * small pieces of code, such as when reading out possibly multi-word
341  * cpumasks and nodemasks.
342  *
343  * Accessing a task's cpuset should be done in accordance with the
344  * guidelines for accessing subsystem state in kernel/cgroup.c
345  */
346
347 static DEFINE_MUTEX(cpuset_mutex);
348 static DEFINE_SPINLOCK(callback_lock);
349
350 static struct workqueue_struct *cpuset_migrate_mm_wq;
351
352 /*
353  * CPU / memory hotplug is handled asynchronously.
354  */
355 static void cpuset_hotplug_workfn(struct work_struct *work);
356 static DECLARE_WORK(cpuset_hotplug_work, cpuset_hotplug_workfn);
357
358 static DECLARE_WAIT_QUEUE_HEAD(cpuset_attach_wq);
359
360 /*
361  * Cgroup v2 behavior is used when on default hierarchy or the
362  * cgroup_v2_mode flag is set.
363  */
364 static inline bool is_in_v2_mode(void)
365 {
366         return cgroup_subsys_on_dfl(cpuset_cgrp_subsys) ||
367               (cpuset_cgrp_subsys.root->flags & CGRP_ROOT_CPUSET_V2_MODE);
368 }
369
370 /*
371  * This is ugly, but preserves the userspace API for existing cpuset
372  * users. If someone tries to mount the "cpuset" filesystem, we
373  * silently switch it to mount "cgroup" instead
374  */
375 static struct dentry *cpuset_mount(struct file_system_type *fs_type,
376                          int flags, const char *unused_dev_name, void *data)
377 {
378         struct file_system_type *cgroup_fs = get_fs_type("cgroup");
379         struct dentry *ret = ERR_PTR(-ENODEV);
380         if (cgroup_fs) {
381                 char mountopts[] =
382                         "cpuset,noprefix,"
383                         "release_agent=/sbin/cpuset_release_agent";
384                 ret = cgroup_fs->mount(cgroup_fs, flags,
385                                            unused_dev_name, mountopts);
386                 put_filesystem(cgroup_fs);
387         }
388         return ret;
389 }
390
391 static struct file_system_type cpuset_fs_type = {
392         .name = "cpuset",
393         .mount = cpuset_mount,
394 };
395
396 /*
397  * Return in pmask the portion of a cpusets's cpus_allowed that
398  * are online.  If none are online, walk up the cpuset hierarchy
399  * until we find one that does have some online cpus.
400  *
401  * One way or another, we guarantee to return some non-empty subset
402  * of cpu_online_mask.
403  *
404  * Call with callback_lock or cpuset_mutex held.
405  */
406 static void guarantee_online_cpus(struct cpuset *cs, struct cpumask *pmask)
407 {
408         while (!cpumask_intersects(cs->effective_cpus, cpu_online_mask)) {
409                 cs = parent_cs(cs);
410                 if (unlikely(!cs)) {
411                         /*
412                          * The top cpuset doesn't have any online cpu as a
413                          * consequence of a race between cpuset_hotplug_work
414                          * and cpu hotplug notifier.  But we know the top
415                          * cpuset's effective_cpus is on its way to to be
416                          * identical to cpu_online_mask.
417                          */
418                         cpumask_copy(pmask, cpu_online_mask);
419                         return;
420                 }
421         }
422         cpumask_and(pmask, cs->effective_cpus, cpu_online_mask);
423 }
424
425 /*
426  * Return in *pmask the portion of a cpusets's mems_allowed that
427  * are online, with memory.  If none are online with memory, walk
428  * up the cpuset hierarchy until we find one that does have some
429  * online mems.  The top cpuset always has some mems online.
430  *
431  * One way or another, we guarantee to return some non-empty subset
432  * of node_states[N_MEMORY].
433  *
434  * Call with callback_lock or cpuset_mutex held.
435  */
436 static void guarantee_online_mems(struct cpuset *cs, nodemask_t *pmask)
437 {
438         while (!nodes_intersects(cs->effective_mems, node_states[N_MEMORY]))
439                 cs = parent_cs(cs);
440         nodes_and(*pmask, cs->effective_mems, node_states[N_MEMORY]);
441 }
442
443 /*
444  * update task's spread flag if cpuset's page/slab spread flag is set
445  *
446  * Call with callback_lock or cpuset_mutex held.
447  */
448 static void cpuset_update_task_spread_flag(struct cpuset *cs,
449                                         struct task_struct *tsk)
450 {
451         if (is_spread_page(cs))
452                 task_set_spread_page(tsk);
453         else
454                 task_clear_spread_page(tsk);
455
456         if (is_spread_slab(cs))
457                 task_set_spread_slab(tsk);
458         else
459                 task_clear_spread_slab(tsk);
460 }
461
462 /*
463  * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
464  *
465  * One cpuset is a subset of another if all its allowed CPUs and
466  * Memory Nodes are a subset of the other, and its exclusive flags
467  * are only set if the other's are set.  Call holding cpuset_mutex.
468  */
469
470 static int is_cpuset_subset(const struct cpuset *p, const struct cpuset *q)
471 {
472         return  cpumask_subset(p->cpus_allowed, q->cpus_allowed) &&
473                 nodes_subset(p->mems_allowed, q->mems_allowed) &&
474                 is_cpu_exclusive(p) <= is_cpu_exclusive(q) &&
475                 is_mem_exclusive(p) <= is_mem_exclusive(q);
476 }
477
478 /**
479  * alloc_cpumasks - allocate three cpumasks for cpuset
480  * @cs:  the cpuset that have cpumasks to be allocated.
481  * @tmp: the tmpmasks structure pointer
482  * Return: 0 if successful, -ENOMEM otherwise.
483  *
484  * Only one of the two input arguments should be non-NULL.
485  */
486 static inline int alloc_cpumasks(struct cpuset *cs, struct tmpmasks *tmp)
487 {
488         cpumask_var_t *pmask1, *pmask2, *pmask3;
489
490         if (cs) {
491                 pmask1 = &cs->cpus_allowed;
492                 pmask2 = &cs->effective_cpus;
493                 pmask3 = &cs->subparts_cpus;
494         } else {
495                 pmask1 = &tmp->new_cpus;
496                 pmask2 = &tmp->addmask;
497                 pmask3 = &tmp->delmask;
498         }
499
500         if (!zalloc_cpumask_var(pmask1, GFP_KERNEL))
501                 return -ENOMEM;
502
503         if (!zalloc_cpumask_var(pmask2, GFP_KERNEL))
504                 goto free_one;
505
506         if (!zalloc_cpumask_var(pmask3, GFP_KERNEL))
507                 goto free_two;
508
509         return 0;
510
511 free_two:
512         free_cpumask_var(*pmask2);
513 free_one:
514         free_cpumask_var(*pmask1);
515         return -ENOMEM;
516 }
517
518 /**
519  * free_cpumasks - free cpumasks in a tmpmasks structure
520  * @cs:  the cpuset that have cpumasks to be free.
521  * @tmp: the tmpmasks structure pointer
522  */
523 static inline void free_cpumasks(struct cpuset *cs, struct tmpmasks *tmp)
524 {
525         if (cs) {
526                 free_cpumask_var(cs->cpus_allowed);
527                 free_cpumask_var(cs->effective_cpus);
528                 free_cpumask_var(cs->subparts_cpus);
529         }
530         if (tmp) {
531                 free_cpumask_var(tmp->new_cpus);
532                 free_cpumask_var(tmp->addmask);
533                 free_cpumask_var(tmp->delmask);
534         }
535 }
536
537 /**
538  * alloc_trial_cpuset - allocate a trial cpuset
539  * @cs: the cpuset that the trial cpuset duplicates
540  */
541 static struct cpuset *alloc_trial_cpuset(struct cpuset *cs)
542 {
543         struct cpuset *trial;
544
545         trial = kmemdup(cs, sizeof(*cs), GFP_KERNEL);
546         if (!trial)
547                 return NULL;
548
549         if (alloc_cpumasks(trial, NULL)) {
550                 kfree(trial);
551                 return NULL;
552         }
553
554         cpumask_copy(trial->cpus_allowed, cs->cpus_allowed);
555         cpumask_copy(trial->effective_cpus, cs->effective_cpus);
556         return trial;
557 }
558
559 /**
560  * free_cpuset - free the cpuset
561  * @cs: the cpuset to be freed
562  */
563 static inline void free_cpuset(struct cpuset *cs)
564 {
565         free_cpumasks(cs, NULL);
566         kfree(cs);
567 }
568
569 /*
570  * validate_change() - Used to validate that any proposed cpuset change
571  *                     follows the structural rules for cpusets.
572  *
573  * If we replaced the flag and mask values of the current cpuset
574  * (cur) with those values in the trial cpuset (trial), would
575  * our various subset and exclusive rules still be valid?  Presumes
576  * cpuset_mutex held.
577  *
578  * 'cur' is the address of an actual, in-use cpuset.  Operations
579  * such as list traversal that depend on the actual address of the
580  * cpuset in the list must use cur below, not trial.
581  *
582  * 'trial' is the address of bulk structure copy of cur, with
583  * perhaps one or more of the fields cpus_allowed, mems_allowed,
584  * or flags changed to new, trial values.
585  *
586  * Return 0 if valid, -errno if not.
587  */
588
589 static int validate_change(struct cpuset *cur, struct cpuset *trial)
590 {
591         struct cgroup_subsys_state *css;
592         struct cpuset *c, *par;
593         int ret;
594
595         rcu_read_lock();
596
597         /* Each of our child cpusets must be a subset of us */
598         ret = -EBUSY;
599         cpuset_for_each_child(c, css, cur)
600                 if (!is_cpuset_subset(c, trial))
601                         goto out;
602
603         /* Remaining checks don't apply to root cpuset */
604         ret = 0;
605         if (cur == &top_cpuset)
606                 goto out;
607
608         par = parent_cs(cur);
609
610         /* On legacy hiearchy, we must be a subset of our parent cpuset. */
611         ret = -EACCES;
612         if (!is_in_v2_mode() && !is_cpuset_subset(trial, par))
613                 goto out;
614
615         /*
616          * If either I or some sibling (!= me) is exclusive, we can't
617          * overlap
618          */
619         ret = -EINVAL;
620         cpuset_for_each_child(c, css, par) {
621                 if ((is_cpu_exclusive(trial) || is_cpu_exclusive(c)) &&
622                     c != cur &&
623                     cpumask_intersects(trial->cpus_allowed, c->cpus_allowed))
624                         goto out;
625                 if ((is_mem_exclusive(trial) || is_mem_exclusive(c)) &&
626                     c != cur &&
627                     nodes_intersects(trial->mems_allowed, c->mems_allowed))
628                         goto out;
629         }
630
631         /*
632          * Cpusets with tasks - existing or newly being attached - can't
633          * be changed to have empty cpus_allowed or mems_allowed.
634          */
635         ret = -ENOSPC;
636         if ((cgroup_is_populated(cur->css.cgroup) || cur->attach_in_progress)) {
637                 if (!cpumask_empty(cur->cpus_allowed) &&
638                     cpumask_empty(trial->cpus_allowed))
639                         goto out;
640                 if (!nodes_empty(cur->mems_allowed) &&
641                     nodes_empty(trial->mems_allowed))
642                         goto out;
643         }
644
645         /*
646          * We can't shrink if we won't have enough room for SCHED_DEADLINE
647          * tasks.
648          */
649         ret = -EBUSY;
650         if (is_cpu_exclusive(cur) &&
651             !cpuset_cpumask_can_shrink(cur->cpus_allowed,
652                                        trial->cpus_allowed))
653                 goto out;
654
655         ret = 0;
656 out:
657         rcu_read_unlock();
658         return ret;
659 }
660
661 #ifdef CONFIG_SMP
662 /*
663  * Helper routine for generate_sched_domains().
664  * Do cpusets a, b have overlapping effective cpus_allowed masks?
665  */
666 static int cpusets_overlap(struct cpuset *a, struct cpuset *b)
667 {
668         return cpumask_intersects(a->effective_cpus, b->effective_cpus);
669 }
670
671 static void
672 update_domain_attr(struct sched_domain_attr *dattr, struct cpuset *c)
673 {
674         if (dattr->relax_domain_level < c->relax_domain_level)
675                 dattr->relax_domain_level = c->relax_domain_level;
676         return;
677 }
678
679 static void update_domain_attr_tree(struct sched_domain_attr *dattr,
680                                     struct cpuset *root_cs)
681 {
682         struct cpuset *cp;
683         struct cgroup_subsys_state *pos_css;
684
685         rcu_read_lock();
686         cpuset_for_each_descendant_pre(cp, pos_css, root_cs) {
687                 /* skip the whole subtree if @cp doesn't have any CPU */
688                 if (cpumask_empty(cp->cpus_allowed)) {
689                         pos_css = css_rightmost_descendant(pos_css);
690                         continue;
691                 }
692
693                 if (is_sched_load_balance(cp))
694                         update_domain_attr(dattr, cp);
695         }
696         rcu_read_unlock();
697 }
698
699 /* Must be called with cpuset_mutex held.  */
700 static inline int nr_cpusets(void)
701 {
702         /* jump label reference count + the top-level cpuset */
703         return static_key_count(&cpusets_enabled_key.key) + 1;
704 }
705
706 /*
707  * generate_sched_domains()
708  *
709  * This function builds a partial partition of the systems CPUs
710  * A 'partial partition' is a set of non-overlapping subsets whose
711  * union is a subset of that set.
712  * The output of this function needs to be passed to kernel/sched/core.c
713  * partition_sched_domains() routine, which will rebuild the scheduler's
714  * load balancing domains (sched domains) as specified by that partial
715  * partition.
716  *
717  * See "What is sched_load_balance" in Documentation/cgroup-v1/cpusets.txt
718  * for a background explanation of this.
719  *
720  * Does not return errors, on the theory that the callers of this
721  * routine would rather not worry about failures to rebuild sched
722  * domains when operating in the severe memory shortage situations
723  * that could cause allocation failures below.
724  *
725  * Must be called with cpuset_mutex held.
726  *
727  * The three key local variables below are:
728  *    q  - a linked-list queue of cpuset pointers, used to implement a
729  *         top-down scan of all cpusets.  This scan loads a pointer
730  *         to each cpuset marked is_sched_load_balance into the
731  *         array 'csa'.  For our purposes, rebuilding the schedulers
732  *         sched domains, we can ignore !is_sched_load_balance cpusets.
733  *  csa  - (for CpuSet Array) Array of pointers to all the cpusets
734  *         that need to be load balanced, for convenient iterative
735  *         access by the subsequent code that finds the best partition,
736  *         i.e the set of domains (subsets) of CPUs such that the
737  *         cpus_allowed of every cpuset marked is_sched_load_balance
738  *         is a subset of one of these domains, while there are as
739  *         many such domains as possible, each as small as possible.
740  * doms  - Conversion of 'csa' to an array of cpumasks, for passing to
741  *         the kernel/sched/core.c routine partition_sched_domains() in a
742  *         convenient format, that can be easily compared to the prior
743  *         value to determine what partition elements (sched domains)
744  *         were changed (added or removed.)
745  *
746  * Finding the best partition (set of domains):
747  *      The triple nested loops below over i, j, k scan over the
748  *      load balanced cpusets (using the array of cpuset pointers in
749  *      csa[]) looking for pairs of cpusets that have overlapping
750  *      cpus_allowed, but which don't have the same 'pn' partition
751  *      number and gives them in the same partition number.  It keeps
752  *      looping on the 'restart' label until it can no longer find
753  *      any such pairs.
754  *
755  *      The union of the cpus_allowed masks from the set of
756  *      all cpusets having the same 'pn' value then form the one
757  *      element of the partition (one sched domain) to be passed to
758  *      partition_sched_domains().
759  */
760 static int generate_sched_domains(cpumask_var_t **domains,
761                         struct sched_domain_attr **attributes)
762 {
763         struct cpuset *cp;      /* scans q */
764         struct cpuset **csa;    /* array of all cpuset ptrs */
765         int csn;                /* how many cpuset ptrs in csa so far */
766         int i, j, k;            /* indices for partition finding loops */
767         cpumask_var_t *doms;    /* resulting partition; i.e. sched domains */
768         struct sched_domain_attr *dattr;  /* attributes for custom domains */
769         int ndoms = 0;          /* number of sched domains in result */
770         int nslot;              /* next empty doms[] struct cpumask slot */
771         struct cgroup_subsys_state *pos_css;
772         bool root_load_balance = is_sched_load_balance(&top_cpuset);
773
774         doms = NULL;
775         dattr = NULL;
776         csa = NULL;
777
778         /* Special case for the 99% of systems with one, full, sched domain */
779         if (root_load_balance && !top_cpuset.nr_subparts_cpus) {
780                 ndoms = 1;
781                 doms = alloc_sched_domains(ndoms);
782                 if (!doms)
783                         goto done;
784
785                 dattr = kmalloc(sizeof(struct sched_domain_attr), GFP_KERNEL);
786                 if (dattr) {
787                         *dattr = SD_ATTR_INIT;
788                         update_domain_attr_tree(dattr, &top_cpuset);
789                 }
790                 cpumask_and(doms[0], top_cpuset.effective_cpus,
791                             housekeeping_cpumask(HK_FLAG_DOMAIN));
792
793                 goto done;
794         }
795
796         csa = kmalloc_array(nr_cpusets(), sizeof(cp), GFP_KERNEL);
797         if (!csa)
798                 goto done;
799         csn = 0;
800
801         rcu_read_lock();
802         if (root_load_balance)
803                 csa[csn++] = &top_cpuset;
804         cpuset_for_each_descendant_pre(cp, pos_css, &top_cpuset) {
805                 if (cp == &top_cpuset)
806                         continue;
807                 /*
808                  * Continue traversing beyond @cp iff @cp has some CPUs and
809                  * isn't load balancing.  The former is obvious.  The
810                  * latter: All child cpusets contain a subset of the
811                  * parent's cpus, so just skip them, and then we call
812                  * update_domain_attr_tree() to calc relax_domain_level of
813                  * the corresponding sched domain.
814                  *
815                  * If root is load-balancing, we can skip @cp if it
816                  * is a subset of the root's effective_cpus.
817                  */
818                 if (!cpumask_empty(cp->cpus_allowed) &&
819                     !(is_sched_load_balance(cp) &&
820                       cpumask_intersects(cp->cpus_allowed,
821                                          housekeeping_cpumask(HK_FLAG_DOMAIN))))
822                         continue;
823
824                 if (root_load_balance &&
825                     cpumask_subset(cp->cpus_allowed, top_cpuset.effective_cpus))
826                         continue;
827
828                 if (is_sched_load_balance(cp))
829                         csa[csn++] = cp;
830
831                 /* skip @cp's subtree if not a partition root */
832                 if (!is_partition_root(cp))
833                         pos_css = css_rightmost_descendant(pos_css);
834         }
835         rcu_read_unlock();
836
837         for (i = 0; i < csn; i++)
838                 csa[i]->pn = i;
839         ndoms = csn;
840
841 restart:
842         /* Find the best partition (set of sched domains) */
843         for (i = 0; i < csn; i++) {
844                 struct cpuset *a = csa[i];
845                 int apn = a->pn;
846
847                 for (j = 0; j < csn; j++) {
848                         struct cpuset *b = csa[j];
849                         int bpn = b->pn;
850
851                         if (apn != bpn && cpusets_overlap(a, b)) {
852                                 for (k = 0; k < csn; k++) {
853                                         struct cpuset *c = csa[k];
854
855                                         if (c->pn == bpn)
856                                                 c->pn = apn;
857                                 }
858                                 ndoms--;        /* one less element */
859                                 goto restart;
860                         }
861                 }
862         }
863
864         /*
865          * Now we know how many domains to create.
866          * Convert <csn, csa> to <ndoms, doms> and populate cpu masks.
867          */
868         doms = alloc_sched_domains(ndoms);
869         if (!doms)
870                 goto done;
871
872         /*
873          * The rest of the code, including the scheduler, can deal with
874          * dattr==NULL case. No need to abort if alloc fails.
875          */
876         dattr = kmalloc_array(ndoms, sizeof(struct sched_domain_attr),
877                               GFP_KERNEL);
878
879         for (nslot = 0, i = 0; i < csn; i++) {
880                 struct cpuset *a = csa[i];
881                 struct cpumask *dp;
882                 int apn = a->pn;
883
884                 if (apn < 0) {
885                         /* Skip completed partitions */
886                         continue;
887                 }
888
889                 dp = doms[nslot];
890
891                 if (nslot == ndoms) {
892                         static int warnings = 10;
893                         if (warnings) {
894                                 pr_warn("rebuild_sched_domains confused: nslot %d, ndoms %d, csn %d, i %d, apn %d\n",
895                                         nslot, ndoms, csn, i, apn);
896                                 warnings--;
897                         }
898                         continue;
899                 }
900
901                 cpumask_clear(dp);
902                 if (dattr)
903                         *(dattr + nslot) = SD_ATTR_INIT;
904                 for (j = i; j < csn; j++) {
905                         struct cpuset *b = csa[j];
906
907                         if (apn == b->pn) {
908                                 cpumask_or(dp, dp, b->effective_cpus);
909                                 cpumask_and(dp, dp, housekeeping_cpumask(HK_FLAG_DOMAIN));
910                                 if (dattr)
911                                         update_domain_attr_tree(dattr + nslot, b);
912
913                                 /* Done with this partition */
914                                 b->pn = -1;
915                         }
916                 }
917                 nslot++;
918         }
919         BUG_ON(nslot != ndoms);
920
921 done:
922         kfree(csa);
923
924         /*
925          * Fallback to the default domain if kmalloc() failed.
926          * See comments in partition_sched_domains().
927          */
928         if (doms == NULL)
929                 ndoms = 1;
930
931         *domains    = doms;
932         *attributes = dattr;
933         return ndoms;
934 }
935
936 /*
937  * Rebuild scheduler domains.
938  *
939  * If the flag 'sched_load_balance' of any cpuset with non-empty
940  * 'cpus' changes, or if the 'cpus' allowed changes in any cpuset
941  * which has that flag enabled, or if any cpuset with a non-empty
942  * 'cpus' is removed, then call this routine to rebuild the
943  * scheduler's dynamic sched domains.
944  *
945  * Call with cpuset_mutex held.  Takes get_online_cpus().
946  */
947 static void rebuild_sched_domains_locked(void)
948 {
949         struct sched_domain_attr *attr;
950         cpumask_var_t *doms;
951         int ndoms;
952
953         lockdep_assert_held(&cpuset_mutex);
954         get_online_cpus();
955
956         /*
957          * We have raced with CPU hotplug. Don't do anything to avoid
958          * passing doms with offlined cpu to partition_sched_domains().
959          * Anyways, hotplug work item will rebuild sched domains.
960          */
961         if (!top_cpuset.nr_subparts_cpus &&
962             !cpumask_equal(top_cpuset.effective_cpus, cpu_active_mask))
963                 goto out;
964
965         if (top_cpuset.nr_subparts_cpus &&
966            !cpumask_subset(top_cpuset.effective_cpus, cpu_active_mask))
967                 goto out;
968
969         /* Generate domain masks and attrs */
970         ndoms = generate_sched_domains(&doms, &attr);
971
972         /* Have scheduler rebuild the domains */
973         partition_sched_domains(ndoms, doms, attr);
974 out:
975         put_online_cpus();
976 }
977 #else /* !CONFIG_SMP */
978 static void rebuild_sched_domains_locked(void)
979 {
980 }
981 #endif /* CONFIG_SMP */
982
983 void rebuild_sched_domains(void)
984 {
985         mutex_lock(&cpuset_mutex);
986         rebuild_sched_domains_locked();
987         mutex_unlock(&cpuset_mutex);
988 }
989
990 /**
991  * update_tasks_cpumask - Update the cpumasks of tasks in the cpuset.
992  * @cs: the cpuset in which each task's cpus_allowed mask needs to be changed
993  *
994  * Iterate through each task of @cs updating its cpus_allowed to the
995  * effective cpuset's.  As this function is called with cpuset_mutex held,
996  * cpuset membership stays stable.
997  */
998 static void update_tasks_cpumask(struct cpuset *cs)
999 {
1000         struct css_task_iter it;
1001         struct task_struct *task;
1002
1003         css_task_iter_start(&cs->css, 0, &it);
1004         while ((task = css_task_iter_next(&it)))
1005                 set_cpus_allowed_ptr(task, cs->effective_cpus);
1006         css_task_iter_end(&it);
1007 }
1008
1009 /**
1010  * compute_effective_cpumask - Compute the effective cpumask of the cpuset
1011  * @new_cpus: the temp variable for the new effective_cpus mask
1012  * @cs: the cpuset the need to recompute the new effective_cpus mask
1013  * @parent: the parent cpuset
1014  *
1015  * If the parent has subpartition CPUs, include them in the list of
1016  * allowable CPUs in computing the new effective_cpus mask. Since offlined
1017  * CPUs are not removed from subparts_cpus, we have to use cpu_active_mask
1018  * to mask those out.
1019  */
1020 static void compute_effective_cpumask(struct cpumask *new_cpus,
1021                                       struct cpuset *cs, struct cpuset *parent)
1022 {
1023         if (parent->nr_subparts_cpus) {
1024                 cpumask_or(new_cpus, parent->effective_cpus,
1025                            parent->subparts_cpus);
1026                 cpumask_and(new_cpus, new_cpus, cs->cpus_allowed);
1027                 cpumask_and(new_cpus, new_cpus, cpu_active_mask);
1028         } else {
1029                 cpumask_and(new_cpus, cs->cpus_allowed, parent->effective_cpus);
1030         }
1031 }
1032
1033 /*
1034  * Commands for update_parent_subparts_cpumask
1035  */
1036 enum subparts_cmd {
1037         partcmd_enable,         /* Enable partition root         */
1038         partcmd_disable,        /* Disable partition root        */
1039         partcmd_update,         /* Update parent's subparts_cpus */
1040 };
1041
1042 /**
1043  * update_parent_subparts_cpumask - update subparts_cpus mask of parent cpuset
1044  * @cpuset:  The cpuset that requests change in partition root state
1045  * @cmd:     Partition root state change command
1046  * @newmask: Optional new cpumask for partcmd_update
1047  * @tmp:     Temporary addmask and delmask
1048  * Return:   0, 1 or an error code
1049  *
1050  * For partcmd_enable, the cpuset is being transformed from a non-partition
1051  * root to a partition root. The cpus_allowed mask of the given cpuset will
1052  * be put into parent's subparts_cpus and taken away from parent's
1053  * effective_cpus. The function will return 0 if all the CPUs listed in
1054  * cpus_allowed can be granted or an error code will be returned.
1055  *
1056  * For partcmd_disable, the cpuset is being transofrmed from a partition
1057  * root back to a non-partition root. any CPUs in cpus_allowed that are in
1058  * parent's subparts_cpus will be taken away from that cpumask and put back
1059  * into parent's effective_cpus. 0 should always be returned.
1060  *
1061  * For partcmd_update, if the optional newmask is specified, the cpu
1062  * list is to be changed from cpus_allowed to newmask. Otherwise,
1063  * cpus_allowed is assumed to remain the same. The cpuset should either
1064  * be a partition root or an invalid partition root. The partition root
1065  * state may change if newmask is NULL and none of the requested CPUs can
1066  * be granted by the parent. The function will return 1 if changes to
1067  * parent's subparts_cpus and effective_cpus happen or 0 otherwise.
1068  * Error code should only be returned when newmask is non-NULL.
1069  *
1070  * The partcmd_enable and partcmd_disable commands are used by
1071  * update_prstate(). The partcmd_update command is used by
1072  * update_cpumasks_hier() with newmask NULL and update_cpumask() with
1073  * newmask set.
1074  *
1075  * The checking is more strict when enabling partition root than the
1076  * other two commands.
1077  *
1078  * Because of the implicit cpu exclusive nature of a partition root,
1079  * cpumask changes that violates the cpu exclusivity rule will not be
1080  * permitted when checked by validate_change(). The validate_change()
1081  * function will also prevent any changes to the cpu list if it is not
1082  * a superset of children's cpu lists.
1083  */
1084 static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
1085                                           struct cpumask *newmask,
1086                                           struct tmpmasks *tmp)
1087 {
1088         struct cpuset *parent = parent_cs(cpuset);
1089         int adding;     /* Moving cpus from effective_cpus to subparts_cpus */
1090         int deleting;   /* Moving cpus from subparts_cpus to effective_cpus */
1091         bool part_error = false;        /* Partition error? */
1092
1093         lockdep_assert_held(&cpuset_mutex);
1094
1095         /*
1096          * The parent must be a partition root.
1097          * The new cpumask, if present, or the current cpus_allowed must
1098          * not be empty.
1099          */
1100         if (!is_partition_root(parent) ||
1101            (newmask && cpumask_empty(newmask)) ||
1102            (!newmask && cpumask_empty(cpuset->cpus_allowed)))
1103                 return -EINVAL;
1104
1105         /*
1106          * Enabling/disabling partition root is not allowed if there are
1107          * online children.
1108          */
1109         if ((cmd != partcmd_update) && css_has_online_children(&cpuset->css))
1110                 return -EBUSY;
1111
1112         /*
1113          * Enabling partition root is not allowed if not all the CPUs
1114          * can be granted from parent's effective_cpus or at least one
1115          * CPU will be left after that.
1116          */
1117         if ((cmd == partcmd_enable) &&
1118            (!cpumask_subset(cpuset->cpus_allowed, parent->effective_cpus) ||
1119              cpumask_equal(cpuset->cpus_allowed, parent->effective_cpus)))
1120                 return -EINVAL;
1121
1122         /*
1123          * A cpumask update cannot make parent's effective_cpus become empty.
1124          */
1125         adding = deleting = false;
1126         if (cmd == partcmd_enable) {
1127                 cpumask_copy(tmp->addmask, cpuset->cpus_allowed);
1128                 adding = true;
1129         } else if (cmd == partcmd_disable) {
1130                 deleting = cpumask_and(tmp->delmask, cpuset->cpus_allowed,
1131                                        parent->subparts_cpus);
1132         } else if (newmask) {
1133                 /*
1134                  * partcmd_update with newmask:
1135                  *
1136                  * delmask = cpus_allowed & ~newmask & parent->subparts_cpus
1137                  * addmask = newmask & parent->effective_cpus
1138                  *                   & ~parent->subparts_cpus
1139                  */
1140                 cpumask_andnot(tmp->delmask, cpuset->cpus_allowed, newmask);
1141                 deleting = cpumask_and(tmp->delmask, tmp->delmask,
1142                                        parent->subparts_cpus);
1143
1144                 cpumask_and(tmp->addmask, newmask, parent->effective_cpus);
1145                 adding = cpumask_andnot(tmp->addmask, tmp->addmask,
1146                                         parent->subparts_cpus);
1147                 /*
1148                  * Return error if the new effective_cpus could become empty.
1149                  */
1150                 if (adding &&
1151                     cpumask_equal(parent->effective_cpus, tmp->addmask)) {
1152                         if (!deleting)
1153                                 return -EINVAL;
1154                         /*
1155                          * As some of the CPUs in subparts_cpus might have
1156                          * been offlined, we need to compute the real delmask
1157                          * to confirm that.
1158                          */
1159                         if (!cpumask_and(tmp->addmask, tmp->delmask,
1160                                          cpu_active_mask))
1161                                 return -EINVAL;
1162                         cpumask_copy(tmp->addmask, parent->effective_cpus);
1163                 }
1164         } else {
1165                 /*
1166                  * partcmd_update w/o newmask:
1167                  *
1168                  * addmask = cpus_allowed & parent->effectiveb_cpus
1169                  *
1170                  * Note that parent's subparts_cpus may have been
1171                  * pre-shrunk in case there is a change in the cpu list.
1172                  * So no deletion is needed.
1173                  */
1174                 adding = cpumask_and(tmp->addmask, cpuset->cpus_allowed,
1175                                      parent->effective_cpus);
1176                 part_error = cpumask_equal(tmp->addmask,
1177                                            parent->effective_cpus);
1178         }
1179
1180         if (cmd == partcmd_update) {
1181                 int prev_prs = cpuset->partition_root_state;
1182
1183                 /*
1184                  * Check for possible transition between PRS_ENABLED
1185                  * and PRS_ERROR.
1186                  */
1187                 switch (cpuset->partition_root_state) {
1188                 case PRS_ENABLED:
1189                         if (part_error)
1190                                 cpuset->partition_root_state = PRS_ERROR;
1191                         break;
1192                 case PRS_ERROR:
1193                         if (!part_error)
1194                                 cpuset->partition_root_state = PRS_ENABLED;
1195                         break;
1196                 }
1197                 /*
1198                  * Set part_error if previously in invalid state.
1199                  */
1200                 part_error = (prev_prs == PRS_ERROR);
1201         }
1202
1203         if (!part_error && (cpuset->partition_root_state == PRS_ERROR))
1204                 return 0;       /* Nothing need to be done */
1205
1206         if (cpuset->partition_root_state == PRS_ERROR) {
1207                 /*
1208                  * Remove all its cpus from parent's subparts_cpus.
1209                  */
1210                 adding = false;
1211                 deleting = cpumask_and(tmp->delmask, cpuset->cpus_allowed,
1212                                        parent->subparts_cpus);
1213         }
1214
1215         if (!adding && !deleting)
1216                 return 0;
1217
1218         /*
1219          * Change the parent's subparts_cpus.
1220          * Newly added CPUs will be removed from effective_cpus and
1221          * newly deleted ones will be added back to effective_cpus.
1222          */
1223         spin_lock_irq(&callback_lock);
1224         if (adding) {
1225                 cpumask_or(parent->subparts_cpus,
1226                            parent->subparts_cpus, tmp->addmask);
1227                 cpumask_andnot(parent->effective_cpus,
1228                                parent->effective_cpus, tmp->addmask);
1229         }
1230         if (deleting) {
1231                 cpumask_andnot(parent->subparts_cpus,
1232                                parent->subparts_cpus, tmp->delmask);
1233                 /*
1234                  * Some of the CPUs in subparts_cpus might have been offlined.
1235                  */
1236                 cpumask_and(tmp->delmask, tmp->delmask, cpu_active_mask);
1237                 cpumask_or(parent->effective_cpus,
1238                            parent->effective_cpus, tmp->delmask);
1239         }
1240
1241         parent->nr_subparts_cpus = cpumask_weight(parent->subparts_cpus);
1242         spin_unlock_irq(&callback_lock);
1243
1244         return cmd == partcmd_update;
1245 }
1246
1247 /*
1248  * update_cpumasks_hier - Update effective cpumasks and tasks in the subtree
1249  * @cs:  the cpuset to consider
1250  * @tmp: temp variables for calculating effective_cpus & partition setup
1251  *
1252  * When congifured cpumask is changed, the effective cpumasks of this cpuset
1253  * and all its descendants need to be updated.
1254  *
1255  * On legacy hierachy, effective_cpus will be the same with cpu_allowed.
1256  *
1257  * Called with cpuset_mutex held
1258  */
1259 static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
1260 {
1261         struct cpuset *cp;
1262         struct cgroup_subsys_state *pos_css;
1263         bool need_rebuild_sched_domains = false;
1264
1265         rcu_read_lock();
1266         cpuset_for_each_descendant_pre(cp, pos_css, cs) {
1267                 struct cpuset *parent = parent_cs(cp);
1268
1269                 compute_effective_cpumask(tmp->new_cpus, cp, parent);
1270
1271                 /*
1272                  * If it becomes empty, inherit the effective mask of the
1273                  * parent, which is guaranteed to have some CPUs.
1274                  */
1275                 if (is_in_v2_mode() && cpumask_empty(tmp->new_cpus)) {
1276                         cpumask_copy(tmp->new_cpus, parent->effective_cpus);
1277                         if (!cp->use_parent_ecpus) {
1278                                 cp->use_parent_ecpus = true;
1279                                 parent->child_ecpus_count++;
1280                         }
1281                 } else if (cp->use_parent_ecpus) {
1282                         cp->use_parent_ecpus = false;
1283                         WARN_ON_ONCE(!parent->child_ecpus_count);
1284                         parent->child_ecpus_count--;
1285                 }
1286
1287                 /*
1288                  * Skip the whole subtree if the cpumask remains the same
1289                  * and has no partition root state.
1290                  */
1291                 if (!cp->partition_root_state &&
1292                     cpumask_equal(tmp->new_cpus, cp->effective_cpus)) {
1293                         pos_css = css_rightmost_descendant(pos_css);
1294                         continue;
1295                 }
1296
1297                 /*
1298                  * update_parent_subparts_cpumask() should have been called
1299                  * for cs already in update_cpumask(). We should also call
1300                  * update_tasks_cpumask() again for tasks in the parent
1301                  * cpuset if the parent's subparts_cpus changes.
1302                  */
1303                 if ((cp != cs) && cp->partition_root_state) {
1304                         switch (parent->partition_root_state) {
1305                         case PRS_DISABLED:
1306                                 /*
1307                                  * If parent is not a partition root or an
1308                                  * invalid partition root, clear the state
1309                                  * state and the CS_CPU_EXCLUSIVE flag.
1310                                  */
1311                                 WARN_ON_ONCE(cp->partition_root_state
1312                                              != PRS_ERROR);
1313                                 cp->partition_root_state = 0;
1314
1315                                 /*
1316                                  * clear_bit() is an atomic operation and
1317                                  * readers aren't interested in the state
1318                                  * of CS_CPU_EXCLUSIVE anyway. So we can
1319                                  * just update the flag without holding
1320                                  * the callback_lock.
1321                                  */
1322                                 clear_bit(CS_CPU_EXCLUSIVE, &cp->flags);
1323                                 break;
1324
1325                         case PRS_ENABLED:
1326                                 if (update_parent_subparts_cpumask(cp, partcmd_update, NULL, tmp))
1327                                         update_tasks_cpumask(parent);
1328                                 break;
1329
1330                         case PRS_ERROR:
1331                                 /*
1332                                  * When parent is invalid, it has to be too.
1333                                  */
1334                                 cp->partition_root_state = PRS_ERROR;
1335                                 if (cp->nr_subparts_cpus) {
1336                                         cp->nr_subparts_cpus = 0;
1337                                         cpumask_clear(cp->subparts_cpus);
1338                                 }
1339                                 break;
1340                         }
1341                 }
1342
1343                 if (!css_tryget_online(&cp->css))
1344                         continue;
1345                 rcu_read_unlock();
1346
1347                 spin_lock_irq(&callback_lock);
1348
1349                 cpumask_copy(cp->effective_cpus, tmp->new_cpus);
1350                 if (cp->nr_subparts_cpus &&
1351                    (cp->partition_root_state != PRS_ENABLED)) {
1352                         cp->nr_subparts_cpus = 0;
1353                         cpumask_clear(cp->subparts_cpus);
1354                 } else if (cp->nr_subparts_cpus) {
1355                         /*
1356                          * Make sure that effective_cpus & subparts_cpus
1357                          * are mutually exclusive.
1358                          *
1359                          * In the unlikely event that effective_cpus
1360                          * becomes empty. we clear cp->nr_subparts_cpus and
1361                          * let its child partition roots to compete for
1362                          * CPUs again.
1363                          */
1364                         cpumask_andnot(cp->effective_cpus, cp->effective_cpus,
1365                                        cp->subparts_cpus);
1366                         if (cpumask_empty(cp->effective_cpus)) {
1367                                 cpumask_copy(cp->effective_cpus, tmp->new_cpus);
1368                                 cpumask_clear(cp->subparts_cpus);
1369                                 cp->nr_subparts_cpus = 0;
1370                         } else if (!cpumask_subset(cp->subparts_cpus,
1371                                                    tmp->new_cpus)) {
1372                                 cpumask_andnot(cp->subparts_cpus,
1373                                         cp->subparts_cpus, tmp->new_cpus);
1374                                 cp->nr_subparts_cpus
1375                                         = cpumask_weight(cp->subparts_cpus);
1376                         }
1377                 }
1378                 spin_unlock_irq(&callback_lock);
1379
1380                 WARN_ON(!is_in_v2_mode() &&
1381                         !cpumask_equal(cp->cpus_allowed, cp->effective_cpus));
1382
1383                 update_tasks_cpumask(cp);
1384
1385                 /*
1386                  * On legacy hierarchy, if the effective cpumask of any non-
1387                  * empty cpuset is changed, we need to rebuild sched domains.
1388                  * On default hierarchy, the cpuset needs to be a partition
1389                  * root as well.
1390                  */
1391                 if (!cpumask_empty(cp->cpus_allowed) &&
1392                     is_sched_load_balance(cp) &&
1393                    (!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) ||
1394                     is_partition_root(cp)))
1395                         need_rebuild_sched_domains = true;
1396
1397                 rcu_read_lock();
1398                 css_put(&cp->css);
1399         }
1400         rcu_read_unlock();
1401
1402         if (need_rebuild_sched_domains)
1403                 rebuild_sched_domains_locked();
1404 }
1405
1406 /**
1407  * update_sibling_cpumasks - Update siblings cpumasks
1408  * @parent:  Parent cpuset
1409  * @cs:      Current cpuset
1410  * @tmp:     Temp variables
1411  */
1412 static void update_sibling_cpumasks(struct cpuset *parent, struct cpuset *cs,
1413                                     struct tmpmasks *tmp)
1414 {
1415         struct cpuset *sibling;
1416         struct cgroup_subsys_state *pos_css;
1417
1418         /*
1419          * Check all its siblings and call update_cpumasks_hier()
1420          * if their use_parent_ecpus flag is set in order for them
1421          * to use the right effective_cpus value.
1422          */
1423         rcu_read_lock();
1424         cpuset_for_each_child(sibling, pos_css, parent) {
1425                 if (sibling == cs)
1426                         continue;
1427                 if (!sibling->use_parent_ecpus)
1428                         continue;
1429
1430                 update_cpumasks_hier(sibling, tmp);
1431         }
1432         rcu_read_unlock();
1433 }
1434
1435 /**
1436  * update_cpumask - update the cpus_allowed mask of a cpuset and all tasks in it
1437  * @cs: the cpuset to consider
1438  * @trialcs: trial cpuset
1439  * @buf: buffer of cpu numbers written to this cpuset
1440  */
1441 static int update_cpumask(struct cpuset *cs, struct cpuset *trialcs,
1442                           const char *buf)
1443 {
1444         int retval;
1445         struct tmpmasks tmp;
1446
1447         /* top_cpuset.cpus_allowed tracks cpu_online_mask; it's read-only */
1448         if (cs == &top_cpuset)
1449                 return -EACCES;
1450
1451         /*
1452          * An empty cpus_allowed is ok only if the cpuset has no tasks.
1453          * Since cpulist_parse() fails on an empty mask, we special case
1454          * that parsing.  The validate_change() call ensures that cpusets
1455          * with tasks have cpus.
1456          */
1457         if (!*buf) {
1458                 cpumask_clear(trialcs->cpus_allowed);
1459         } else {
1460                 retval = cpulist_parse(buf, trialcs->cpus_allowed);
1461                 if (retval < 0)
1462                         return retval;
1463
1464                 if (!cpumask_subset(trialcs->cpus_allowed,
1465                                     top_cpuset.cpus_allowed))
1466                         return -EINVAL;
1467         }
1468
1469         /* Nothing to do if the cpus didn't change */
1470         if (cpumask_equal(cs->cpus_allowed, trialcs->cpus_allowed))
1471                 return 0;
1472
1473         retval = validate_change(cs, trialcs);
1474         if (retval < 0)
1475                 return retval;
1476
1477 #ifdef CONFIG_CPUMASK_OFFSTACK
1478         /*
1479          * Use the cpumasks in trialcs for tmpmasks when they are pointers
1480          * to allocated cpumasks.
1481          */
1482         tmp.addmask  = trialcs->subparts_cpus;
1483         tmp.delmask  = trialcs->effective_cpus;
1484         tmp.new_cpus = trialcs->cpus_allowed;
1485 #endif
1486
1487         if (cs->partition_root_state) {
1488                 /* Cpumask of a partition root cannot be empty */
1489                 if (cpumask_empty(trialcs->cpus_allowed))
1490                         return -EINVAL;
1491                 if (update_parent_subparts_cpumask(cs, partcmd_update,
1492                                         trialcs->cpus_allowed, &tmp) < 0)
1493                         return -EINVAL;
1494         }
1495
1496         spin_lock_irq(&callback_lock);
1497         cpumask_copy(cs->cpus_allowed, trialcs->cpus_allowed);
1498
1499         /*
1500          * Make sure that subparts_cpus is a subset of cpus_allowed.
1501          */
1502         if (cs->nr_subparts_cpus) {
1503                 cpumask_andnot(cs->subparts_cpus, cs->subparts_cpus,
1504                                cs->cpus_allowed);
1505                 cs->nr_subparts_cpus = cpumask_weight(cs->subparts_cpus);
1506         }
1507         spin_unlock_irq(&callback_lock);
1508
1509         update_cpumasks_hier(cs, &tmp);
1510
1511         if (cs->partition_root_state) {
1512                 struct cpuset *parent = parent_cs(cs);
1513
1514                 /*
1515                  * For partition root, update the cpumasks of sibling
1516                  * cpusets if they use parent's effective_cpus.
1517                  */
1518                 if (parent->child_ecpus_count)
1519                         update_sibling_cpumasks(parent, cs, &tmp);
1520         }
1521         return 0;
1522 }
1523
1524 /*
1525  * Migrate memory region from one set of nodes to another.  This is
1526  * performed asynchronously as it can be called from process migration path
1527  * holding locks involved in process management.  All mm migrations are
1528  * performed in the queued order and can be waited for by flushing
1529  * cpuset_migrate_mm_wq.
1530  */
1531
1532 struct cpuset_migrate_mm_work {
1533         struct work_struct      work;
1534         struct mm_struct        *mm;
1535         nodemask_t              from;
1536         nodemask_t              to;
1537 };
1538
1539 static void cpuset_migrate_mm_workfn(struct work_struct *work)
1540 {
1541         struct cpuset_migrate_mm_work *mwork =
1542                 container_of(work, struct cpuset_migrate_mm_work, work);
1543
1544         /* on a wq worker, no need to worry about %current's mems_allowed */
1545         do_migrate_pages(mwork->mm, &mwork->from, &mwork->to, MPOL_MF_MOVE_ALL);
1546         mmput(mwork->mm);
1547         kfree(mwork);
1548 }
1549
1550 static void cpuset_migrate_mm(struct mm_struct *mm, const nodemask_t *from,
1551                                                         const nodemask_t *to)
1552 {
1553         struct cpuset_migrate_mm_work *mwork;
1554
1555         mwork = kzalloc(sizeof(*mwork), GFP_KERNEL);
1556         if (mwork) {
1557                 mwork->mm = mm;
1558                 mwork->from = *from;
1559                 mwork->to = *to;
1560                 INIT_WORK(&mwork->work, cpuset_migrate_mm_workfn);
1561                 queue_work(cpuset_migrate_mm_wq, &mwork->work);
1562         } else {
1563                 mmput(mm);
1564         }
1565 }
1566
1567 static void cpuset_post_attach(void)
1568 {
1569         flush_workqueue(cpuset_migrate_mm_wq);
1570 }
1571
1572 /*
1573  * cpuset_change_task_nodemask - change task's mems_allowed and mempolicy
1574  * @tsk: the task to change
1575  * @newmems: new nodes that the task will be set
1576  *
1577  * We use the mems_allowed_seq seqlock to safely update both tsk->mems_allowed
1578  * and rebind an eventual tasks' mempolicy. If the task is allocating in
1579  * parallel, it might temporarily see an empty intersection, which results in
1580  * a seqlock check and retry before OOM or allocation failure.
1581  */
1582 static void cpuset_change_task_nodemask(struct task_struct *tsk,
1583                                         nodemask_t *newmems)
1584 {
1585         task_lock(tsk);
1586
1587         local_irq_disable();
1588         write_seqcount_begin(&tsk->mems_allowed_seq);
1589
1590         nodes_or(tsk->mems_allowed, tsk->mems_allowed, *newmems);
1591         mpol_rebind_task(tsk, newmems);
1592         tsk->mems_allowed = *newmems;
1593
1594         write_seqcount_end(&tsk->mems_allowed_seq);
1595         local_irq_enable();
1596
1597         task_unlock(tsk);
1598 }
1599
1600 static void *cpuset_being_rebound;
1601
1602 /**
1603  * update_tasks_nodemask - Update the nodemasks of tasks in the cpuset.
1604  * @cs: the cpuset in which each task's mems_allowed mask needs to be changed
1605  *
1606  * Iterate through each task of @cs updating its mems_allowed to the
1607  * effective cpuset's.  As this function is called with cpuset_mutex held,
1608  * cpuset membership stays stable.
1609  */
1610 static void update_tasks_nodemask(struct cpuset *cs)
1611 {
1612         static nodemask_t newmems;      /* protected by cpuset_mutex */
1613         struct css_task_iter it;
1614         struct task_struct *task;
1615
1616         cpuset_being_rebound = cs;              /* causes mpol_dup() rebind */
1617
1618         guarantee_online_mems(cs, &newmems);
1619
1620         /*
1621          * The mpol_rebind_mm() call takes mmap_sem, which we couldn't
1622          * take while holding tasklist_lock.  Forks can happen - the
1623          * mpol_dup() cpuset_being_rebound check will catch such forks,
1624          * and rebind their vma mempolicies too.  Because we still hold
1625          * the global cpuset_mutex, we know that no other rebind effort
1626          * will be contending for the global variable cpuset_being_rebound.
1627          * It's ok if we rebind the same mm twice; mpol_rebind_mm()
1628          * is idempotent.  Also migrate pages in each mm to new nodes.
1629          */
1630         css_task_iter_start(&cs->css, 0, &it);
1631         while ((task = css_task_iter_next(&it))) {
1632                 struct mm_struct *mm;
1633                 bool migrate;
1634
1635                 cpuset_change_task_nodemask(task, &newmems);
1636
1637                 mm = get_task_mm(task);
1638                 if (!mm)
1639                         continue;
1640
1641                 migrate = is_memory_migrate(cs);
1642
1643                 mpol_rebind_mm(mm, &cs->mems_allowed);
1644                 if (migrate)
1645                         cpuset_migrate_mm(mm, &cs->old_mems_allowed, &newmems);
1646                 else
1647                         mmput(mm);
1648         }
1649         css_task_iter_end(&it);
1650
1651         /*
1652          * All the tasks' nodemasks have been updated, update
1653          * cs->old_mems_allowed.
1654          */
1655         cs->old_mems_allowed = newmems;
1656
1657         /* We're done rebinding vmas to this cpuset's new mems_allowed. */
1658         cpuset_being_rebound = NULL;
1659 }
1660
1661 /*
1662  * update_nodemasks_hier - Update effective nodemasks and tasks in the subtree
1663  * @cs: the cpuset to consider
1664  * @new_mems: a temp variable for calculating new effective_mems
1665  *
1666  * When configured nodemask is changed, the effective nodemasks of this cpuset
1667  * and all its descendants need to be updated.
1668  *
1669  * On legacy hiearchy, effective_mems will be the same with mems_allowed.
1670  *
1671  * Called with cpuset_mutex held
1672  */
1673 static void update_nodemasks_hier(struct cpuset *cs, nodemask_t *new_mems)
1674 {
1675         struct cpuset *cp;
1676         struct cgroup_subsys_state *pos_css;
1677
1678         rcu_read_lock();
1679         cpuset_for_each_descendant_pre(cp, pos_css, cs) {
1680                 struct cpuset *parent = parent_cs(cp);
1681
1682                 nodes_and(*new_mems, cp->mems_allowed, parent->effective_mems);
1683
1684                 /*
1685                  * If it becomes empty, inherit the effective mask of the
1686                  * parent, which is guaranteed to have some MEMs.
1687                  */
1688                 if (is_in_v2_mode() && nodes_empty(*new_mems))
1689                         *new_mems = parent->effective_mems;
1690
1691                 /* Skip the whole subtree if the nodemask remains the same. */
1692                 if (nodes_equal(*new_mems, cp->effective_mems)) {
1693                         pos_css = css_rightmost_descendant(pos_css);
1694                         continue;
1695                 }
1696
1697                 if (!css_tryget_online(&cp->css))
1698                         continue;
1699                 rcu_read_unlock();
1700
1701                 spin_lock_irq(&callback_lock);
1702                 cp->effective_mems = *new_mems;
1703                 spin_unlock_irq(&callback_lock);
1704
1705                 WARN_ON(!is_in_v2_mode() &&
1706                         !nodes_equal(cp->mems_allowed, cp->effective_mems));
1707
1708                 update_tasks_nodemask(cp);
1709
1710                 rcu_read_lock();
1711                 css_put(&cp->css);
1712         }
1713         rcu_read_unlock();
1714 }
1715
1716 /*
1717  * Handle user request to change the 'mems' memory placement
1718  * of a cpuset.  Needs to validate the request, update the
1719  * cpusets mems_allowed, and for each task in the cpuset,
1720  * update mems_allowed and rebind task's mempolicy and any vma
1721  * mempolicies and if the cpuset is marked 'memory_migrate',
1722  * migrate the tasks pages to the new memory.
1723  *
1724  * Call with cpuset_mutex held. May take callback_lock during call.
1725  * Will take tasklist_lock, scan tasklist for tasks in cpuset cs,
1726  * lock each such tasks mm->mmap_sem, scan its vma's and rebind
1727  * their mempolicies to the cpusets new mems_allowed.
1728  */
1729 static int update_nodemask(struct cpuset *cs, struct cpuset *trialcs,
1730                            const char *buf)
1731 {
1732         int retval;
1733
1734         /*
1735          * top_cpuset.mems_allowed tracks node_stats[N_MEMORY];
1736          * it's read-only
1737          */
1738         if (cs == &top_cpuset) {
1739                 retval = -EACCES;
1740                 goto done;
1741         }
1742
1743         /*
1744          * An empty mems_allowed is ok iff there are no tasks in the cpuset.
1745          * Since nodelist_parse() fails on an empty mask, we special case
1746          * that parsing.  The validate_change() call ensures that cpusets
1747          * with tasks have memory.
1748          */
1749         if (!*buf) {
1750                 nodes_clear(trialcs->mems_allowed);
1751         } else {
1752                 retval = nodelist_parse(buf, trialcs->mems_allowed);
1753                 if (retval < 0)
1754                         goto done;
1755
1756                 if (!nodes_subset(trialcs->mems_allowed,
1757                                   top_cpuset.mems_allowed)) {
1758                         retval = -EINVAL;
1759                         goto done;
1760                 }
1761         }
1762
1763         if (nodes_equal(cs->mems_allowed, trialcs->mems_allowed)) {
1764                 retval = 0;             /* Too easy - nothing to do */
1765                 goto done;
1766         }
1767         retval = validate_change(cs, trialcs);
1768         if (retval < 0)
1769                 goto done;
1770
1771         spin_lock_irq(&callback_lock);
1772         cs->mems_allowed = trialcs->mems_allowed;
1773         spin_unlock_irq(&callback_lock);
1774
1775         /* use trialcs->mems_allowed as a temp variable */
1776         update_nodemasks_hier(cs, &trialcs->mems_allowed);
1777 done:
1778         return retval;
1779 }
1780
1781 bool current_cpuset_is_being_rebound(void)
1782 {
1783         bool ret;
1784
1785         rcu_read_lock();
1786         ret = task_cs(current) == cpuset_being_rebound;
1787         rcu_read_unlock();
1788
1789         return ret;
1790 }
1791
1792 static int update_relax_domain_level(struct cpuset *cs, s64 val)
1793 {
1794 #ifdef CONFIG_SMP
1795         if (val < -1 || val >= sched_domain_level_max)
1796                 return -EINVAL;
1797 #endif
1798
1799         if (val != cs->relax_domain_level) {
1800                 cs->relax_domain_level = val;
1801                 if (!cpumask_empty(cs->cpus_allowed) &&
1802                     is_sched_load_balance(cs))
1803                         rebuild_sched_domains_locked();
1804         }
1805
1806         return 0;
1807 }
1808
1809 /**
1810  * update_tasks_flags - update the spread flags of tasks in the cpuset.
1811  * @cs: the cpuset in which each task's spread flags needs to be changed
1812  *
1813  * Iterate through each task of @cs updating its spread flags.  As this
1814  * function is called with cpuset_mutex held, cpuset membership stays
1815  * stable.
1816  */
1817 static void update_tasks_flags(struct cpuset *cs)
1818 {
1819         struct css_task_iter it;
1820         struct task_struct *task;
1821
1822         css_task_iter_start(&cs->css, 0, &it);
1823         while ((task = css_task_iter_next(&it)))
1824                 cpuset_update_task_spread_flag(cs, task);
1825         css_task_iter_end(&it);
1826 }
1827
1828 /*
1829  * update_flag - read a 0 or a 1 in a file and update associated flag
1830  * bit:         the bit to update (see cpuset_flagbits_t)
1831  * cs:          the cpuset to update
1832  * turning_on:  whether the flag is being set or cleared
1833  *
1834  * Call with cpuset_mutex held.
1835  */
1836
1837 static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs,
1838                        int turning_on)
1839 {
1840         struct cpuset *trialcs;
1841         int balance_flag_changed;
1842         int spread_flag_changed;
1843         int err;
1844
1845         trialcs = alloc_trial_cpuset(cs);
1846         if (!trialcs)
1847                 return -ENOMEM;
1848
1849         if (turning_on)
1850                 set_bit(bit, &trialcs->flags);
1851         else
1852                 clear_bit(bit, &trialcs->flags);
1853
1854         err = validate_change(cs, trialcs);
1855         if (err < 0)
1856                 goto out;
1857
1858         balance_flag_changed = (is_sched_load_balance(cs) !=
1859                                 is_sched_load_balance(trialcs));
1860
1861         spread_flag_changed = ((is_spread_slab(cs) != is_spread_slab(trialcs))
1862                         || (is_spread_page(cs) != is_spread_page(trialcs)));
1863
1864         spin_lock_irq(&callback_lock);
1865         cs->flags = trialcs->flags;
1866         spin_unlock_irq(&callback_lock);
1867
1868         if (!cpumask_empty(trialcs->cpus_allowed) && balance_flag_changed)
1869                 rebuild_sched_domains_locked();
1870
1871         if (spread_flag_changed)
1872                 update_tasks_flags(cs);
1873 out:
1874         free_cpuset(trialcs);
1875         return err;
1876 }
1877
1878 /*
1879  * update_prstate - update partititon_root_state
1880  * cs:  the cpuset to update
1881  * val: 0 - disabled, 1 - enabled
1882  *
1883  * Call with cpuset_mutex held.
1884  */
1885 static int update_prstate(struct cpuset *cs, int val)
1886 {
1887         int err;
1888         struct cpuset *parent = parent_cs(cs);
1889         struct tmpmasks tmp;
1890
1891         if ((val != 0) && (val != 1))
1892                 return -EINVAL;
1893         if (val == cs->partition_root_state)
1894                 return 0;
1895
1896         /*
1897          * Cannot force a partial or invalid partition root to a full
1898          * partition root.
1899          */
1900         if (val && cs->partition_root_state)
1901                 return -EINVAL;
1902
1903         if (alloc_cpumasks(NULL, &tmp))
1904                 return -ENOMEM;
1905
1906         err = -EINVAL;
1907         if (!cs->partition_root_state) {
1908                 /*
1909                  * Turning on partition root requires setting the
1910                  * CS_CPU_EXCLUSIVE bit implicitly as well and cpus_allowed
1911                  * cannot be NULL.
1912                  */
1913                 if (cpumask_empty(cs->cpus_allowed))
1914                         goto out;
1915
1916                 err = update_flag(CS_CPU_EXCLUSIVE, cs, 1);
1917                 if (err)
1918                         goto out;
1919
1920                 err = update_parent_subparts_cpumask(cs, partcmd_enable,
1921                                                      NULL, &tmp);
1922                 if (err) {
1923                         update_flag(CS_CPU_EXCLUSIVE, cs, 0);
1924                         goto out;
1925                 }
1926                 cs->partition_root_state = PRS_ENABLED;
1927         } else {
1928                 /*
1929                  * Turning off partition root will clear the
1930                  * CS_CPU_EXCLUSIVE bit.
1931                  */
1932                 if (cs->partition_root_state == PRS_ERROR) {
1933                         cs->partition_root_state = 0;
1934                         update_flag(CS_CPU_EXCLUSIVE, cs, 0);
1935                         err = 0;
1936                         goto out;
1937                 }
1938
1939                 err = update_parent_subparts_cpumask(cs, partcmd_disable,
1940                                                      NULL, &tmp);
1941                 if (err)
1942                         goto out;
1943
1944                 cs->partition_root_state = 0;
1945
1946                 /* Turning off CS_CPU_EXCLUSIVE will not return error */
1947                 update_flag(CS_CPU_EXCLUSIVE, cs, 0);
1948         }
1949
1950         /*
1951          * Update cpumask of parent's tasks except when it is the top
1952          * cpuset as some system daemons cannot be mapped to other CPUs.
1953          */
1954         if (parent != &top_cpuset)
1955                 update_tasks_cpumask(parent);
1956
1957         if (parent->child_ecpus_count)
1958                 update_sibling_cpumasks(parent, cs, &tmp);
1959
1960         rebuild_sched_domains_locked();
1961 out:
1962         free_cpumasks(NULL, &tmp);
1963         return err;
1964 }
1965
1966 /*
1967  * Frequency meter - How fast is some event occurring?
1968  *
1969  * These routines manage a digitally filtered, constant time based,
1970  * event frequency meter.  There are four routines:
1971  *   fmeter_init() - initialize a frequency meter.
1972  *   fmeter_markevent() - called each time the event happens.
1973  *   fmeter_getrate() - returns the recent rate of such events.
1974  *   fmeter_update() - internal routine used to update fmeter.
1975  *
1976  * A common data structure is passed to each of these routines,
1977  * which is used to keep track of the state required to manage the
1978  * frequency meter and its digital filter.
1979  *
1980  * The filter works on the number of events marked per unit time.
1981  * The filter is single-pole low-pass recursive (IIR).  The time unit
1982  * is 1 second.  Arithmetic is done using 32-bit integers scaled to
1983  * simulate 3 decimal digits of precision (multiplied by 1000).
1984  *
1985  * With an FM_COEF of 933, and a time base of 1 second, the filter
1986  * has a half-life of 10 seconds, meaning that if the events quit
1987  * happening, then the rate returned from the fmeter_getrate()
1988  * will be cut in half each 10 seconds, until it converges to zero.
1989  *
1990  * It is not worth doing a real infinitely recursive filter.  If more
1991  * than FM_MAXTICKS ticks have elapsed since the last filter event,
1992  * just compute FM_MAXTICKS ticks worth, by which point the level
1993  * will be stable.
1994  *
1995  * Limit the count of unprocessed events to FM_MAXCNT, so as to avoid
1996  * arithmetic overflow in the fmeter_update() routine.
1997  *
1998  * Given the simple 32 bit integer arithmetic used, this meter works
1999  * best for reporting rates between one per millisecond (msec) and
2000  * one per 32 (approx) seconds.  At constant rates faster than one
2001  * per msec it maxes out at values just under 1,000,000.  At constant
2002  * rates between one per msec, and one per second it will stabilize
2003  * to a value N*1000, where N is the rate of events per second.
2004  * At constant rates between one per second and one per 32 seconds,
2005  * it will be choppy, moving up on the seconds that have an event,
2006  * and then decaying until the next event.  At rates slower than
2007  * about one in 32 seconds, it decays all the way back to zero between
2008  * each event.
2009  */
2010
2011 #define FM_COEF 933             /* coefficient for half-life of 10 secs */
2012 #define FM_MAXTICKS ((u32)99)   /* useless computing more ticks than this */
2013 #define FM_MAXCNT 1000000       /* limit cnt to avoid overflow */
2014 #define FM_SCALE 1000           /* faux fixed point scale */
2015
2016 /* Initialize a frequency meter */
2017 static void fmeter_init(struct fmeter *fmp)
2018 {
2019         fmp->cnt = 0;
2020         fmp->val = 0;
2021         fmp->time = 0;
2022         spin_lock_init(&fmp->lock);
2023 }
2024
2025 /* Internal meter update - process cnt events and update value */
2026 static void fmeter_update(struct fmeter *fmp)
2027 {
2028         time64_t now;
2029         u32 ticks;
2030
2031         now = ktime_get_seconds();
2032         ticks = now - fmp->time;
2033
2034         if (ticks == 0)
2035                 return;
2036
2037         ticks = min(FM_MAXTICKS, ticks);
2038         while (ticks-- > 0)
2039                 fmp->val = (FM_COEF * fmp->val) / FM_SCALE;
2040         fmp->time = now;
2041
2042         fmp->val += ((FM_SCALE - FM_COEF) * fmp->cnt) / FM_SCALE;
2043         fmp->cnt = 0;
2044 }
2045
2046 /* Process any previous ticks, then bump cnt by one (times scale). */
2047 static void fmeter_markevent(struct fmeter *fmp)
2048 {
2049         spin_lock(&fmp->lock);
2050         fmeter_update(fmp);
2051         fmp->cnt = min(FM_MAXCNT, fmp->cnt + FM_SCALE);
2052         spin_unlock(&fmp->lock);
2053 }
2054
2055 /* Process any previous ticks, then return current value. */
2056 static int fmeter_getrate(struct fmeter *fmp)
2057 {
2058         int val;
2059
2060         spin_lock(&fmp->lock);
2061         fmeter_update(fmp);
2062         val = fmp->val;
2063         spin_unlock(&fmp->lock);
2064         return val;
2065 }
2066
2067 static struct cpuset *cpuset_attach_old_cs;
2068
2069 /* Called by cgroups to determine if a cpuset is usable; cpuset_mutex held */
2070 static int cpuset_can_attach(struct cgroup_taskset *tset)
2071 {
2072         struct cgroup_subsys_state *css;
2073         struct cpuset *cs;
2074         struct task_struct *task;
2075         int ret;
2076
2077         /* used later by cpuset_attach() */
2078         cpuset_attach_old_cs = task_cs(cgroup_taskset_first(tset, &css));
2079         cs = css_cs(css);
2080
2081         mutex_lock(&cpuset_mutex);
2082
2083         /* allow moving tasks into an empty cpuset if on default hierarchy */
2084         ret = -ENOSPC;
2085         if (!is_in_v2_mode() &&
2086             (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed)))
2087                 goto out_unlock;
2088
2089         cgroup_taskset_for_each(task, css, tset) {
2090                 ret = task_can_attach(task, cs->cpus_allowed);
2091                 if (ret)
2092                         goto out_unlock;
2093                 ret = security_task_setscheduler(task);
2094                 if (ret)
2095                         goto out_unlock;
2096         }
2097
2098         /*
2099          * Mark attach is in progress.  This makes validate_change() fail
2100          * changes which zero cpus/mems_allowed.
2101          */
2102         cs->attach_in_progress++;
2103         ret = 0;
2104 out_unlock:
2105         mutex_unlock(&cpuset_mutex);
2106         return ret;
2107 }
2108
2109 static void cpuset_cancel_attach(struct cgroup_taskset *tset)
2110 {
2111         struct cgroup_subsys_state *css;
2112         struct cpuset *cs;
2113
2114         cgroup_taskset_first(tset, &css);
2115         cs = css_cs(css);
2116
2117         mutex_lock(&cpuset_mutex);
2118         css_cs(css)->attach_in_progress--;
2119         mutex_unlock(&cpuset_mutex);
2120 }
2121
2122 /*
2123  * Protected by cpuset_mutex.  cpus_attach is used only by cpuset_attach()
2124  * but we can't allocate it dynamically there.  Define it global and
2125  * allocate from cpuset_init().
2126  */
2127 static cpumask_var_t cpus_attach;
2128
2129 static void cpuset_attach(struct cgroup_taskset *tset)
2130 {
2131         /* static buf protected by cpuset_mutex */
2132         static nodemask_t cpuset_attach_nodemask_to;
2133         struct task_struct *task;
2134         struct task_struct *leader;
2135         struct cgroup_subsys_state *css;
2136         struct cpuset *cs;
2137         struct cpuset *oldcs = cpuset_attach_old_cs;
2138
2139         cgroup_taskset_first(tset, &css);
2140         cs = css_cs(css);
2141
2142         mutex_lock(&cpuset_mutex);
2143
2144         /* prepare for attach */
2145         if (cs == &top_cpuset)
2146                 cpumask_copy(cpus_attach, cpu_possible_mask);
2147         else
2148                 guarantee_online_cpus(cs, cpus_attach);
2149
2150         guarantee_online_mems(cs, &cpuset_attach_nodemask_to);
2151
2152         cgroup_taskset_for_each(task, css, tset) {
2153                 /*
2154                  * can_attach beforehand should guarantee that this doesn't
2155                  * fail.  TODO: have a better way to handle failure here
2156                  */
2157                 WARN_ON_ONCE(set_cpus_allowed_ptr(task, cpus_attach));
2158
2159                 cpuset_change_task_nodemask(task, &cpuset_attach_nodemask_to);
2160                 cpuset_update_task_spread_flag(cs, task);
2161         }
2162
2163         /*
2164          * Change mm for all threadgroup leaders. This is expensive and may
2165          * sleep and should be moved outside migration path proper.
2166          */
2167         cpuset_attach_nodemask_to = cs->effective_mems;
2168         cgroup_taskset_for_each_leader(leader, css, tset) {
2169                 struct mm_struct *mm = get_task_mm(leader);
2170
2171                 if (mm) {
2172                         mpol_rebind_mm(mm, &cpuset_attach_nodemask_to);
2173
2174                         /*
2175                          * old_mems_allowed is the same with mems_allowed
2176                          * here, except if this task is being moved
2177                          * automatically due to hotplug.  In that case
2178                          * @mems_allowed has been updated and is empty, so
2179                          * @old_mems_allowed is the right nodesets that we
2180                          * migrate mm from.
2181                          */
2182                         if (is_memory_migrate(cs))
2183                                 cpuset_migrate_mm(mm, &oldcs->old_mems_allowed,
2184                                                   &cpuset_attach_nodemask_to);
2185                         else
2186                                 mmput(mm);
2187                 }
2188         }
2189
2190         cs->old_mems_allowed = cpuset_attach_nodemask_to;
2191
2192         cs->attach_in_progress--;
2193         if (!cs->attach_in_progress)
2194                 wake_up(&cpuset_attach_wq);
2195
2196         mutex_unlock(&cpuset_mutex);
2197 }
2198
2199 /* The various types of files and directories in a cpuset file system */
2200
2201 typedef enum {
2202         FILE_MEMORY_MIGRATE,
2203         FILE_CPULIST,
2204         FILE_MEMLIST,
2205         FILE_EFFECTIVE_CPULIST,
2206         FILE_EFFECTIVE_MEMLIST,
2207         FILE_SUBPARTS_CPULIST,
2208         FILE_CPU_EXCLUSIVE,
2209         FILE_MEM_EXCLUSIVE,
2210         FILE_MEM_HARDWALL,
2211         FILE_SCHED_LOAD_BALANCE,
2212         FILE_PARTITION_ROOT,
2213         FILE_SCHED_RELAX_DOMAIN_LEVEL,
2214         FILE_MEMORY_PRESSURE_ENABLED,
2215         FILE_MEMORY_PRESSURE,
2216         FILE_SPREAD_PAGE,
2217         FILE_SPREAD_SLAB,
2218 } cpuset_filetype_t;
2219
2220 static int cpuset_write_u64(struct cgroup_subsys_state *css, struct cftype *cft,
2221                             u64 val)
2222 {
2223         struct cpuset *cs = css_cs(css);
2224         cpuset_filetype_t type = cft->private;
2225         int retval = 0;
2226
2227         mutex_lock(&cpuset_mutex);
2228         if (!is_cpuset_online(cs)) {
2229                 retval = -ENODEV;
2230                 goto out_unlock;
2231         }
2232
2233         switch (type) {
2234         case FILE_CPU_EXCLUSIVE:
2235                 retval = update_flag(CS_CPU_EXCLUSIVE, cs, val);
2236                 break;
2237         case FILE_MEM_EXCLUSIVE:
2238                 retval = update_flag(CS_MEM_EXCLUSIVE, cs, val);
2239                 break;
2240         case FILE_MEM_HARDWALL:
2241                 retval = update_flag(CS_MEM_HARDWALL, cs, val);
2242                 break;
2243         case FILE_SCHED_LOAD_BALANCE:
2244                 retval = update_flag(CS_SCHED_LOAD_BALANCE, cs, val);
2245                 break;
2246         case FILE_MEMORY_MIGRATE:
2247                 retval = update_flag(CS_MEMORY_MIGRATE, cs, val);
2248                 break;
2249         case FILE_MEMORY_PRESSURE_ENABLED:
2250                 cpuset_memory_pressure_enabled = !!val;
2251                 break;
2252         case FILE_SPREAD_PAGE:
2253                 retval = update_flag(CS_SPREAD_PAGE, cs, val);
2254                 break;
2255         case FILE_SPREAD_SLAB:
2256                 retval = update_flag(CS_SPREAD_SLAB, cs, val);
2257                 break;
2258         default:
2259                 retval = -EINVAL;
2260                 break;
2261         }
2262 out_unlock:
2263         mutex_unlock(&cpuset_mutex);
2264         return retval;
2265 }
2266
2267 static int cpuset_write_s64(struct cgroup_subsys_state *css, struct cftype *cft,
2268                             s64 val)
2269 {
2270         struct cpuset *cs = css_cs(css);
2271         cpuset_filetype_t type = cft->private;
2272         int retval = -ENODEV;
2273
2274         mutex_lock(&cpuset_mutex);
2275         if (!is_cpuset_online(cs))
2276                 goto out_unlock;
2277
2278         switch (type) {
2279         case FILE_SCHED_RELAX_DOMAIN_LEVEL:
2280                 retval = update_relax_domain_level(cs, val);
2281                 break;
2282         default:
2283                 retval = -EINVAL;
2284                 break;
2285         }
2286 out_unlock:
2287         mutex_unlock(&cpuset_mutex);
2288         return retval;
2289 }
2290
2291 /*
2292  * Common handling for a write to a "cpus" or "mems" file.
2293  */
2294 static ssize_t cpuset_write_resmask(struct kernfs_open_file *of,
2295                                     char *buf, size_t nbytes, loff_t off)
2296 {
2297         struct cpuset *cs = css_cs(of_css(of));
2298         struct cpuset *trialcs;
2299         int retval = -ENODEV;
2300
2301         buf = strstrip(buf);
2302
2303         /*
2304          * CPU or memory hotunplug may leave @cs w/o any execution
2305          * resources, in which case the hotplug code asynchronously updates
2306          * configuration and transfers all tasks to the nearest ancestor
2307          * which can execute.
2308          *
2309          * As writes to "cpus" or "mems" may restore @cs's execution
2310          * resources, wait for the previously scheduled operations before
2311          * proceeding, so that we don't end up keep removing tasks added
2312          * after execution capability is restored.
2313          *
2314          * cpuset_hotplug_work calls back into cgroup core via
2315          * cgroup_transfer_tasks() and waiting for it from a cgroupfs
2316          * operation like this one can lead to a deadlock through kernfs
2317          * active_ref protection.  Let's break the protection.  Losing the
2318          * protection is okay as we check whether @cs is online after
2319          * grabbing cpuset_mutex anyway.  This only happens on the legacy
2320          * hierarchies.
2321          */
2322         css_get(&cs->css);
2323         kernfs_break_active_protection(of->kn);
2324         flush_work(&cpuset_hotplug_work);
2325
2326         mutex_lock(&cpuset_mutex);
2327         if (!is_cpuset_online(cs))
2328                 goto out_unlock;
2329
2330         trialcs = alloc_trial_cpuset(cs);
2331         if (!trialcs) {
2332                 retval = -ENOMEM;
2333                 goto out_unlock;
2334         }
2335
2336         switch (of_cft(of)->private) {
2337         case FILE_CPULIST:
2338                 retval = update_cpumask(cs, trialcs, buf);
2339                 break;
2340         case FILE_MEMLIST:
2341                 retval = update_nodemask(cs, trialcs, buf);
2342                 break;
2343         default:
2344                 retval = -EINVAL;
2345                 break;
2346         }
2347
2348         free_cpuset(trialcs);
2349 out_unlock:
2350         mutex_unlock(&cpuset_mutex);
2351         kernfs_unbreak_active_protection(of->kn);
2352         css_put(&cs->css);
2353         flush_workqueue(cpuset_migrate_mm_wq);
2354         return retval ?: nbytes;
2355 }
2356
2357 /*
2358  * These ascii lists should be read in a single call, by using a user
2359  * buffer large enough to hold the entire map.  If read in smaller
2360  * chunks, there is no guarantee of atomicity.  Since the display format
2361  * used, list of ranges of sequential numbers, is variable length,
2362  * and since these maps can change value dynamically, one could read
2363  * gibberish by doing partial reads while a list was changing.
2364  */
2365 static int cpuset_common_seq_show(struct seq_file *sf, void *v)
2366 {
2367         struct cpuset *cs = css_cs(seq_css(sf));
2368         cpuset_filetype_t type = seq_cft(sf)->private;
2369         int ret = 0;
2370
2371         spin_lock_irq(&callback_lock);
2372
2373         switch (type) {
2374         case FILE_CPULIST:
2375                 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->cpus_allowed));
2376                 break;
2377         case FILE_MEMLIST:
2378                 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->mems_allowed));
2379                 break;
2380         case FILE_EFFECTIVE_CPULIST:
2381                 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->effective_cpus));
2382                 break;
2383         case FILE_EFFECTIVE_MEMLIST:
2384                 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->effective_mems));
2385                 break;
2386         case FILE_SUBPARTS_CPULIST:
2387                 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->subparts_cpus));
2388                 break;
2389         default:
2390                 ret = -EINVAL;
2391         }
2392
2393         spin_unlock_irq(&callback_lock);
2394         return ret;
2395 }
2396
2397 static u64 cpuset_read_u64(struct cgroup_subsys_state *css, struct cftype *cft)
2398 {
2399         struct cpuset *cs = css_cs(css);
2400         cpuset_filetype_t type = cft->private;
2401         switch (type) {
2402         case FILE_CPU_EXCLUSIVE:
2403                 return is_cpu_exclusive(cs);
2404         case FILE_MEM_EXCLUSIVE:
2405                 return is_mem_exclusive(cs);
2406         case FILE_MEM_HARDWALL:
2407                 return is_mem_hardwall(cs);
2408         case FILE_SCHED_LOAD_BALANCE:
2409                 return is_sched_load_balance(cs);
2410         case FILE_MEMORY_MIGRATE:
2411                 return is_memory_migrate(cs);
2412         case FILE_MEMORY_PRESSURE_ENABLED:
2413                 return cpuset_memory_pressure_enabled;
2414         case FILE_MEMORY_PRESSURE:
2415                 return fmeter_getrate(&cs->fmeter);
2416         case FILE_SPREAD_PAGE:
2417                 return is_spread_page(cs);
2418         case FILE_SPREAD_SLAB:
2419                 return is_spread_slab(cs);
2420         default:
2421                 BUG();
2422         }
2423
2424         /* Unreachable but makes gcc happy */
2425         return 0;
2426 }
2427
2428 static s64 cpuset_read_s64(struct cgroup_subsys_state *css, struct cftype *cft)
2429 {
2430         struct cpuset *cs = css_cs(css);
2431         cpuset_filetype_t type = cft->private;
2432         switch (type) {
2433         case FILE_SCHED_RELAX_DOMAIN_LEVEL:
2434                 return cs->relax_domain_level;
2435         default:
2436                 BUG();
2437         }
2438
2439         /* Unrechable but makes gcc happy */
2440         return 0;
2441 }
2442
2443 static int sched_partition_show(struct seq_file *seq, void *v)
2444 {
2445         struct cpuset *cs = css_cs(seq_css(seq));
2446
2447         switch (cs->partition_root_state) {
2448         case PRS_ENABLED:
2449                 seq_puts(seq, "root\n");
2450                 break;
2451         case PRS_DISABLED:
2452                 seq_puts(seq, "member\n");
2453                 break;
2454         case PRS_ERROR:
2455                 seq_puts(seq, "root invalid\n");
2456                 break;
2457         }
2458         return 0;
2459 }
2460
2461 static ssize_t sched_partition_write(struct kernfs_open_file *of, char *buf,
2462                                      size_t nbytes, loff_t off)
2463 {
2464         struct cpuset *cs = css_cs(of_css(of));
2465         int val;
2466         int retval = -ENODEV;
2467
2468         buf = strstrip(buf);
2469
2470         /*
2471          * Convert "root" to ENABLED, and convert "member" to DISABLED.
2472          */
2473         if (!strcmp(buf, "root"))
2474                 val = PRS_ENABLED;
2475         else if (!strcmp(buf, "member"))
2476                 val = PRS_DISABLED;
2477         else
2478                 return -EINVAL;
2479
2480         css_get(&cs->css);
2481         mutex_lock(&cpuset_mutex);
2482         if (!is_cpuset_online(cs))
2483                 goto out_unlock;
2484
2485         retval = update_prstate(cs, val);
2486 out_unlock:
2487         mutex_unlock(&cpuset_mutex);
2488         css_put(&cs->css);
2489         return retval ?: nbytes;
2490 }
2491
2492 /*
2493  * for the common functions, 'private' gives the type of file
2494  */
2495
2496 static struct cftype legacy_files[] = {
2497         {
2498                 .name = "cpus",
2499                 .seq_show = cpuset_common_seq_show,
2500                 .write = cpuset_write_resmask,
2501                 .max_write_len = (100U + 6 * NR_CPUS),
2502                 .private = FILE_CPULIST,
2503         },
2504
2505         {
2506                 .name = "mems",
2507                 .seq_show = cpuset_common_seq_show,
2508                 .write = cpuset_write_resmask,
2509                 .max_write_len = (100U + 6 * MAX_NUMNODES),
2510                 .private = FILE_MEMLIST,
2511         },
2512
2513         {
2514                 .name = "effective_cpus",
2515                 .seq_show = cpuset_common_seq_show,
2516                 .private = FILE_EFFECTIVE_CPULIST,
2517         },
2518
2519         {
2520                 .name = "effective_mems",
2521                 .seq_show = cpuset_common_seq_show,
2522                 .private = FILE_EFFECTIVE_MEMLIST,
2523         },
2524
2525         {
2526                 .name = "cpu_exclusive",
2527                 .read_u64 = cpuset_read_u64,
2528                 .write_u64 = cpuset_write_u64,
2529                 .private = FILE_CPU_EXCLUSIVE,
2530         },
2531
2532         {
2533                 .name = "mem_exclusive",
2534                 .read_u64 = cpuset_read_u64,
2535                 .write_u64 = cpuset_write_u64,
2536                 .private = FILE_MEM_EXCLUSIVE,
2537         },
2538
2539         {
2540                 .name = "mem_hardwall",
2541                 .read_u64 = cpuset_read_u64,
2542                 .write_u64 = cpuset_write_u64,
2543                 .private = FILE_MEM_HARDWALL,
2544         },
2545
2546         {
2547                 .name = "sched_load_balance",
2548                 .read_u64 = cpuset_read_u64,
2549                 .write_u64 = cpuset_write_u64,
2550                 .private = FILE_SCHED_LOAD_BALANCE,
2551         },
2552
2553         {
2554                 .name = "sched_relax_domain_level",
2555                 .read_s64 = cpuset_read_s64,
2556                 .write_s64 = cpuset_write_s64,
2557                 .private = FILE_SCHED_RELAX_DOMAIN_LEVEL,
2558         },
2559
2560         {
2561                 .name = "memory_migrate",
2562                 .read_u64 = cpuset_read_u64,
2563                 .write_u64 = cpuset_write_u64,
2564                 .private = FILE_MEMORY_MIGRATE,
2565         },
2566
2567         {
2568                 .name = "memory_pressure",
2569                 .read_u64 = cpuset_read_u64,
2570                 .private = FILE_MEMORY_PRESSURE,
2571         },
2572
2573         {
2574                 .name = "memory_spread_page",
2575                 .read_u64 = cpuset_read_u64,
2576                 .write_u64 = cpuset_write_u64,
2577                 .private = FILE_SPREAD_PAGE,
2578         },
2579
2580         {
2581                 .name = "memory_spread_slab",
2582                 .read_u64 = cpuset_read_u64,
2583                 .write_u64 = cpuset_write_u64,
2584                 .private = FILE_SPREAD_SLAB,
2585         },
2586
2587         {
2588                 .name = "memory_pressure_enabled",
2589                 .flags = CFTYPE_ONLY_ON_ROOT,
2590                 .read_u64 = cpuset_read_u64,
2591                 .write_u64 = cpuset_write_u64,
2592                 .private = FILE_MEMORY_PRESSURE_ENABLED,
2593         },
2594
2595         { }     /* terminate */
2596 };
2597
2598 /*
2599  * This is currently a minimal set for the default hierarchy. It can be
2600  * expanded later on by migrating more features and control files from v1.
2601  */
2602 static struct cftype dfl_files[] = {
2603         {
2604                 .name = "cpus",
2605                 .seq_show = cpuset_common_seq_show,
2606                 .write = cpuset_write_resmask,
2607                 .max_write_len = (100U + 6 * NR_CPUS),
2608                 .private = FILE_CPULIST,
2609                 .flags = CFTYPE_NOT_ON_ROOT,
2610         },
2611
2612         {
2613                 .name = "mems",
2614                 .seq_show = cpuset_common_seq_show,
2615                 .write = cpuset_write_resmask,
2616                 .max_write_len = (100U + 6 * MAX_NUMNODES),
2617                 .private = FILE_MEMLIST,
2618                 .flags = CFTYPE_NOT_ON_ROOT,
2619         },
2620
2621         {
2622                 .name = "cpus.effective",
2623                 .seq_show = cpuset_common_seq_show,
2624                 .private = FILE_EFFECTIVE_CPULIST,
2625         },
2626
2627         {
2628                 .name = "mems.effective",
2629                 .seq_show = cpuset_common_seq_show,
2630                 .private = FILE_EFFECTIVE_MEMLIST,
2631         },
2632
2633         {
2634                 .name = "cpus.partition",
2635                 .seq_show = sched_partition_show,
2636                 .write = sched_partition_write,
2637                 .private = FILE_PARTITION_ROOT,
2638                 .flags = CFTYPE_NOT_ON_ROOT,
2639         },
2640
2641         {
2642                 .name = "cpus.subpartitions",
2643                 .seq_show = cpuset_common_seq_show,
2644                 .private = FILE_SUBPARTS_CPULIST,
2645                 .flags = CFTYPE_DEBUG,
2646         },
2647
2648         { }     /* terminate */
2649 };
2650
2651
2652 /*
2653  *      cpuset_css_alloc - allocate a cpuset css
2654  *      cgrp:   control group that the new cpuset will be part of
2655  */
2656
2657 static struct cgroup_subsys_state *
2658 cpuset_css_alloc(struct cgroup_subsys_state *parent_css)
2659 {
2660         struct cpuset *cs;
2661
2662         if (!parent_css)
2663                 return &top_cpuset.css;
2664
2665         cs = kzalloc(sizeof(*cs), GFP_KERNEL);
2666         if (!cs)
2667                 return ERR_PTR(-ENOMEM);
2668
2669         if (alloc_cpumasks(cs, NULL)) {
2670                 kfree(cs);
2671                 return ERR_PTR(-ENOMEM);
2672         }
2673
2674         set_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
2675         nodes_clear(cs->mems_allowed);
2676         nodes_clear(cs->effective_mems);
2677         fmeter_init(&cs->fmeter);
2678         cs->relax_domain_level = -1;
2679
2680         return &cs->css;
2681 }
2682
2683 static int cpuset_css_online(struct cgroup_subsys_state *css)
2684 {
2685         struct cpuset *cs = css_cs(css);
2686         struct cpuset *parent = parent_cs(cs);
2687         struct cpuset *tmp_cs;
2688         struct cgroup_subsys_state *pos_css;
2689
2690         if (!parent)
2691                 return 0;
2692
2693         mutex_lock(&cpuset_mutex);
2694
2695         set_bit(CS_ONLINE, &cs->flags);
2696         if (is_spread_page(parent))
2697                 set_bit(CS_SPREAD_PAGE, &cs->flags);
2698         if (is_spread_slab(parent))
2699                 set_bit(CS_SPREAD_SLAB, &cs->flags);
2700
2701         cpuset_inc();
2702
2703         spin_lock_irq(&callback_lock);
2704         if (is_in_v2_mode()) {
2705                 cpumask_copy(cs->effective_cpus, parent->effective_cpus);
2706                 cs->effective_mems = parent->effective_mems;
2707                 cs->use_parent_ecpus = true;
2708                 parent->child_ecpus_count++;
2709         }
2710         spin_unlock_irq(&callback_lock);
2711
2712         if (!test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags))
2713                 goto out_unlock;
2714
2715         /*
2716          * Clone @parent's configuration if CGRP_CPUSET_CLONE_CHILDREN is
2717          * set.  This flag handling is implemented in cgroup core for
2718          * histrical reasons - the flag may be specified during mount.
2719          *
2720          * Currently, if any sibling cpusets have exclusive cpus or mem, we
2721          * refuse to clone the configuration - thereby refusing the task to
2722          * be entered, and as a result refusing the sys_unshare() or
2723          * clone() which initiated it.  If this becomes a problem for some
2724          * users who wish to allow that scenario, then this could be
2725          * changed to grant parent->cpus_allowed-sibling_cpus_exclusive
2726          * (and likewise for mems) to the new cgroup.
2727          */
2728         rcu_read_lock();
2729         cpuset_for_each_child(tmp_cs, pos_css, parent) {
2730                 if (is_mem_exclusive(tmp_cs) || is_cpu_exclusive(tmp_cs)) {
2731                         rcu_read_unlock();
2732                         goto out_unlock;
2733                 }
2734         }
2735         rcu_read_unlock();
2736
2737         spin_lock_irq(&callback_lock);
2738         cs->mems_allowed = parent->mems_allowed;
2739         cs->effective_mems = parent->mems_allowed;
2740         cpumask_copy(cs->cpus_allowed, parent->cpus_allowed);
2741         cpumask_copy(cs->effective_cpus, parent->cpus_allowed);
2742         spin_unlock_irq(&callback_lock);
2743 out_unlock:
2744         mutex_unlock(&cpuset_mutex);
2745         return 0;
2746 }
2747
2748 /*
2749  * If the cpuset being removed has its flag 'sched_load_balance'
2750  * enabled, then simulate turning sched_load_balance off, which
2751  * will call rebuild_sched_domains_locked(). That is not needed
2752  * in the default hierarchy where only changes in partition
2753  * will cause repartitioning.
2754  *
2755  * If the cpuset has the 'sched.partition' flag enabled, simulate
2756  * turning 'sched.partition" off.
2757  */
2758
2759 static void cpuset_css_offline(struct cgroup_subsys_state *css)
2760 {
2761         struct cpuset *cs = css_cs(css);
2762
2763         mutex_lock(&cpuset_mutex);
2764
2765         if (is_partition_root(cs))
2766                 update_prstate(cs, 0);
2767
2768         if (!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
2769             is_sched_load_balance(cs))
2770                 update_flag(CS_SCHED_LOAD_BALANCE, cs, 0);
2771
2772         if (cs->use_parent_ecpus) {
2773                 struct cpuset *parent = parent_cs(cs);
2774
2775                 cs->use_parent_ecpus = false;
2776                 parent->child_ecpus_count--;
2777         }
2778
2779         cpuset_dec();
2780         clear_bit(CS_ONLINE, &cs->flags);
2781
2782         mutex_unlock(&cpuset_mutex);
2783 }
2784
2785 static void cpuset_css_free(struct cgroup_subsys_state *css)
2786 {
2787         struct cpuset *cs = css_cs(css);
2788
2789         free_cpuset(cs);
2790 }
2791
2792 static void cpuset_bind(struct cgroup_subsys_state *root_css)
2793 {
2794         mutex_lock(&cpuset_mutex);
2795         spin_lock_irq(&callback_lock);
2796
2797         if (is_in_v2_mode()) {
2798                 cpumask_copy(top_cpuset.cpus_allowed, cpu_possible_mask);
2799                 top_cpuset.mems_allowed = node_possible_map;
2800         } else {
2801                 cpumask_copy(top_cpuset.cpus_allowed,
2802                              top_cpuset.effective_cpus);
2803                 top_cpuset.mems_allowed = top_cpuset.effective_mems;
2804         }
2805
2806         spin_unlock_irq(&callback_lock);
2807         mutex_unlock(&cpuset_mutex);
2808 }
2809
2810 /*
2811  * Make sure the new task conform to the current state of its parent,
2812  * which could have been changed by cpuset just after it inherits the
2813  * state from the parent and before it sits on the cgroup's task list.
2814  */
2815 static void cpuset_fork(struct task_struct *task)
2816 {
2817         if (task_css_is_root(task, cpuset_cgrp_id))
2818                 return;
2819
2820         set_cpus_allowed_ptr(task, &current->cpus_allowed);
2821         task->mems_allowed = current->mems_allowed;
2822 }
2823
2824 struct cgroup_subsys cpuset_cgrp_subsys = {
2825         .css_alloc      = cpuset_css_alloc,
2826         .css_online     = cpuset_css_online,
2827         .css_offline    = cpuset_css_offline,
2828         .css_free       = cpuset_css_free,
2829         .can_attach     = cpuset_can_attach,
2830         .cancel_attach  = cpuset_cancel_attach,
2831         .attach         = cpuset_attach,
2832         .post_attach    = cpuset_post_attach,
2833         .bind           = cpuset_bind,
2834         .fork           = cpuset_fork,
2835         .legacy_cftypes = legacy_files,
2836         .dfl_cftypes    = dfl_files,
2837         .early_init     = true,
2838         .threaded       = true,
2839 };
2840
2841 /**
2842  * cpuset_init - initialize cpusets at system boot
2843  *
2844  * Description: Initialize top_cpuset and the cpuset internal file system,
2845  **/
2846
2847 int __init cpuset_init(void)
2848 {
2849         int err = 0;
2850
2851         BUG_ON(!alloc_cpumask_var(&top_cpuset.cpus_allowed, GFP_KERNEL));
2852         BUG_ON(!alloc_cpumask_var(&top_cpuset.effective_cpus, GFP_KERNEL));
2853         BUG_ON(!zalloc_cpumask_var(&top_cpuset.subparts_cpus, GFP_KERNEL));
2854
2855         cpumask_setall(top_cpuset.cpus_allowed);
2856         nodes_setall(top_cpuset.mems_allowed);
2857         cpumask_setall(top_cpuset.effective_cpus);
2858         nodes_setall(top_cpuset.effective_mems);
2859
2860         fmeter_init(&top_cpuset.fmeter);
2861         set_bit(CS_SCHED_LOAD_BALANCE, &top_cpuset.flags);
2862         top_cpuset.relax_domain_level = -1;
2863
2864         err = register_filesystem(&cpuset_fs_type);
2865         if (err < 0)
2866                 return err;
2867
2868         BUG_ON(!alloc_cpumask_var(&cpus_attach, GFP_KERNEL));
2869
2870         return 0;
2871 }
2872
2873 /*
2874  * If CPU and/or memory hotplug handlers, below, unplug any CPUs
2875  * or memory nodes, we need to walk over the cpuset hierarchy,
2876  * removing that CPU or node from all cpusets.  If this removes the
2877  * last CPU or node from a cpuset, then move the tasks in the empty
2878  * cpuset to its next-highest non-empty parent.
2879  */
2880 static void remove_tasks_in_empty_cpuset(struct cpuset *cs)
2881 {
2882         struct cpuset *parent;
2883
2884         /*
2885          * Find its next-highest non-empty parent, (top cpuset
2886          * has online cpus, so can't be empty).
2887          */
2888         parent = parent_cs(cs);
2889         while (cpumask_empty(parent->cpus_allowed) ||
2890                         nodes_empty(parent->mems_allowed))
2891                 parent = parent_cs(parent);
2892
2893         if (cgroup_transfer_tasks(parent->css.cgroup, cs->css.cgroup)) {
2894                 pr_err("cpuset: failed to transfer tasks out of empty cpuset ");
2895                 pr_cont_cgroup_name(cs->css.cgroup);
2896                 pr_cont("\n");
2897         }
2898 }
2899
2900 static void
2901 hotplug_update_tasks_legacy(struct cpuset *cs,
2902                             struct cpumask *new_cpus, nodemask_t *new_mems,
2903                             bool cpus_updated, bool mems_updated)
2904 {
2905         bool is_empty;
2906
2907         spin_lock_irq(&callback_lock);
2908         cpumask_copy(cs->cpus_allowed, new_cpus);
2909         cpumask_copy(cs->effective_cpus, new_cpus);
2910         cs->mems_allowed = *new_mems;
2911         cs->effective_mems = *new_mems;
2912         spin_unlock_irq(&callback_lock);
2913
2914         /*
2915          * Don't call update_tasks_cpumask() if the cpuset becomes empty,
2916          * as the tasks will be migratecd to an ancestor.
2917          */
2918         if (cpus_updated && !cpumask_empty(cs->cpus_allowed))
2919                 update_tasks_cpumask(cs);
2920         if (mems_updated && !nodes_empty(cs->mems_allowed))
2921                 update_tasks_nodemask(cs);
2922
2923         is_empty = cpumask_empty(cs->cpus_allowed) ||
2924                    nodes_empty(cs->mems_allowed);
2925
2926         mutex_unlock(&cpuset_mutex);
2927
2928         /*
2929          * Move tasks to the nearest ancestor with execution resources,
2930          * This is full cgroup operation which will also call back into
2931          * cpuset. Should be done outside any lock.
2932          */
2933         if (is_empty)
2934                 remove_tasks_in_empty_cpuset(cs);
2935
2936         mutex_lock(&cpuset_mutex);
2937 }
2938
2939 static void
2940 hotplug_update_tasks(struct cpuset *cs,
2941                      struct cpumask *new_cpus, nodemask_t *new_mems,
2942                      bool cpus_updated, bool mems_updated)
2943 {
2944         if (cpumask_empty(new_cpus))
2945                 cpumask_copy(new_cpus, parent_cs(cs)->effective_cpus);
2946         if (nodes_empty(*new_mems))
2947                 *new_mems = parent_cs(cs)->effective_mems;
2948
2949         spin_lock_irq(&callback_lock);
2950         cpumask_copy(cs->effective_cpus, new_cpus);
2951         cs->effective_mems = *new_mems;
2952         spin_unlock_irq(&callback_lock);
2953
2954         if (cpus_updated)
2955                 update_tasks_cpumask(cs);
2956         if (mems_updated)
2957                 update_tasks_nodemask(cs);
2958 }
2959
2960 static bool force_rebuild;
2961
2962 void cpuset_force_rebuild(void)
2963 {
2964         force_rebuild = true;
2965 }
2966
2967 /**
2968  * cpuset_hotplug_update_tasks - update tasks in a cpuset for hotunplug
2969  * @cs: cpuset in interest
2970  * @tmp: the tmpmasks structure pointer
2971  *
2972  * Compare @cs's cpu and mem masks against top_cpuset and if some have gone
2973  * offline, update @cs accordingly.  If @cs ends up with no CPU or memory,
2974  * all its tasks are moved to the nearest ancestor with both resources.
2975  */
2976 static void cpuset_hotplug_update_tasks(struct cpuset *cs, struct tmpmasks *tmp)
2977 {
2978         static cpumask_t new_cpus;
2979         static nodemask_t new_mems;
2980         bool cpus_updated;
2981         bool mems_updated;
2982         struct cpuset *parent;
2983 retry:
2984         wait_event(cpuset_attach_wq, cs->attach_in_progress == 0);
2985
2986         mutex_lock(&cpuset_mutex);
2987
2988         /*
2989          * We have raced with task attaching. We wait until attaching
2990          * is finished, so we won't attach a task to an empty cpuset.
2991          */
2992         if (cs->attach_in_progress) {
2993                 mutex_unlock(&cpuset_mutex);
2994                 goto retry;
2995         }
2996
2997         parent =  parent_cs(cs);
2998         compute_effective_cpumask(&new_cpus, cs, parent);
2999         nodes_and(new_mems, cs->mems_allowed, parent->effective_mems);
3000
3001         if (cs->nr_subparts_cpus)
3002                 /*
3003                  * Make sure that CPUs allocated to child partitions
3004                  * do not show up in effective_cpus.
3005                  */
3006                 cpumask_andnot(&new_cpus, &new_cpus, cs->subparts_cpus);
3007
3008         if (!tmp || !cs->partition_root_state)
3009                 goto update_tasks;
3010
3011         /*
3012          * In the unlikely event that a partition root has empty
3013          * effective_cpus or its parent becomes erroneous, we have to
3014          * transition it to the erroneous state.
3015          */
3016         if (is_partition_root(cs) && (cpumask_empty(&new_cpus) ||
3017            (parent->partition_root_state == PRS_ERROR))) {
3018                 if (cs->nr_subparts_cpus) {
3019                         cs->nr_subparts_cpus = 0;
3020                         cpumask_clear(cs->subparts_cpus);
3021                         compute_effective_cpumask(&new_cpus, cs, parent);
3022                 }
3023
3024                 /*
3025                  * If the effective_cpus is empty because the child
3026                  * partitions take away all the CPUs, we can keep
3027                  * the current partition and let the child partitions
3028                  * fight for available CPUs.
3029                  */
3030                 if ((parent->partition_root_state == PRS_ERROR) ||
3031                      cpumask_empty(&new_cpus)) {
3032                         update_parent_subparts_cpumask(cs, partcmd_disable,
3033                                                        NULL, tmp);
3034                         cs->partition_root_state = PRS_ERROR;
3035                 }
3036                 cpuset_force_rebuild();
3037         }
3038
3039         /*
3040          * On the other hand, an erroneous partition root may be transitioned
3041          * back to a regular one or a partition root with no CPU allocated
3042          * from the parent may change to erroneous.
3043          */
3044         if (is_partition_root(parent) &&
3045            ((cs->partition_root_state == PRS_ERROR) ||
3046             !cpumask_intersects(&new_cpus, parent->subparts_cpus)) &&
3047              update_parent_subparts_cpumask(cs, partcmd_update, NULL, tmp))
3048                 cpuset_force_rebuild();
3049
3050 update_tasks:
3051         cpus_updated = !cpumask_equal(&new_cpus, cs->effective_cpus);
3052         mems_updated = !nodes_equal(new_mems, cs->effective_mems);
3053
3054         if (is_in_v2_mode())
3055                 hotplug_update_tasks(cs, &new_cpus, &new_mems,
3056                                      cpus_updated, mems_updated);
3057         else
3058                 hotplug_update_tasks_legacy(cs, &new_cpus, &new_mems,
3059                                             cpus_updated, mems_updated);
3060
3061         mutex_unlock(&cpuset_mutex);
3062 }
3063
3064 /**
3065  * cpuset_hotplug_workfn - handle CPU/memory hotunplug for a cpuset
3066  *
3067  * This function is called after either CPU or memory configuration has
3068  * changed and updates cpuset accordingly.  The top_cpuset is always
3069  * synchronized to cpu_active_mask and N_MEMORY, which is necessary in
3070  * order to make cpusets transparent (of no affect) on systems that are
3071  * actively using CPU hotplug but making no active use of cpusets.
3072  *
3073  * Non-root cpusets are only affected by offlining.  If any CPUs or memory
3074  * nodes have been taken down, cpuset_hotplug_update_tasks() is invoked on
3075  * all descendants.
3076  *
3077  * Note that CPU offlining during suspend is ignored.  We don't modify
3078  * cpusets across suspend/resume cycles at all.
3079  */
3080 static void cpuset_hotplug_workfn(struct work_struct *work)
3081 {
3082         static cpumask_t new_cpus;
3083         static nodemask_t new_mems;
3084         bool cpus_updated, mems_updated;
3085         bool on_dfl = is_in_v2_mode();
3086         struct tmpmasks tmp, *ptmp = NULL;
3087
3088         if (on_dfl && !alloc_cpumasks(NULL, &tmp))
3089                 ptmp = &tmp;
3090
3091         mutex_lock(&cpuset_mutex);
3092
3093         /* fetch the available cpus/mems and find out which changed how */
3094         cpumask_copy(&new_cpus, cpu_active_mask);
3095         new_mems = node_states[N_MEMORY];
3096
3097         /*
3098          * If subparts_cpus is populated, it is likely that the check below
3099          * will produce a false positive on cpus_updated when the cpu list
3100          * isn't changed. It is extra work, but it is better to be safe.
3101          */
3102         cpus_updated = !cpumask_equal(top_cpuset.effective_cpus, &new_cpus);
3103         mems_updated = !nodes_equal(top_cpuset.effective_mems, new_mems);
3104
3105         /* synchronize cpus_allowed to cpu_active_mask */
3106         if (cpus_updated) {
3107                 spin_lock_irq(&callback_lock);
3108                 if (!on_dfl)
3109                         cpumask_copy(top_cpuset.cpus_allowed, &new_cpus);
3110                 /*
3111                  * Make sure that CPUs allocated to child partitions
3112                  * do not show up in effective_cpus. If no CPU is left,
3113                  * we clear the subparts_cpus & let the child partitions
3114                  * fight for the CPUs again.
3115                  */
3116                 if (top_cpuset.nr_subparts_cpus) {
3117                         if (cpumask_subset(&new_cpus,
3118                                            top_cpuset.subparts_cpus)) {
3119                                 top_cpuset.nr_subparts_cpus = 0;
3120                                 cpumask_clear(top_cpuset.subparts_cpus);
3121                         } else {
3122                                 cpumask_andnot(&new_cpus, &new_cpus,
3123                                                top_cpuset.subparts_cpus);
3124                         }
3125                 }
3126                 cpumask_copy(top_cpuset.effective_cpus, &new_cpus);
3127                 spin_unlock_irq(&callback_lock);
3128                 /* we don't mess with cpumasks of tasks in top_cpuset */
3129         }
3130
3131         /* synchronize mems_allowed to N_MEMORY */
3132         if (mems_updated) {
3133                 spin_lock_irq(&callback_lock);
3134                 if (!on_dfl)
3135                         top_cpuset.mems_allowed = new_mems;
3136                 top_cpuset.effective_mems = new_mems;
3137                 spin_unlock_irq(&callback_lock);
3138                 update_tasks_nodemask(&top_cpuset);
3139         }
3140
3141         mutex_unlock(&cpuset_mutex);
3142
3143         /* if cpus or mems changed, we need to propagate to descendants */
3144         if (cpus_updated || mems_updated) {
3145                 struct cpuset *cs;
3146                 struct cgroup_subsys_state *pos_css;
3147
3148                 rcu_read_lock();
3149                 cpuset_for_each_descendant_pre(cs, pos_css, &top_cpuset) {
3150                         if (cs == &top_cpuset || !css_tryget_online(&cs->css))
3151                                 continue;
3152                         rcu_read_unlock();
3153
3154                         cpuset_hotplug_update_tasks(cs, ptmp);
3155
3156                         rcu_read_lock();
3157                         css_put(&cs->css);
3158                 }
3159                 rcu_read_unlock();
3160         }
3161
3162         /* rebuild sched domains if cpus_allowed has changed */
3163         if (cpus_updated || force_rebuild) {
3164                 force_rebuild = false;
3165                 rebuild_sched_domains();
3166         }
3167
3168         free_cpumasks(NULL, ptmp);
3169 }
3170
3171 void cpuset_update_active_cpus(void)
3172 {
3173         /*
3174          * We're inside cpu hotplug critical region which usually nests
3175          * inside cgroup synchronization.  Bounce actual hotplug processing
3176          * to a work item to avoid reverse locking order.
3177          */
3178         schedule_work(&cpuset_hotplug_work);
3179 }
3180
3181 void cpuset_wait_for_hotplug(void)
3182 {
3183         flush_work(&cpuset_hotplug_work);
3184 }
3185
3186 /*
3187  * Keep top_cpuset.mems_allowed tracking node_states[N_MEMORY].
3188  * Call this routine anytime after node_states[N_MEMORY] changes.
3189  * See cpuset_update_active_cpus() for CPU hotplug handling.
3190  */
3191 static int cpuset_track_online_nodes(struct notifier_block *self,
3192                                 unsigned long action, void *arg)
3193 {
3194         schedule_work(&cpuset_hotplug_work);
3195         return NOTIFY_OK;
3196 }
3197
3198 static struct notifier_block cpuset_track_online_nodes_nb = {
3199         .notifier_call = cpuset_track_online_nodes,
3200         .priority = 10,         /* ??! */
3201 };
3202
3203 /**
3204  * cpuset_init_smp - initialize cpus_allowed
3205  *
3206  * Description: Finish top cpuset after cpu, node maps are initialized
3207  */
3208 void __init cpuset_init_smp(void)
3209 {
3210         cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask);
3211         top_cpuset.mems_allowed = node_states[N_MEMORY];
3212         top_cpuset.old_mems_allowed = top_cpuset.mems_allowed;
3213
3214         cpumask_copy(top_cpuset.effective_cpus, cpu_active_mask);
3215         top_cpuset.effective_mems = node_states[N_MEMORY];
3216
3217         register_hotmemory_notifier(&cpuset_track_online_nodes_nb);
3218
3219         cpuset_migrate_mm_wq = alloc_ordered_workqueue("cpuset_migrate_mm", 0);
3220         BUG_ON(!cpuset_migrate_mm_wq);
3221 }
3222
3223 /**
3224  * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
3225  * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
3226  * @pmask: pointer to struct cpumask variable to receive cpus_allowed set.
3227  *
3228  * Description: Returns the cpumask_var_t cpus_allowed of the cpuset
3229  * attached to the specified @tsk.  Guaranteed to return some non-empty
3230  * subset of cpu_online_mask, even if this means going outside the
3231  * tasks cpuset.
3232  **/
3233
3234 void cpuset_cpus_allowed(struct task_struct *tsk, struct cpumask *pmask)
3235 {
3236         unsigned long flags;
3237
3238         spin_lock_irqsave(&callback_lock, flags);
3239         rcu_read_lock();
3240         guarantee_online_cpus(task_cs(tsk), pmask);
3241         rcu_read_unlock();
3242         spin_unlock_irqrestore(&callback_lock, flags);
3243 }
3244
3245 void cpuset_cpus_allowed_fallback(struct task_struct *tsk)
3246 {
3247         rcu_read_lock();
3248         do_set_cpus_allowed(tsk, task_cs(tsk)->effective_cpus);
3249         rcu_read_unlock();
3250
3251         /*
3252          * We own tsk->cpus_allowed, nobody can change it under us.
3253          *
3254          * But we used cs && cs->cpus_allowed lockless and thus can
3255          * race with cgroup_attach_task() or update_cpumask() and get
3256          * the wrong tsk->cpus_allowed. However, both cases imply the
3257          * subsequent cpuset_change_cpumask()->set_cpus_allowed_ptr()
3258          * which takes task_rq_lock().
3259          *
3260          * If we are called after it dropped the lock we must see all
3261          * changes in tsk_cs()->cpus_allowed. Otherwise we can temporary
3262          * set any mask even if it is not right from task_cs() pov,
3263          * the pending set_cpus_allowed_ptr() will fix things.
3264          *
3265          * select_fallback_rq() will fix things ups and set cpu_possible_mask
3266          * if required.
3267          */
3268 }
3269
3270 void __init cpuset_init_current_mems_allowed(void)
3271 {
3272         nodes_setall(current->mems_allowed);
3273 }
3274
3275 /**
3276  * cpuset_mems_allowed - return mems_allowed mask from a tasks cpuset.
3277  * @tsk: pointer to task_struct from which to obtain cpuset->mems_allowed.
3278  *
3279  * Description: Returns the nodemask_t mems_allowed of the cpuset
3280  * attached to the specified @tsk.  Guaranteed to return some non-empty
3281  * subset of node_states[N_MEMORY], even if this means going outside the
3282  * tasks cpuset.
3283  **/
3284
3285 nodemask_t cpuset_mems_allowed(struct task_struct *tsk)
3286 {
3287         nodemask_t mask;
3288         unsigned long flags;
3289
3290         spin_lock_irqsave(&callback_lock, flags);
3291         rcu_read_lock();
3292         guarantee_online_mems(task_cs(tsk), &mask);
3293         rcu_read_unlock();
3294         spin_unlock_irqrestore(&callback_lock, flags);
3295
3296         return mask;
3297 }
3298
3299 /**
3300  * cpuset_nodemask_valid_mems_allowed - check nodemask vs. curremt mems_allowed
3301  * @nodemask: the nodemask to be checked
3302  *
3303  * Are any of the nodes in the nodemask allowed in current->mems_allowed?
3304  */
3305 int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
3306 {
3307         return nodes_intersects(*nodemask, current->mems_allowed);
3308 }
3309
3310 /*
3311  * nearest_hardwall_ancestor() - Returns the nearest mem_exclusive or
3312  * mem_hardwall ancestor to the specified cpuset.  Call holding
3313  * callback_lock.  If no ancestor is mem_exclusive or mem_hardwall
3314  * (an unusual configuration), then returns the root cpuset.
3315  */
3316 static struct cpuset *nearest_hardwall_ancestor(struct cpuset *cs)
3317 {
3318         while (!(is_mem_exclusive(cs) || is_mem_hardwall(cs)) && parent_cs(cs))
3319                 cs = parent_cs(cs);
3320         return cs;
3321 }
3322
3323 /**
3324  * cpuset_node_allowed - Can we allocate on a memory node?
3325  * @node: is this an allowed node?
3326  * @gfp_mask: memory allocation flags
3327  *
3328  * If we're in interrupt, yes, we can always allocate.  If @node is set in
3329  * current's mems_allowed, yes.  If it's not a __GFP_HARDWALL request and this
3330  * node is set in the nearest hardwalled cpuset ancestor to current's cpuset,
3331  * yes.  If current has access to memory reserves as an oom victim, yes.
3332  * Otherwise, no.
3333  *
3334  * GFP_USER allocations are marked with the __GFP_HARDWALL bit,
3335  * and do not allow allocations outside the current tasks cpuset
3336  * unless the task has been OOM killed.
3337  * GFP_KERNEL allocations are not so marked, so can escape to the
3338  * nearest enclosing hardwalled ancestor cpuset.
3339  *
3340  * Scanning up parent cpusets requires callback_lock.  The
3341  * __alloc_pages() routine only calls here with __GFP_HARDWALL bit
3342  * _not_ set if it's a GFP_KERNEL allocation, and all nodes in the
3343  * current tasks mems_allowed came up empty on the first pass over
3344  * the zonelist.  So only GFP_KERNEL allocations, if all nodes in the
3345  * cpuset are short of memory, might require taking the callback_lock.
3346  *
3347  * The first call here from mm/page_alloc:get_page_from_freelist()
3348  * has __GFP_HARDWALL set in gfp_mask, enforcing hardwall cpusets,
3349  * so no allocation on a node outside the cpuset is allowed (unless
3350  * in interrupt, of course).
3351  *
3352  * The second pass through get_page_from_freelist() doesn't even call
3353  * here for GFP_ATOMIC calls.  For those calls, the __alloc_pages()
3354  * variable 'wait' is not set, and the bit ALLOC_CPUSET is not set
3355  * in alloc_flags.  That logic and the checks below have the combined
3356  * affect that:
3357  *      in_interrupt - any node ok (current task context irrelevant)
3358  *      GFP_ATOMIC   - any node ok
3359  *      tsk_is_oom_victim   - any node ok
3360  *      GFP_KERNEL   - any node in enclosing hardwalled cpuset ok
3361  *      GFP_USER     - only nodes in current tasks mems allowed ok.
3362  */
3363 bool __cpuset_node_allowed(int node, gfp_t gfp_mask)
3364 {
3365         struct cpuset *cs;              /* current cpuset ancestors */
3366         int allowed;                    /* is allocation in zone z allowed? */
3367         unsigned long flags;
3368
3369         if (in_interrupt())
3370                 return true;
3371         if (node_isset(node, current->mems_allowed))
3372                 return true;
3373         /*
3374          * Allow tasks that have access to memory reserves because they have
3375          * been OOM killed to get memory anywhere.
3376          */
3377         if (unlikely(tsk_is_oom_victim(current)))
3378                 return true;
3379         if (gfp_mask & __GFP_HARDWALL)  /* If hardwall request, stop here */
3380                 return false;
3381
3382         if (current->flags & PF_EXITING) /* Let dying task have memory */
3383                 return true;
3384
3385         /* Not hardwall and node outside mems_allowed: scan up cpusets */
3386         spin_lock_irqsave(&callback_lock, flags);
3387
3388         rcu_read_lock();
3389         cs = nearest_hardwall_ancestor(task_cs(current));
3390         allowed = node_isset(node, cs->mems_allowed);
3391         rcu_read_unlock();
3392
3393         spin_unlock_irqrestore(&callback_lock, flags);
3394         return allowed;
3395 }
3396
3397 /**
3398  * cpuset_mem_spread_node() - On which node to begin search for a file page
3399  * cpuset_slab_spread_node() - On which node to begin search for a slab page
3400  *
3401  * If a task is marked PF_SPREAD_PAGE or PF_SPREAD_SLAB (as for
3402  * tasks in a cpuset with is_spread_page or is_spread_slab set),
3403  * and if the memory allocation used cpuset_mem_spread_node()
3404  * to determine on which node to start looking, as it will for
3405  * certain page cache or slab cache pages such as used for file
3406  * system buffers and inode caches, then instead of starting on the
3407  * local node to look for a free page, rather spread the starting
3408  * node around the tasks mems_allowed nodes.
3409  *
3410  * We don't have to worry about the returned node being offline
3411  * because "it can't happen", and even if it did, it would be ok.
3412  *
3413  * The routines calling guarantee_online_mems() are careful to
3414  * only set nodes in task->mems_allowed that are online.  So it
3415  * should not be possible for the following code to return an
3416  * offline node.  But if it did, that would be ok, as this routine
3417  * is not returning the node where the allocation must be, only
3418  * the node where the search should start.  The zonelist passed to
3419  * __alloc_pages() will include all nodes.  If the slab allocator
3420  * is passed an offline node, it will fall back to the local node.
3421  * See kmem_cache_alloc_node().
3422  */
3423
3424 static int cpuset_spread_node(int *rotor)
3425 {
3426         return *rotor = next_node_in(*rotor, current->mems_allowed);
3427 }
3428
3429 int cpuset_mem_spread_node(void)
3430 {
3431         if (current->cpuset_mem_spread_rotor == NUMA_NO_NODE)
3432                 current->cpuset_mem_spread_rotor =
3433                         node_random(&current->mems_allowed);
3434
3435         return cpuset_spread_node(&current->cpuset_mem_spread_rotor);
3436 }
3437
3438 int cpuset_slab_spread_node(void)
3439 {
3440         if (current->cpuset_slab_spread_rotor == NUMA_NO_NODE)
3441                 current->cpuset_slab_spread_rotor =
3442                         node_random(&current->mems_allowed);
3443
3444         return cpuset_spread_node(&current->cpuset_slab_spread_rotor);
3445 }
3446
3447 EXPORT_SYMBOL_GPL(cpuset_mem_spread_node);
3448
3449 /**
3450  * cpuset_mems_allowed_intersects - Does @tsk1's mems_allowed intersect @tsk2's?
3451  * @tsk1: pointer to task_struct of some task.
3452  * @tsk2: pointer to task_struct of some other task.
3453  *
3454  * Description: Return true if @tsk1's mems_allowed intersects the
3455  * mems_allowed of @tsk2.  Used by the OOM killer to determine if
3456  * one of the task's memory usage might impact the memory available
3457  * to the other.
3458  **/
3459
3460 int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
3461                                    const struct task_struct *tsk2)
3462 {
3463         return nodes_intersects(tsk1->mems_allowed, tsk2->mems_allowed);
3464 }
3465
3466 /**
3467  * cpuset_print_current_mems_allowed - prints current's cpuset and mems_allowed
3468  *
3469  * Description: Prints current's name, cpuset name, and cached copy of its
3470  * mems_allowed to the kernel log.
3471  */
3472 void cpuset_print_current_mems_allowed(void)
3473 {
3474         struct cgroup *cgrp;
3475
3476         rcu_read_lock();
3477
3478         cgrp = task_cs(current)->css.cgroup;
3479         pr_info("%s cpuset=", current->comm);
3480         pr_cont_cgroup_name(cgrp);
3481         pr_cont(" mems_allowed=%*pbl\n",
3482                 nodemask_pr_args(&current->mems_allowed));
3483
3484         rcu_read_unlock();
3485 }
3486
3487 /*
3488  * Collection of memory_pressure is suppressed unless
3489  * this flag is enabled by writing "1" to the special
3490  * cpuset file 'memory_pressure_enabled' in the root cpuset.
3491  */
3492
3493 int cpuset_memory_pressure_enabled __read_mostly;
3494
3495 /**
3496  * cpuset_memory_pressure_bump - keep stats of per-cpuset reclaims.
3497  *
3498  * Keep a running average of the rate of synchronous (direct)
3499  * page reclaim efforts initiated by tasks in each cpuset.
3500  *
3501  * This represents the rate at which some task in the cpuset
3502  * ran low on memory on all nodes it was allowed to use, and
3503  * had to enter the kernels page reclaim code in an effort to
3504  * create more free memory by tossing clean pages or swapping
3505  * or writing dirty pages.
3506  *
3507  * Display to user space in the per-cpuset read-only file
3508  * "memory_pressure".  Value displayed is an integer
3509  * representing the recent rate of entry into the synchronous
3510  * (direct) page reclaim by any task attached to the cpuset.
3511  **/
3512
3513 void __cpuset_memory_pressure_bump(void)
3514 {
3515         rcu_read_lock();
3516         fmeter_markevent(&task_cs(current)->fmeter);
3517         rcu_read_unlock();
3518 }
3519
3520 #ifdef CONFIG_PROC_PID_CPUSET
3521 /*
3522  * proc_cpuset_show()
3523  *  - Print tasks cpuset path into seq_file.
3524  *  - Used for /proc/<pid>/cpuset.
3525  *  - No need to task_lock(tsk) on this tsk->cpuset reference, as it
3526  *    doesn't really matter if tsk->cpuset changes after we read it,
3527  *    and we take cpuset_mutex, keeping cpuset_attach() from changing it
3528  *    anyway.
3529  */
3530 int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
3531                      struct pid *pid, struct task_struct *tsk)
3532 {
3533         char *buf;
3534         struct cgroup_subsys_state *css;
3535         int retval;
3536
3537         retval = -ENOMEM;
3538         buf = kmalloc(PATH_MAX, GFP_KERNEL);
3539         if (!buf)
3540                 goto out;
3541
3542         css = task_get_css(tsk, cpuset_cgrp_id);
3543         retval = cgroup_path_ns(css->cgroup, buf, PATH_MAX,
3544                                 current->nsproxy->cgroup_ns);
3545         css_put(css);
3546         if (retval >= PATH_MAX)
3547                 retval = -ENAMETOOLONG;
3548         if (retval < 0)
3549                 goto out_free;
3550         seq_puts(m, buf);
3551         seq_putc(m, '\n');
3552         retval = 0;
3553 out_free:
3554         kfree(buf);
3555 out:
3556         return retval;
3557 }
3558 #endif /* CONFIG_PROC_PID_CPUSET */
3559
3560 /* Display task mems_allowed in /proc/<pid>/status file. */
3561 void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task)
3562 {
3563         seq_printf(m, "Mems_allowed:\t%*pb\n",
3564                    nodemask_pr_args(&task->mems_allowed));
3565         seq_printf(m, "Mems_allowed_list:\t%*pbl\n",
3566                    nodemask_pr_args(&task->mems_allowed));
3567 }