blob: 02a8ea5c99632907b2ae887015c59bd4ad35da9d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/cpuset.c
3 *
4 * Processor and Memory placement constraints for sets of tasks.
5 *
6 * Copyright (C) 2003 BULL SA.
Paul Jackson029190c2007-10-18 23:40:20 -07007 * Copyright (C) 2004-2007 Silicon Graphics, Inc.
Paul Menage8793d852007-10-18 23:39:39 -07008 * Copyright (C) 2006 Google, Inc
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Portions derived from Patrick Mochel's sysfs code.
11 * sysfs is Copyright (c) 2001-3 Patrick Mochel
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Paul Jackson825a46a2006-03-24 03:16:03 -080013 * 2003-10-10 Written by Simon Derr.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 2003-10-22 Updates by Stephen Hemminger.
Paul Jackson825a46a2006-03-24 03:16:03 -080015 * 2004 May-July Rework by Paul Jackson.
Paul Menage8793d852007-10-18 23:39:39 -070016 * 2006 Rework by Paul Menage to use generic cgroups
Max Krasnyanskycf417142008-08-11 14:33:53 -070017 * 2008 Rework of the scheduler domains and CPU hotplug handling
18 * by Max Krasnyansky
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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>
Paul Jackson68860ec2005-10-30 15:02:36 -080037#include <linux/mempolicy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mm.h>
Miao Xief4818912008-11-19 15:36:30 -080039#include <linux/memory.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040040#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/mount.h>
42#include <linux/namei.h>
43#include <linux/pagemap.h>
44#include <linux/proc_fs.h>
Paul Jackson6b9c2602006-01-08 01:02:02 -080045#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/sched.h>
47#include <linux/seq_file.h>
David Quigley22fb52d2006-06-23 02:04:00 -070048#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/spinlock.h>
51#include <linux/stat.h>
52#include <linux/string.h>
53#include <linux/time.h>
54#include <linux/backing-dev.h>
55#include <linux/sort.h>
56
57#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070058#include <linux/atomic.h>
Ingo Molnar3d3f26a2006-03-23 03:00:18 -080059#include <linux/mutex.h>
Cliff Wickman956db3c2008-02-07 00:14:43 -080060#include <linux/workqueue.h>
61#include <linux/cgroup.h>
Li Zefane44193d2013-06-09 17:14:22 +080062#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Mel Gorman664eedd2014-06-04 16:10:08 -070064struct static_key cpusets_enabled_key __read_mostly = STATIC_KEY_INIT_FALSE;
Paul Jackson202f72d2006-01-08 01:01:57 -080065
Paul Jackson3e0d98b2006-01-08 01:01:49 -080066/* See "Frequency meter" comments, below. */
67
68struct fmeter {
69 int cnt; /* unprocessed events count */
70 int val; /* most recent output value */
71 time_t time; /* clock (secs) when val computed */
72 spinlock_t lock; /* guards read or write of above */
73};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075struct cpuset {
Paul Menage8793d852007-10-18 23:39:39 -070076 struct cgroup_subsys_state css;
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 unsigned long flags; /* "unsigned long" so bitops work */
Li Zefane2b9a3d2014-07-09 16:47:03 +080079
Li Zefan7e882912014-07-09 16:48:42 +080080 /*
81 * On default hierarchy:
82 *
83 * The user-configured masks can only be changed by writing to
84 * cpuset.cpus and cpuset.mems, and won't be limited by the
85 * parent masks.
86 *
87 * The effective masks is the real masks that apply to the tasks
88 * in the cpuset. They may be changed if the configured masks are
89 * changed or hotplug happens.
90 *
91 * effective_mask == configured_mask & parent's effective_mask,
92 * and if it ends up empty, it will inherit the parent's mask.
93 *
94 *
95 * On legacy hierachy:
96 *
97 * The user-configured masks are always the same with effective masks.
98 */
99
Li Zefane2b9a3d2014-07-09 16:47:03 +0800100 /* user-configured CPUs and Memory Nodes allow to tasks */
101 cpumask_var_t cpus_allowed;
102 nodemask_t mems_allowed;
103
104 /* effective CPUs and Memory Nodes allow to tasks */
105 cpumask_var_t effective_cpus;
106 nodemask_t effective_mems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Li Zefan33ad8012013-06-09 17:15:08 +0800108 /*
109 * This is old Memory Nodes tasks took on.
110 *
111 * - top_cpuset.old_mems_allowed is initialized to mems_allowed.
112 * - A new cpuset's old_mems_allowed is initialized when some
113 * task is moved into it.
114 * - old_mems_allowed is used in cpuset_migrate_mm() when we change
115 * cpuset.mems_allowed and have tasks' nodemask updated, and
116 * then old_mems_allowed is updated to mems_allowed.
117 */
118 nodemask_t old_mems_allowed;
119
Paul Jackson3e0d98b2006-01-08 01:01:49 -0800120 struct fmeter fmeter; /* memory_pressure filter */
Paul Jackson029190c2007-10-18 23:40:20 -0700121
Tejun Heo452477f2013-01-07 08:51:07 -0800122 /*
123 * Tasks are being attached to this cpuset. Used to prevent
124 * zeroing cpus/mems_allowed between ->can_attach() and ->attach().
125 */
126 int attach_in_progress;
127
Paul Jackson029190c2007-10-18 23:40:20 -0700128 /* partition number for rebuild_sched_domains() */
129 int pn;
Cliff Wickman956db3c2008-02-07 00:14:43 -0800130
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900131 /* for custom sched domain */
132 int relax_domain_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Tejun Heoa7c6d552013-08-08 20:11:23 -0400135static inline struct cpuset *css_cs(struct cgroup_subsys_state *css)
Paul Menage8793d852007-10-18 23:39:39 -0700136{
Tejun Heoa7c6d552013-08-08 20:11:23 -0400137 return css ? container_of(css, struct cpuset, css) : NULL;
Paul Menage8793d852007-10-18 23:39:39 -0700138}
139
140/* Retrieve the cpuset for a task */
141static inline struct cpuset *task_cs(struct task_struct *task)
142{
Tejun Heo073219e2014-02-08 10:36:58 -0500143 return css_cs(task_css(task, cpuset_cgrp_id));
Paul Menage8793d852007-10-18 23:39:39 -0700144}
Paul Menage8793d852007-10-18 23:39:39 -0700145
Tejun Heoc9710d82013-08-08 20:11:22 -0400146static inline struct cpuset *parent_cs(struct cpuset *cs)
Tejun Heoc4310692013-01-07 08:51:08 -0800147{
Tejun Heo5c9d5352014-05-16 13:22:48 -0400148 return css_cs(cs->css.parent);
Tejun Heoc4310692013-01-07 08:51:08 -0800149}
150
David Rientjesb2462722011-12-19 17:11:52 -0800151#ifdef CONFIG_NUMA
152static inline bool task_has_mempolicy(struct task_struct *task)
153{
154 return task->mempolicy;
155}
156#else
157static inline bool task_has_mempolicy(struct task_struct *task)
158{
159 return false;
160}
161#endif
162
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* bits in struct cpuset flags field */
165typedef enum {
Tejun Heoefeb77b2013-01-07 08:51:07 -0800166 CS_ONLINE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 CS_CPU_EXCLUSIVE,
168 CS_MEM_EXCLUSIVE,
Paul Menage78608362008-04-29 01:00:26 -0700169 CS_MEM_HARDWALL,
Paul Jackson45b07ef2006-01-08 01:00:56 -0800170 CS_MEMORY_MIGRATE,
Paul Jackson029190c2007-10-18 23:40:20 -0700171 CS_SCHED_LOAD_BALANCE,
Paul Jackson825a46a2006-03-24 03:16:03 -0800172 CS_SPREAD_PAGE,
173 CS_SPREAD_SLAB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174} cpuset_flagbits_t;
175
176/* convenient tests for these bits */
Tejun Heoefeb77b2013-01-07 08:51:07 -0800177static inline bool is_cpuset_online(const struct cpuset *cs)
178{
179 return test_bit(CS_ONLINE, &cs->flags);
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static inline int is_cpu_exclusive(const struct cpuset *cs)
183{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800184 return test_bit(CS_CPU_EXCLUSIVE, &cs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187static inline int is_mem_exclusive(const struct cpuset *cs)
188{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800189 return test_bit(CS_MEM_EXCLUSIVE, &cs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Paul Menage78608362008-04-29 01:00:26 -0700192static inline int is_mem_hardwall(const struct cpuset *cs)
193{
194 return test_bit(CS_MEM_HARDWALL, &cs->flags);
195}
196
Paul Jackson029190c2007-10-18 23:40:20 -0700197static inline int is_sched_load_balance(const struct cpuset *cs)
198{
199 return test_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
200}
201
Paul Jackson45b07ef2006-01-08 01:00:56 -0800202static inline int is_memory_migrate(const struct cpuset *cs)
203{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800204 return test_bit(CS_MEMORY_MIGRATE, &cs->flags);
Paul Jackson45b07ef2006-01-08 01:00:56 -0800205}
206
Paul Jackson825a46a2006-03-24 03:16:03 -0800207static inline int is_spread_page(const struct cpuset *cs)
208{
209 return test_bit(CS_SPREAD_PAGE, &cs->flags);
210}
211
212static inline int is_spread_slab(const struct cpuset *cs)
213{
214 return test_bit(CS_SPREAD_SLAB, &cs->flags);
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static struct cpuset top_cpuset = {
Tejun Heoefeb77b2013-01-07 08:51:07 -0800218 .flags = ((1 << CS_ONLINE) | (1 << CS_CPU_EXCLUSIVE) |
219 (1 << CS_MEM_EXCLUSIVE)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
Tejun Heoae8086c2013-01-07 08:51:07 -0800222/**
223 * cpuset_for_each_child - traverse online children of a cpuset
224 * @child_cs: loop cursor pointing to the current child
Tejun Heo492eb212013-08-08 20:11:25 -0400225 * @pos_css: used for iteration
Tejun Heoae8086c2013-01-07 08:51:07 -0800226 * @parent_cs: target cpuset to walk children of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 *
Tejun Heoae8086c2013-01-07 08:51:07 -0800228 * Walk @child_cs through the online children of @parent_cs. Must be used
229 * with RCU read locked.
230 */
Tejun Heo492eb212013-08-08 20:11:25 -0400231#define cpuset_for_each_child(child_cs, pos_css, parent_cs) \
232 css_for_each_child((pos_css), &(parent_cs)->css) \
233 if (is_cpuset_online(((child_cs) = css_cs((pos_css)))))
Tejun Heoae8086c2013-01-07 08:51:07 -0800234
Tejun Heofc560a22013-01-07 08:51:08 -0800235/**
236 * cpuset_for_each_descendant_pre - pre-order walk of a cpuset's descendants
237 * @des_cs: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400238 * @pos_css: used for iteration
Tejun Heofc560a22013-01-07 08:51:08 -0800239 * @root_cs: target cpuset to walk ancestor of
240 *
241 * Walk @des_cs through the online descendants of @root_cs. Must be used
Tejun Heo492eb212013-08-08 20:11:25 -0400242 * with RCU read locked. The caller may modify @pos_css by calling
Tejun Heobd8815a2013-08-08 20:11:27 -0400243 * css_rightmost_descendant() to skip subtree. @root_cs is included in the
244 * iteration and the first node to be visited.
Tejun Heofc560a22013-01-07 08:51:08 -0800245 */
Tejun Heo492eb212013-08-08 20:11:25 -0400246#define cpuset_for_each_descendant_pre(des_cs, pos_css, root_cs) \
247 css_for_each_descendant_pre((pos_css), &(root_cs)->css) \
248 if (is_cpuset_online(((des_cs) = css_cs((pos_css)))))
Tejun Heofc560a22013-01-07 08:51:08 -0800249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400251 * There are two global locks guarding cpuset structures - cpuset_mutex and
252 * callback_lock. We also require taking task_lock() when dereferencing a
253 * task's cpuset pointer. See "The task_lock() exception", at the end of this
254 * comment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400256 * A task must hold both locks to modify cpusets. If a task holds
Tejun Heo5d21cc22013-01-07 08:51:08 -0800257 * cpuset_mutex, then it blocks others wanting that mutex, ensuring that it
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400258 * is the only task able to also acquire callback_lock and be able to
Tejun Heo5d21cc22013-01-07 08:51:08 -0800259 * modify cpusets. It can perform various checks on the cpuset structure
260 * first, knowing nothing will change. It can also allocate memory while
261 * just holding cpuset_mutex. While it is performing these checks, various
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400262 * callback routines can briefly acquire callback_lock to query cpusets.
263 * Once it is ready to make the changes, it takes callback_lock, blocking
Tejun Heo5d21cc22013-01-07 08:51:08 -0800264 * everyone else.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
Paul Jackson053199e2005-10-30 15:02:30 -0800266 * Calls to the kernel memory allocator can not be made while holding
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400267 * callback_lock, as that would risk double tripping on callback_lock
Paul Jackson053199e2005-10-30 15:02:30 -0800268 * from one of the callbacks into the cpuset code from within
269 * __alloc_pages().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400271 * If a task is only holding callback_lock, then it has read-only
Paul Jackson053199e2005-10-30 15:02:30 -0800272 * access to cpusets.
273 *
Miao Xie58568d22009-06-16 15:31:49 -0700274 * Now, the task_struct fields mems_allowed and mempolicy may be changed
275 * by other task, we use alloc_lock in the task_struct fields to protect
276 * them.
Paul Jackson053199e2005-10-30 15:02:30 -0800277 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400278 * The cpuset_common_file_read() handlers only hold callback_lock across
Paul Jackson053199e2005-10-30 15:02:30 -0800279 * small pieces of code, such as when reading out possibly multi-word
280 * cpumasks and nodemasks.
281 *
Paul Menage2df167a2008-02-07 00:14:45 -0800282 * Accessing a task's cpuset should be done in accordance with the
283 * guidelines for accessing subsystem state in kernel/cgroup.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 */
285
Tejun Heo5d21cc22013-01-07 08:51:08 -0800286static DEFINE_MUTEX(cpuset_mutex);
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400287static DEFINE_SPINLOCK(callback_lock);
Paul Jackson4247bdc2005-09-10 00:26:06 -0700288
Max Krasnyanskycf417142008-08-11 14:33:53 -0700289/*
Tejun Heo3a5a6d02013-01-07 08:51:07 -0800290 * CPU / memory hotplug is handled asynchronously.
291 */
292static void cpuset_hotplug_workfn(struct work_struct *work);
Tejun Heo3a5a6d02013-01-07 08:51:07 -0800293static DECLARE_WORK(cpuset_hotplug_work, cpuset_hotplug_workfn);
294
Li Zefane44193d2013-06-09 17:14:22 +0800295static DECLARE_WAIT_QUEUE_HEAD(cpuset_attach_wq);
296
Tejun Heo3a5a6d02013-01-07 08:51:07 -0800297/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700298 * This is ugly, but preserves the userspace API for existing cpuset
Paul Menage8793d852007-10-18 23:39:39 -0700299 * users. If someone tries to mount the "cpuset" filesystem, we
Max Krasnyanskycf417142008-08-11 14:33:53 -0700300 * silently switch it to mount "cgroup" instead
301 */
Al Virof7e83572010-07-26 13:23:11 +0400302static struct dentry *cpuset_mount(struct file_system_type *fs_type,
303 int flags, const char *unused_dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Paul Menage8793d852007-10-18 23:39:39 -0700305 struct file_system_type *cgroup_fs = get_fs_type("cgroup");
Al Virof7e83572010-07-26 13:23:11 +0400306 struct dentry *ret = ERR_PTR(-ENODEV);
Paul Menage8793d852007-10-18 23:39:39 -0700307 if (cgroup_fs) {
308 char mountopts[] =
309 "cpuset,noprefix,"
310 "release_agent=/sbin/cpuset_release_agent";
Al Virof7e83572010-07-26 13:23:11 +0400311 ret = cgroup_fs->mount(cgroup_fs, flags,
312 unused_dev_name, mountopts);
Paul Menage8793d852007-10-18 23:39:39 -0700313 put_filesystem(cgroup_fs);
314 }
315 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318static struct file_system_type cpuset_fs_type = {
319 .name = "cpuset",
Al Virof7e83572010-07-26 13:23:11 +0400320 .mount = cpuset_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321};
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
Li Zefan300ed6c2009-01-07 18:08:44 -0800324 * Return in pmask the portion of a cpusets's cpus_allowed that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * are online. If none are online, walk up the cpuset hierarchy
Li Zefan40df2de2013-06-05 17:15:23 +0800326 * until we find one that does have some online cpus. The top
327 * cpuset always has some cpus online.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *
329 * One way or another, we guarantee to return some non-empty subset
Rusty Russell5f054e32012-03-29 15:38:31 +1030330 * of cpu_online_mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400332 * Call with callback_lock or cpuset_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Tejun Heoc9710d82013-08-08 20:11:22 -0400334static void guarantee_online_cpus(struct cpuset *cs, struct cpumask *pmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Li Zefanae1c8022014-07-09 16:48:32 +0800336 while (!cpumask_intersects(cs->effective_cpus, cpu_online_mask))
Tejun Heoc4310692013-01-07 08:51:08 -0800337 cs = parent_cs(cs);
Li Zefanae1c8022014-07-09 16:48:32 +0800338 cpumask_and(pmask, cs->effective_cpus, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341/*
342 * Return in *pmask the portion of a cpusets's mems_allowed that
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700343 * are online, with memory. If none are online with memory, walk
344 * up the cpuset hierarchy until we find one that does have some
Li Zefan40df2de2013-06-05 17:15:23 +0800345 * online mems. The top cpuset always has some mems online.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * One way or another, we guarantee to return some non-empty subset
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800348 * of node_states[N_MEMORY].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400350 * Call with callback_lock or cpuset_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Tejun Heoc9710d82013-08-08 20:11:22 -0400352static void guarantee_online_mems(struct cpuset *cs, nodemask_t *pmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Li Zefanae1c8022014-07-09 16:48:32 +0800354 while (!nodes_intersects(cs->effective_mems, node_states[N_MEMORY]))
Tejun Heoc4310692013-01-07 08:51:08 -0800355 cs = parent_cs(cs);
Li Zefanae1c8022014-07-09 16:48:32 +0800356 nodes_and(*pmask, cs->effective_mems, node_states[N_MEMORY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Miao Xief3b39d42009-06-16 15:31:46 -0700359/*
360 * update task's spread flag if cpuset's page/slab spread flag is set
361 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400362 * Call with callback_lock or cpuset_mutex held.
Miao Xief3b39d42009-06-16 15:31:46 -0700363 */
364static void cpuset_update_task_spread_flag(struct cpuset *cs,
365 struct task_struct *tsk)
366{
367 if (is_spread_page(cs))
Zefan Li2ad654b2014-09-25 09:41:02 +0800368 task_set_spread_page(tsk);
Miao Xief3b39d42009-06-16 15:31:46 -0700369 else
Zefan Li2ad654b2014-09-25 09:41:02 +0800370 task_clear_spread_page(tsk);
371
Miao Xief3b39d42009-06-16 15:31:46 -0700372 if (is_spread_slab(cs))
Zefan Li2ad654b2014-09-25 09:41:02 +0800373 task_set_spread_slab(tsk);
Miao Xief3b39d42009-06-16 15:31:46 -0700374 else
Zefan Li2ad654b2014-09-25 09:41:02 +0800375 task_clear_spread_slab(tsk);
Miao Xief3b39d42009-06-16 15:31:46 -0700376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
379 * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
380 *
381 * One cpuset is a subset of another if all its allowed CPUs and
382 * Memory Nodes are a subset of the other, and its exclusive flags
Tejun Heo5d21cc22013-01-07 08:51:08 -0800383 * are only set if the other's are set. Call holding cpuset_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
385
386static int is_cpuset_subset(const struct cpuset *p, const struct cpuset *q)
387{
Li Zefan300ed6c2009-01-07 18:08:44 -0800388 return cpumask_subset(p->cpus_allowed, q->cpus_allowed) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 nodes_subset(p->mems_allowed, q->mems_allowed) &&
390 is_cpu_exclusive(p) <= is_cpu_exclusive(q) &&
391 is_mem_exclusive(p) <= is_mem_exclusive(q);
392}
393
Li Zefan645fcc92009-01-07 18:08:43 -0800394/**
395 * alloc_trial_cpuset - allocate a trial cpuset
396 * @cs: the cpuset that the trial cpuset duplicates
397 */
Tejun Heoc9710d82013-08-08 20:11:22 -0400398static struct cpuset *alloc_trial_cpuset(struct cpuset *cs)
Li Zefan645fcc92009-01-07 18:08:43 -0800399{
Li Zefan300ed6c2009-01-07 18:08:44 -0800400 struct cpuset *trial;
401
402 trial = kmemdup(cs, sizeof(*cs), GFP_KERNEL);
403 if (!trial)
404 return NULL;
405
Li Zefane2b9a3d2014-07-09 16:47:03 +0800406 if (!alloc_cpumask_var(&trial->cpus_allowed, GFP_KERNEL))
407 goto free_cs;
408 if (!alloc_cpumask_var(&trial->effective_cpus, GFP_KERNEL))
409 goto free_cpus;
Li Zefan300ed6c2009-01-07 18:08:44 -0800410
Li Zefane2b9a3d2014-07-09 16:47:03 +0800411 cpumask_copy(trial->cpus_allowed, cs->cpus_allowed);
412 cpumask_copy(trial->effective_cpus, cs->effective_cpus);
Li Zefan300ed6c2009-01-07 18:08:44 -0800413 return trial;
Li Zefane2b9a3d2014-07-09 16:47:03 +0800414
415free_cpus:
416 free_cpumask_var(trial->cpus_allowed);
417free_cs:
418 kfree(trial);
419 return NULL;
Li Zefan645fcc92009-01-07 18:08:43 -0800420}
421
422/**
423 * free_trial_cpuset - free the trial cpuset
424 * @trial: the trial cpuset to be freed
425 */
426static void free_trial_cpuset(struct cpuset *trial)
427{
Li Zefane2b9a3d2014-07-09 16:47:03 +0800428 free_cpumask_var(trial->effective_cpus);
Li Zefan300ed6c2009-01-07 18:08:44 -0800429 free_cpumask_var(trial->cpus_allowed);
Li Zefan645fcc92009-01-07 18:08:43 -0800430 kfree(trial);
431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
434 * validate_change() - Used to validate that any proposed cpuset change
435 * follows the structural rules for cpusets.
436 *
437 * If we replaced the flag and mask values of the current cpuset
438 * (cur) with those values in the trial cpuset (trial), would
439 * our various subset and exclusive rules still be valid? Presumes
Tejun Heo5d21cc22013-01-07 08:51:08 -0800440 * cpuset_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 *
442 * 'cur' is the address of an actual, in-use cpuset. Operations
443 * such as list traversal that depend on the actual address of the
444 * cpuset in the list must use cur below, not trial.
445 *
446 * 'trial' is the address of bulk structure copy of cur, with
447 * perhaps one or more of the fields cpus_allowed, mems_allowed,
448 * or flags changed to new, trial values.
449 *
450 * Return 0 if valid, -errno if not.
451 */
452
Tejun Heoc9710d82013-08-08 20:11:22 -0400453static int validate_change(struct cpuset *cur, struct cpuset *trial)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Tejun Heo492eb212013-08-08 20:11:25 -0400455 struct cgroup_subsys_state *css;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct cpuset *c, *par;
Tejun Heoae8086c2013-01-07 08:51:07 -0800457 int ret;
458
459 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* Each of our child cpusets must be a subset of us */
Tejun Heoae8086c2013-01-07 08:51:07 -0800462 ret = -EBUSY;
Tejun Heo492eb212013-08-08 20:11:25 -0400463 cpuset_for_each_child(c, css, cur)
Tejun Heoae8086c2013-01-07 08:51:07 -0800464 if (!is_cpuset_subset(c, trial))
465 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* Remaining checks don't apply to root cpuset */
Tejun Heoae8086c2013-01-07 08:51:07 -0800468 ret = 0;
Paul Jackson69604062006-12-06 20:36:15 -0800469 if (cur == &top_cpuset)
Tejun Heoae8086c2013-01-07 08:51:07 -0800470 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Tejun Heoc4310692013-01-07 08:51:08 -0800472 par = parent_cs(cur);
Paul Jackson69604062006-12-06 20:36:15 -0800473
Li Zefan7e882912014-07-09 16:48:42 +0800474 /* On legacy hiearchy, we must be a subset of our parent cpuset. */
Tejun Heoae8086c2013-01-07 08:51:07 -0800475 ret = -EACCES;
Tejun Heo9e10a132015-09-18 11:56:28 -0400476 if (!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
477 !is_cpuset_subset(trial, par))
Tejun Heoae8086c2013-01-07 08:51:07 -0800478 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Paul Menage2df167a2008-02-07 00:14:45 -0800480 /*
481 * If either I or some sibling (!= me) is exclusive, we can't
482 * overlap
483 */
Tejun Heoae8086c2013-01-07 08:51:07 -0800484 ret = -EINVAL;
Tejun Heo492eb212013-08-08 20:11:25 -0400485 cpuset_for_each_child(c, css, par) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if ((is_cpu_exclusive(trial) || is_cpu_exclusive(c)) &&
487 c != cur &&
Li Zefan300ed6c2009-01-07 18:08:44 -0800488 cpumask_intersects(trial->cpus_allowed, c->cpus_allowed))
Tejun Heoae8086c2013-01-07 08:51:07 -0800489 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if ((is_mem_exclusive(trial) || is_mem_exclusive(c)) &&
491 c != cur &&
492 nodes_intersects(trial->mems_allowed, c->mems_allowed))
Tejun Heoae8086c2013-01-07 08:51:07 -0800493 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495
Tejun Heo452477f2013-01-07 08:51:07 -0800496 /*
497 * Cpusets with tasks - existing or newly being attached - can't
Li Zefan1c09b192013-08-21 10:22:28 +0800498 * be changed to have empty cpus_allowed or mems_allowed.
Tejun Heo452477f2013-01-07 08:51:07 -0800499 */
Tejun Heoae8086c2013-01-07 08:51:07 -0800500 ret = -ENOSPC;
Tejun Heo27bd4db2015-10-15 16:41:50 -0400501 if ((cgroup_is_populated(cur->css.cgroup) || cur->attach_in_progress)) {
Li Zefan1c09b192013-08-21 10:22:28 +0800502 if (!cpumask_empty(cur->cpus_allowed) &&
503 cpumask_empty(trial->cpus_allowed))
504 goto out;
505 if (!nodes_empty(cur->mems_allowed) &&
506 nodes_empty(trial->mems_allowed))
507 goto out;
508 }
Paul Jackson020958b2007-10-18 23:40:21 -0700509
Juri Lellif82f8042014-10-07 09:52:11 +0100510 /*
511 * We can't shrink if we won't have enough room for SCHED_DEADLINE
512 * tasks.
513 */
514 ret = -EBUSY;
515 if (is_cpu_exclusive(cur) &&
516 !cpuset_cpumask_can_shrink(cur->cpus_allowed,
517 trial->cpus_allowed))
518 goto out;
519
Tejun Heoae8086c2013-01-07 08:51:07 -0800520 ret = 0;
521out:
522 rcu_read_unlock();
523 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Paul Menagedb7f47c2009-04-02 16:57:55 -0700526#ifdef CONFIG_SMP
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -0700527/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700528 * Helper routine for generate_sched_domains().
Li Zefan8b5f1c52014-07-09 16:47:50 +0800529 * Do cpusets a, b have overlapping effective cpus_allowed masks?
Paul Jackson029190c2007-10-18 23:40:20 -0700530 */
Paul Jackson029190c2007-10-18 23:40:20 -0700531static int cpusets_overlap(struct cpuset *a, struct cpuset *b)
532{
Li Zefan8b5f1c52014-07-09 16:47:50 +0800533 return cpumask_intersects(a->effective_cpus, b->effective_cpus);
Paul Jackson029190c2007-10-18 23:40:20 -0700534}
535
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900536static void
537update_domain_attr(struct sched_domain_attr *dattr, struct cpuset *c)
538{
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900539 if (dattr->relax_domain_level < c->relax_domain_level)
540 dattr->relax_domain_level = c->relax_domain_level;
541 return;
542}
543
Tejun Heofc560a22013-01-07 08:51:08 -0800544static void update_domain_attr_tree(struct sched_domain_attr *dattr,
545 struct cpuset *root_cs)
Lai Jiangshanf5393692008-07-29 22:33:22 -0700546{
Tejun Heofc560a22013-01-07 08:51:08 -0800547 struct cpuset *cp;
Tejun Heo492eb212013-08-08 20:11:25 -0400548 struct cgroup_subsys_state *pos_css;
Lai Jiangshanf5393692008-07-29 22:33:22 -0700549
Tejun Heofc560a22013-01-07 08:51:08 -0800550 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -0400551 cpuset_for_each_descendant_pre(cp, pos_css, root_cs) {
Tejun Heofc560a22013-01-07 08:51:08 -0800552 /* skip the whole subtree if @cp doesn't have any CPU */
553 if (cpumask_empty(cp->cpus_allowed)) {
Tejun Heo492eb212013-08-08 20:11:25 -0400554 pos_css = css_rightmost_descendant(pos_css);
Lai Jiangshanf5393692008-07-29 22:33:22 -0700555 continue;
Tejun Heofc560a22013-01-07 08:51:08 -0800556 }
Lai Jiangshanf5393692008-07-29 22:33:22 -0700557
558 if (is_sched_load_balance(cp))
559 update_domain_attr(dattr, cp);
Lai Jiangshanf5393692008-07-29 22:33:22 -0700560 }
Tejun Heofc560a22013-01-07 08:51:08 -0800561 rcu_read_unlock();
Lai Jiangshanf5393692008-07-29 22:33:22 -0700562}
563
Paul Jackson029190c2007-10-18 23:40:20 -0700564/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700565 * generate_sched_domains()
Paul Jackson029190c2007-10-18 23:40:20 -0700566 *
Max Krasnyanskycf417142008-08-11 14:33:53 -0700567 * This function builds a partial partition of the systems CPUs
568 * A 'partial partition' is a set of non-overlapping subsets whose
569 * union is a subset of that set.
Viresh Kumar0a0fca92013-06-04 13:10:24 +0530570 * The output of this function needs to be passed to kernel/sched/core.c
Max Krasnyanskycf417142008-08-11 14:33:53 -0700571 * partition_sched_domains() routine, which will rebuild the scheduler's
572 * load balancing domains (sched domains) as specified by that partial
573 * partition.
Paul Jackson029190c2007-10-18 23:40:20 -0700574 *
Li Zefan45ce80f2009-01-15 13:50:59 -0800575 * See "What is sched_load_balance" in Documentation/cgroups/cpusets.txt
Paul Jackson029190c2007-10-18 23:40:20 -0700576 * for a background explanation of this.
577 *
578 * Does not return errors, on the theory that the callers of this
579 * routine would rather not worry about failures to rebuild sched
580 * domains when operating in the severe memory shortage situations
581 * that could cause allocation failures below.
582 *
Tejun Heo5d21cc22013-01-07 08:51:08 -0800583 * Must be called with cpuset_mutex held.
Paul Jackson029190c2007-10-18 23:40:20 -0700584 *
585 * The three key local variables below are:
Li Zefanaeed6822008-07-29 22:33:24 -0700586 * q - a linked-list queue of cpuset pointers, used to implement a
Paul Jackson029190c2007-10-18 23:40:20 -0700587 * top-down scan of all cpusets. This scan loads a pointer
588 * to each cpuset marked is_sched_load_balance into the
589 * array 'csa'. For our purposes, rebuilding the schedulers
590 * sched domains, we can ignore !is_sched_load_balance cpusets.
591 * csa - (for CpuSet Array) Array of pointers to all the cpusets
592 * that need to be load balanced, for convenient iterative
593 * access by the subsequent code that finds the best partition,
594 * i.e the set of domains (subsets) of CPUs such that the
595 * cpus_allowed of every cpuset marked is_sched_load_balance
596 * is a subset of one of these domains, while there are as
597 * many such domains as possible, each as small as possible.
598 * doms - Conversion of 'csa' to an array of cpumasks, for passing to
Viresh Kumar0a0fca92013-06-04 13:10:24 +0530599 * the kernel/sched/core.c routine partition_sched_domains() in a
Paul Jackson029190c2007-10-18 23:40:20 -0700600 * convenient format, that can be easily compared to the prior
601 * value to determine what partition elements (sched domains)
602 * were changed (added or removed.)
603 *
604 * Finding the best partition (set of domains):
605 * The triple nested loops below over i, j, k scan over the
606 * load balanced cpusets (using the array of cpuset pointers in
607 * csa[]) looking for pairs of cpusets that have overlapping
608 * cpus_allowed, but which don't have the same 'pn' partition
609 * number and gives them in the same partition number. It keeps
610 * looping on the 'restart' label until it can no longer find
611 * any such pairs.
612 *
613 * The union of the cpus_allowed masks from the set of
614 * all cpusets having the same 'pn' value then form the one
615 * element of the partition (one sched domain) to be passed to
616 * partition_sched_domains().
617 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030618static int generate_sched_domains(cpumask_var_t **domains,
Max Krasnyanskycf417142008-08-11 14:33:53 -0700619 struct sched_domain_attr **attributes)
Paul Jackson029190c2007-10-18 23:40:20 -0700620{
Paul Jackson029190c2007-10-18 23:40:20 -0700621 struct cpuset *cp; /* scans q */
622 struct cpuset **csa; /* array of all cpuset ptrs */
623 int csn; /* how many cpuset ptrs in csa so far */
624 int i, j, k; /* indices for partition finding loops */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030625 cpumask_var_t *doms; /* resulting partition; i.e. sched domains */
Rik van Riel47b8ea72015-03-09 12:12:08 -0400626 cpumask_var_t non_isolated_cpus; /* load balanced CPUs */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900627 struct sched_domain_attr *dattr; /* attributes for custom domains */
Ingo Molnar15837152008-11-25 10:27:49 +0100628 int ndoms = 0; /* number of sched domains in result */
Li Zefan6af866a2009-01-07 18:08:45 -0800629 int nslot; /* next empty doms[] struct cpumask slot */
Tejun Heo492eb212013-08-08 20:11:25 -0400630 struct cgroup_subsys_state *pos_css;
Paul Jackson029190c2007-10-18 23:40:20 -0700631
Paul Jackson029190c2007-10-18 23:40:20 -0700632 doms = NULL;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900633 dattr = NULL;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700634 csa = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -0700635
Rik van Riel47b8ea72015-03-09 12:12:08 -0400636 if (!alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL))
637 goto done;
638 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
639
Paul Jackson029190c2007-10-18 23:40:20 -0700640 /* Special case for the 99% of systems with one, full, sched domain */
641 if (is_sched_load_balance(&top_cpuset)) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030642 ndoms = 1;
643 doms = alloc_sched_domains(ndoms);
Paul Jackson029190c2007-10-18 23:40:20 -0700644 if (!doms)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700645 goto done;
646
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900647 dattr = kmalloc(sizeof(struct sched_domain_attr), GFP_KERNEL);
648 if (dattr) {
649 *dattr = SD_ATTR_INIT;
Li Zefan93a65572008-07-29 22:33:23 -0700650 update_domain_attr_tree(dattr, &top_cpuset);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900651 }
Rik van Riel47b8ea72015-03-09 12:12:08 -0400652 cpumask_and(doms[0], top_cpuset.effective_cpus,
653 non_isolated_cpus);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700654
Max Krasnyanskycf417142008-08-11 14:33:53 -0700655 goto done;
Paul Jackson029190c2007-10-18 23:40:20 -0700656 }
657
Mel Gorman664eedd2014-06-04 16:10:08 -0700658 csa = kmalloc(nr_cpusets() * sizeof(cp), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -0700659 if (!csa)
660 goto done;
661 csn = 0;
662
Tejun Heofc560a22013-01-07 08:51:08 -0800663 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -0400664 cpuset_for_each_descendant_pre(cp, pos_css, &top_cpuset) {
Tejun Heobd8815a2013-08-08 20:11:27 -0400665 if (cp == &top_cpuset)
666 continue;
Lai Jiangshanf5393692008-07-29 22:33:22 -0700667 /*
Tejun Heofc560a22013-01-07 08:51:08 -0800668 * Continue traversing beyond @cp iff @cp has some CPUs and
669 * isn't load balancing. The former is obvious. The
670 * latter: All child cpusets contain a subset of the
671 * parent's cpus, so just skip them, and then we call
672 * update_domain_attr_tree() to calc relax_domain_level of
673 * the corresponding sched domain.
Lai Jiangshanf5393692008-07-29 22:33:22 -0700674 */
Tejun Heofc560a22013-01-07 08:51:08 -0800675 if (!cpumask_empty(cp->cpus_allowed) &&
Rik van Riel47b8ea72015-03-09 12:12:08 -0400676 !(is_sched_load_balance(cp) &&
677 cpumask_intersects(cp->cpus_allowed, non_isolated_cpus)))
Lai Jiangshanf5393692008-07-29 22:33:22 -0700678 continue;
Lai Jiangshan489a5392008-07-25 01:47:23 -0700679
Tejun Heofc560a22013-01-07 08:51:08 -0800680 if (is_sched_load_balance(cp))
681 csa[csn++] = cp;
682
683 /* skip @cp's subtree */
Tejun Heo492eb212013-08-08 20:11:25 -0400684 pos_css = css_rightmost_descendant(pos_css);
Tejun Heofc560a22013-01-07 08:51:08 -0800685 }
686 rcu_read_unlock();
Paul Jackson029190c2007-10-18 23:40:20 -0700687
688 for (i = 0; i < csn; i++)
689 csa[i]->pn = i;
690 ndoms = csn;
691
692restart:
693 /* Find the best partition (set of sched domains) */
694 for (i = 0; i < csn; i++) {
695 struct cpuset *a = csa[i];
696 int apn = a->pn;
697
698 for (j = 0; j < csn; j++) {
699 struct cpuset *b = csa[j];
700 int bpn = b->pn;
701
702 if (apn != bpn && cpusets_overlap(a, b)) {
703 for (k = 0; k < csn; k++) {
704 struct cpuset *c = csa[k];
705
706 if (c->pn == bpn)
707 c->pn = apn;
708 }
709 ndoms--; /* one less element */
710 goto restart;
711 }
712 }
713 }
714
Max Krasnyanskycf417142008-08-11 14:33:53 -0700715 /*
716 * Now we know how many domains to create.
717 * Convert <csn, csa> to <ndoms, doms> and populate cpu masks.
718 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030719 doms = alloc_sched_domains(ndoms);
Li Zefan700018e2008-11-18 14:02:03 +0800720 if (!doms)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700721 goto done;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700722
723 /*
724 * The rest of the code, including the scheduler, can deal with
725 * dattr==NULL case. No need to abort if alloc fails.
726 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900727 dattr = kmalloc(ndoms * sizeof(struct sched_domain_attr), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -0700728
729 for (nslot = 0, i = 0; i < csn; i++) {
730 struct cpuset *a = csa[i];
Li Zefan6af866a2009-01-07 18:08:45 -0800731 struct cpumask *dp;
Paul Jackson029190c2007-10-18 23:40:20 -0700732 int apn = a->pn;
733
Max Krasnyanskycf417142008-08-11 14:33:53 -0700734 if (apn < 0) {
735 /* Skip completed partitions */
736 continue;
Paul Jackson029190c2007-10-18 23:40:20 -0700737 }
Max Krasnyanskycf417142008-08-11 14:33:53 -0700738
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030739 dp = doms[nslot];
Max Krasnyanskycf417142008-08-11 14:33:53 -0700740
741 if (nslot == ndoms) {
742 static int warnings = 10;
743 if (warnings) {
Fabian Frederick12d30892014-05-05 19:49:00 +0200744 pr_warn("rebuild_sched_domains confused: nslot %d, ndoms %d, csn %d, i %d, apn %d\n",
745 nslot, ndoms, csn, i, apn);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700746 warnings--;
747 }
748 continue;
749 }
750
Li Zefan6af866a2009-01-07 18:08:45 -0800751 cpumask_clear(dp);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700752 if (dattr)
753 *(dattr + nslot) = SD_ATTR_INIT;
754 for (j = i; j < csn; j++) {
755 struct cpuset *b = csa[j];
756
757 if (apn == b->pn) {
Li Zefan8b5f1c52014-07-09 16:47:50 +0800758 cpumask_or(dp, dp, b->effective_cpus);
Rik van Riel47b8ea72015-03-09 12:12:08 -0400759 cpumask_and(dp, dp, non_isolated_cpus);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700760 if (dattr)
761 update_domain_attr_tree(dattr + nslot, b);
762
763 /* Done with this partition */
764 b->pn = -1;
765 }
766 }
767 nslot++;
Paul Jackson029190c2007-10-18 23:40:20 -0700768 }
769 BUG_ON(nslot != ndoms);
770
Paul Jackson029190c2007-10-18 23:40:20 -0700771done:
Rik van Riel47b8ea72015-03-09 12:12:08 -0400772 free_cpumask_var(non_isolated_cpus);
Paul Jackson029190c2007-10-18 23:40:20 -0700773 kfree(csa);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700774
Li Zefan700018e2008-11-18 14:02:03 +0800775 /*
776 * Fallback to the default domain if kmalloc() failed.
777 * See comments in partition_sched_domains().
778 */
779 if (doms == NULL)
780 ndoms = 1;
781
Max Krasnyanskycf417142008-08-11 14:33:53 -0700782 *domains = doms;
783 *attributes = dattr;
784 return ndoms;
785}
786
787/*
788 * Rebuild scheduler domains.
789 *
Tejun Heo699140b2013-01-07 08:51:07 -0800790 * If the flag 'sched_load_balance' of any cpuset with non-empty
791 * 'cpus' changes, or if the 'cpus' allowed changes in any cpuset
792 * which has that flag enabled, or if any cpuset with a non-empty
793 * 'cpus' is removed, then call this routine to rebuild the
794 * scheduler's dynamic sched domains.
Max Krasnyanskycf417142008-08-11 14:33:53 -0700795 *
Tejun Heo5d21cc22013-01-07 08:51:08 -0800796 * Call with cpuset_mutex held. Takes get_online_cpus().
Max Krasnyanskycf417142008-08-11 14:33:53 -0700797 */
Tejun Heo699140b2013-01-07 08:51:07 -0800798static void rebuild_sched_domains_locked(void)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700799{
800 struct sched_domain_attr *attr;
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030801 cpumask_var_t *doms;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700802 int ndoms;
803
Tejun Heo5d21cc22013-01-07 08:51:08 -0800804 lockdep_assert_held(&cpuset_mutex);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700805 get_online_cpus();
806
Li Zefan5b16c2a2013-04-27 06:52:43 -0700807 /*
808 * We have raced with CPU hotplug. Don't do anything to avoid
809 * passing doms with offlined cpu to partition_sched_domains().
810 * Anyways, hotplug work item will rebuild sched domains.
811 */
Li Zefan8b5f1c52014-07-09 16:47:50 +0800812 if (!cpumask_equal(top_cpuset.effective_cpus, cpu_active_mask))
Li Zefan5b16c2a2013-04-27 06:52:43 -0700813 goto out;
814
Max Krasnyanskycf417142008-08-11 14:33:53 -0700815 /* Generate domain masks and attrs */
Max Krasnyanskycf417142008-08-11 14:33:53 -0700816 ndoms = generate_sched_domains(&doms, &attr);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700817
818 /* Have scheduler rebuild the domains */
819 partition_sched_domains(ndoms, doms, attr);
Li Zefan5b16c2a2013-04-27 06:52:43 -0700820out:
Max Krasnyanskycf417142008-08-11 14:33:53 -0700821 put_online_cpus();
822}
Paul Menagedb7f47c2009-04-02 16:57:55 -0700823#else /* !CONFIG_SMP */
Tejun Heo699140b2013-01-07 08:51:07 -0800824static void rebuild_sched_domains_locked(void)
Paul Menagedb7f47c2009-04-02 16:57:55 -0700825{
826}
Paul Menagedb7f47c2009-04-02 16:57:55 -0700827#endif /* CONFIG_SMP */
Max Krasnyanskycf417142008-08-11 14:33:53 -0700828
Max Krasnyanskycf417142008-08-11 14:33:53 -0700829void rebuild_sched_domains(void)
830{
Tejun Heo5d21cc22013-01-07 08:51:08 -0800831 mutex_lock(&cpuset_mutex);
Tejun Heo699140b2013-01-07 08:51:07 -0800832 rebuild_sched_domains_locked();
Tejun Heo5d21cc22013-01-07 08:51:08 -0800833 mutex_unlock(&cpuset_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -0700834}
835
Cliff Wickman58f47902008-02-07 00:14:44 -0800836/**
Miao Xie0b2f6302008-07-25 01:47:21 -0700837 * update_tasks_cpumask - Update the cpumasks of tasks in the cpuset.
838 * @cs: the cpuset in which each task's cpus_allowed mask needs to be changed
839 *
Tejun Heod66393e2014-02-13 06:58:40 -0500840 * Iterate through each task of @cs updating its cpus_allowed to the
841 * effective cpuset's. As this function is called with cpuset_mutex held,
842 * cpuset membership stays stable.
Miao Xie0b2f6302008-07-25 01:47:21 -0700843 */
Tejun Heod66393e2014-02-13 06:58:40 -0500844static void update_tasks_cpumask(struct cpuset *cs)
Miao Xie0b2f6302008-07-25 01:47:21 -0700845{
Tejun Heod66393e2014-02-13 06:58:40 -0500846 struct css_task_iter it;
847 struct task_struct *task;
848
849 css_task_iter_start(&cs->css, &it);
850 while ((task = css_task_iter_next(&it)))
Li Zefanae1c8022014-07-09 16:48:32 +0800851 set_cpus_allowed_ptr(task, cs->effective_cpus);
Tejun Heod66393e2014-02-13 06:58:40 -0500852 css_task_iter_end(&it);
Miao Xie0b2f6302008-07-25 01:47:21 -0700853}
854
Li Zefan5c5cc622013-06-09 17:16:29 +0800855/*
Li Zefan734d4512014-07-09 16:47:29 +0800856 * update_cpumasks_hier - Update effective cpumasks and tasks in the subtree
857 * @cs: the cpuset to consider
858 * @new_cpus: temp variable for calculating new effective_cpus
Li Zefan5c5cc622013-06-09 17:16:29 +0800859 *
Li Zefan734d4512014-07-09 16:47:29 +0800860 * When congifured cpumask is changed, the effective cpumasks of this cpuset
861 * and all its descendants need to be updated.
862 *
863 * On legacy hierachy, effective_cpus will be the same with cpu_allowed.
Li Zefan5c5cc622013-06-09 17:16:29 +0800864 *
865 * Called with cpuset_mutex held
866 */
Li Zefan734d4512014-07-09 16:47:29 +0800867static void update_cpumasks_hier(struct cpuset *cs, struct cpumask *new_cpus)
Li Zefan5c5cc622013-06-09 17:16:29 +0800868{
869 struct cpuset *cp;
Tejun Heo492eb212013-08-08 20:11:25 -0400870 struct cgroup_subsys_state *pos_css;
Li Zefan8b5f1c52014-07-09 16:47:50 +0800871 bool need_rebuild_sched_domains = false;
Li Zefan5c5cc622013-06-09 17:16:29 +0800872
873 rcu_read_lock();
Li Zefan734d4512014-07-09 16:47:29 +0800874 cpuset_for_each_descendant_pre(cp, pos_css, cs) {
875 struct cpuset *parent = parent_cs(cp);
876
877 cpumask_and(new_cpus, cp->cpus_allowed, parent->effective_cpus);
878
Li Zefan554b0d12014-07-09 16:47:41 +0800879 /*
880 * If it becomes empty, inherit the effective mask of the
881 * parent, which is guaranteed to have some CPUs.
882 */
Tejun Heo9e10a132015-09-18 11:56:28 -0400883 if (cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
884 cpumask_empty(new_cpus))
Li Zefan554b0d12014-07-09 16:47:41 +0800885 cpumask_copy(new_cpus, parent->effective_cpus);
886
Li Zefan734d4512014-07-09 16:47:29 +0800887 /* Skip the whole subtree if the cpumask remains the same. */
888 if (cpumask_equal(new_cpus, cp->effective_cpus)) {
889 pos_css = css_rightmost_descendant(pos_css);
890 continue;
Li Zefan5c5cc622013-06-09 17:16:29 +0800891 }
Li Zefan734d4512014-07-09 16:47:29 +0800892
Tejun Heoec903c02014-05-13 12:11:01 -0400893 if (!css_tryget_online(&cp->css))
Li Zefan5c5cc622013-06-09 17:16:29 +0800894 continue;
895 rcu_read_unlock();
896
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400897 spin_lock_irq(&callback_lock);
Li Zefan734d4512014-07-09 16:47:29 +0800898 cpumask_copy(cp->effective_cpus, new_cpus);
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400899 spin_unlock_irq(&callback_lock);
Li Zefan734d4512014-07-09 16:47:29 +0800900
Tejun Heo9e10a132015-09-18 11:56:28 -0400901 WARN_ON(!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
Li Zefan734d4512014-07-09 16:47:29 +0800902 !cpumask_equal(cp->cpus_allowed, cp->effective_cpus));
903
Tejun Heod66393e2014-02-13 06:58:40 -0500904 update_tasks_cpumask(cp);
Li Zefan5c5cc622013-06-09 17:16:29 +0800905
Li Zefan8b5f1c52014-07-09 16:47:50 +0800906 /*
907 * If the effective cpumask of any non-empty cpuset is changed,
908 * we need to rebuild sched domains.
909 */
910 if (!cpumask_empty(cp->cpus_allowed) &&
911 is_sched_load_balance(cp))
912 need_rebuild_sched_domains = true;
913
Li Zefan5c5cc622013-06-09 17:16:29 +0800914 rcu_read_lock();
915 css_put(&cp->css);
916 }
917 rcu_read_unlock();
Li Zefan8b5f1c52014-07-09 16:47:50 +0800918
919 if (need_rebuild_sched_domains)
920 rebuild_sched_domains_locked();
Li Zefan5c5cc622013-06-09 17:16:29 +0800921}
922
Miao Xie0b2f6302008-07-25 01:47:21 -0700923/**
Cliff Wickman58f47902008-02-07 00:14:44 -0800924 * update_cpumask - update the cpus_allowed mask of a cpuset and all tasks in it
925 * @cs: the cpuset to consider
Fabian Frederickfc34ac12014-05-05 19:46:55 +0200926 * @trialcs: trial cpuset
Cliff Wickman58f47902008-02-07 00:14:44 -0800927 * @buf: buffer of cpu numbers written to this cpuset
928 */
Li Zefan645fcc92009-01-07 18:08:43 -0800929static int update_cpumask(struct cpuset *cs, struct cpuset *trialcs,
930 const char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Cliff Wickman58f47902008-02-07 00:14:44 -0800932 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Rusty Russell5f054e32012-03-29 15:38:31 +1030934 /* top_cpuset.cpus_allowed tracks cpu_online_mask; it's read-only */
Paul Jackson4c4d50f2006-08-27 01:23:51 -0700935 if (cs == &top_cpuset)
936 return -EACCES;
937
David Rientjes6f7f02e2007-05-08 00:31:43 -0700938 /*
Paul Jacksonc8d9c902008-02-07 00:14:46 -0800939 * An empty cpus_allowed is ok only if the cpuset has no tasks.
Paul Jackson020958b2007-10-18 23:40:21 -0700940 * Since cpulist_parse() fails on an empty mask, we special case
941 * that parsing. The validate_change() call ensures that cpusets
942 * with tasks have cpus.
David Rientjes6f7f02e2007-05-08 00:31:43 -0700943 */
Paul Jackson020958b2007-10-18 23:40:21 -0700944 if (!*buf) {
Li Zefan300ed6c2009-01-07 18:08:44 -0800945 cpumask_clear(trialcs->cpus_allowed);
David Rientjes6f7f02e2007-05-08 00:31:43 -0700946 } else {
Li Zefan300ed6c2009-01-07 18:08:44 -0800947 retval = cpulist_parse(buf, trialcs->cpus_allowed);
David Rientjes6f7f02e2007-05-08 00:31:43 -0700948 if (retval < 0)
949 return retval;
Lai Jiangshan37340742008-06-05 22:46:32 -0700950
Li Zefan5d8ba822014-07-09 16:49:12 +0800951 if (!cpumask_subset(trialcs->cpus_allowed,
952 top_cpuset.cpus_allowed))
Lai Jiangshan37340742008-06-05 22:46:32 -0700953 return -EINVAL;
David Rientjes6f7f02e2007-05-08 00:31:43 -0700954 }
Paul Jackson029190c2007-10-18 23:40:20 -0700955
Paul Menage8707d8b2007-10-18 23:40:22 -0700956 /* Nothing to do if the cpus didn't change */
Li Zefan300ed6c2009-01-07 18:08:44 -0800957 if (cpumask_equal(cs->cpus_allowed, trialcs->cpus_allowed))
Paul Menage8707d8b2007-10-18 23:40:22 -0700958 return 0;
Cliff Wickman58f47902008-02-07 00:14:44 -0800959
Li Zefana73456f2013-06-05 17:15:59 +0800960 retval = validate_change(cs, trialcs);
961 if (retval < 0)
962 return retval;
963
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400964 spin_lock_irq(&callback_lock);
Li Zefan300ed6c2009-01-07 18:08:44 -0800965 cpumask_copy(cs->cpus_allowed, trialcs->cpus_allowed);
Vladimir Davydov8447a0f2014-10-20 15:50:29 +0400966 spin_unlock_irq(&callback_lock);
Paul Jackson029190c2007-10-18 23:40:20 -0700967
Li Zefan734d4512014-07-09 16:47:29 +0800968 /* use trialcs->cpus_allowed as a temp variable */
969 update_cpumasks_hier(cs, trialcs->cpus_allowed);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -0700970 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Paul Jackson053199e2005-10-30 15:02:30 -0800973/*
Paul Jacksone4e364e2006-03-31 02:30:52 -0800974 * cpuset_migrate_mm
975 *
976 * Migrate memory region from one set of nodes to another.
977 *
978 * Temporarilly set tasks mems_allowed to target nodes of migration,
979 * so that the migration code can allocate pages on these nodes.
980 *
Paul Jacksone4e364e2006-03-31 02:30:52 -0800981 * While the mm_struct we are migrating is typically from some
982 * other task, the task_struct mems_allowed that we are hacking
983 * is for our current task, which must allocate new pages for that
984 * migrating memory region.
Paul Jacksone4e364e2006-03-31 02:30:52 -0800985 */
986
987static void cpuset_migrate_mm(struct mm_struct *mm, const nodemask_t *from,
988 const nodemask_t *to)
989{
990 struct task_struct *tsk = current;
991
Paul Jacksone4e364e2006-03-31 02:30:52 -0800992 tsk->mems_allowed = *to;
Paul Jacksone4e364e2006-03-31 02:30:52 -0800993
994 do_migrate_pages(mm, from, to, MPOL_MF_MOVE_ALL);
995
Li Zefan47295832014-02-27 18:19:03 +0800996 rcu_read_lock();
Li Zefanae1c8022014-07-09 16:48:32 +0800997 guarantee_online_mems(task_cs(tsk), &tsk->mems_allowed);
Li Zefan47295832014-02-27 18:19:03 +0800998 rcu_read_unlock();
Paul Jacksone4e364e2006-03-31 02:30:52 -0800999}
1000
Li Zefan3b6766f2009-04-02 16:57:51 -07001001/*
Miao Xie58568d22009-06-16 15:31:49 -07001002 * cpuset_change_task_nodemask - change task's mems_allowed and mempolicy
1003 * @tsk: the task to change
1004 * @newmems: new nodes that the task will be set
1005 *
1006 * In order to avoid seeing no nodes if the old and new nodes are disjoint,
1007 * we structure updates as setting all new allowed nodes, then clearing newly
1008 * disallowed ones.
Miao Xie58568d22009-06-16 15:31:49 -07001009 */
1010static void cpuset_change_task_nodemask(struct task_struct *tsk,
1011 nodemask_t *newmems)
1012{
David Rientjesb2462722011-12-19 17:11:52 -08001013 bool need_loop;
David Rientjes89e8a242011-11-02 13:38:39 -07001014
Miao Xiec0ff7452010-05-24 14:32:08 -07001015 /*
1016 * Allow tasks that have access to memory reserves because they have
1017 * been OOM killed to get memory anywhere.
1018 */
1019 if (unlikely(test_thread_flag(TIF_MEMDIE)))
1020 return;
1021 if (current->flags & PF_EXITING) /* Let dying task have memory */
1022 return;
1023
1024 task_lock(tsk);
David Rientjesb2462722011-12-19 17:11:52 -08001025 /*
1026 * Determine if a loop is necessary if another thread is doing
Mel Gormand26914d2014-04-03 14:47:24 -07001027 * read_mems_allowed_begin(). If at least one node remains unchanged and
David Rientjesb2462722011-12-19 17:11:52 -08001028 * tsk does not have a mempolicy, then an empty nodemask will not be
1029 * possible when mems_allowed is larger than a word.
1030 */
1031 need_loop = task_has_mempolicy(tsk) ||
1032 !nodes_intersects(*newmems, tsk->mems_allowed);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001033
Peter Zijlstra0fc02872013-11-26 15:03:41 +01001034 if (need_loop) {
1035 local_irq_disable();
Mel Gormancc9a6c82012-03-21 16:34:11 -07001036 write_seqcount_begin(&tsk->mems_allowed_seq);
Peter Zijlstra0fc02872013-11-26 15:03:41 +01001037 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07001038
Miao Xie58568d22009-06-16 15:31:49 -07001039 nodes_or(tsk->mems_allowed, tsk->mems_allowed, *newmems);
Miao Xiec0ff7452010-05-24 14:32:08 -07001040 mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP1);
1041
Miao Xiec0ff7452010-05-24 14:32:08 -07001042 mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP2);
Miao Xie58568d22009-06-16 15:31:49 -07001043 tsk->mems_allowed = *newmems;
Mel Gormancc9a6c82012-03-21 16:34:11 -07001044
Peter Zijlstra0fc02872013-11-26 15:03:41 +01001045 if (need_loop) {
Mel Gormancc9a6c82012-03-21 16:34:11 -07001046 write_seqcount_end(&tsk->mems_allowed_seq);
Peter Zijlstra0fc02872013-11-26 15:03:41 +01001047 local_irq_enable();
1048 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07001049
Miao Xiec0ff7452010-05-24 14:32:08 -07001050 task_unlock(tsk);
Miao Xie58568d22009-06-16 15:31:49 -07001051}
1052
Paul Menage8793d852007-10-18 23:39:39 -07001053static void *cpuset_being_rebound;
1054
Miao Xie0b2f6302008-07-25 01:47:21 -07001055/**
1056 * update_tasks_nodemask - Update the nodemasks of tasks in the cpuset.
1057 * @cs: the cpuset in which each task's mems_allowed mask needs to be changed
Miao Xie0b2f6302008-07-25 01:47:21 -07001058 *
Tejun Heod66393e2014-02-13 06:58:40 -05001059 * Iterate through each task of @cs updating its mems_allowed to the
1060 * effective cpuset's. As this function is called with cpuset_mutex held,
1061 * cpuset membership stays stable.
Miao Xie0b2f6302008-07-25 01:47:21 -07001062 */
Tejun Heod66393e2014-02-13 06:58:40 -05001063static void update_tasks_nodemask(struct cpuset *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Li Zefan33ad8012013-06-09 17:15:08 +08001065 static nodemask_t newmems; /* protected by cpuset_mutex */
Tejun Heod66393e2014-02-13 06:58:40 -05001066 struct css_task_iter it;
1067 struct task_struct *task;
Paul Jackson59dac162006-01-08 01:01:52 -08001068
Lee Schermerhorn846a16b2008-04-28 02:13:09 -07001069 cpuset_being_rebound = cs; /* causes mpol_dup() rebind */
Paul Jackson42253992006-01-08 01:01:59 -08001070
Li Zefanae1c8022014-07-09 16:48:32 +08001071 guarantee_online_mems(cs, &newmems);
Li Zefan33ad8012013-06-09 17:15:08 +08001072
Paul Jackson42253992006-01-08 01:01:59 -08001073 /*
Li Zefan3b6766f2009-04-02 16:57:51 -07001074 * The mpol_rebind_mm() call takes mmap_sem, which we couldn't
1075 * take while holding tasklist_lock. Forks can happen - the
1076 * mpol_dup() cpuset_being_rebound check will catch such forks,
1077 * and rebind their vma mempolicies too. Because we still hold
Tejun Heo5d21cc22013-01-07 08:51:08 -08001078 * the global cpuset_mutex, we know that no other rebind effort
Li Zefan3b6766f2009-04-02 16:57:51 -07001079 * will be contending for the global variable cpuset_being_rebound.
Paul Jackson42253992006-01-08 01:01:59 -08001080 * It's ok if we rebind the same mm twice; mpol_rebind_mm()
Paul Jackson04c19fa2006-01-08 01:02:00 -08001081 * is idempotent. Also migrate pages in each mm to new nodes.
Paul Jackson42253992006-01-08 01:01:59 -08001082 */
Tejun Heod66393e2014-02-13 06:58:40 -05001083 css_task_iter_start(&cs->css, &it);
1084 while ((task = css_task_iter_next(&it))) {
1085 struct mm_struct *mm;
1086 bool migrate;
1087
1088 cpuset_change_task_nodemask(task, &newmems);
1089
1090 mm = get_task_mm(task);
1091 if (!mm)
1092 continue;
1093
1094 migrate = is_memory_migrate(cs);
1095
1096 mpol_rebind_mm(mm, &cs->mems_allowed);
1097 if (migrate)
1098 cpuset_migrate_mm(mm, &cs->old_mems_allowed, &newmems);
1099 mmput(mm);
1100 }
1101 css_task_iter_end(&it);
Paul Jackson42253992006-01-08 01:01:59 -08001102
Li Zefan33ad8012013-06-09 17:15:08 +08001103 /*
1104 * All the tasks' nodemasks have been updated, update
1105 * cs->old_mems_allowed.
1106 */
1107 cs->old_mems_allowed = newmems;
1108
Paul Menage2df167a2008-02-07 00:14:45 -08001109 /* We're done rebinding vmas to this cpuset's new mems_allowed. */
Paul Menage8793d852007-10-18 23:39:39 -07001110 cpuset_being_rebound = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Miao Xie0b2f6302008-07-25 01:47:21 -07001113/*
Li Zefan734d4512014-07-09 16:47:29 +08001114 * update_nodemasks_hier - Update effective nodemasks and tasks in the subtree
1115 * @cs: the cpuset to consider
1116 * @new_mems: a temp variable for calculating new effective_mems
Li Zefan5c5cc622013-06-09 17:16:29 +08001117 *
Li Zefan734d4512014-07-09 16:47:29 +08001118 * When configured nodemask is changed, the effective nodemasks of this cpuset
1119 * and all its descendants need to be updated.
1120 *
1121 * On legacy hiearchy, effective_mems will be the same with mems_allowed.
Li Zefan5c5cc622013-06-09 17:16:29 +08001122 *
1123 * Called with cpuset_mutex held
1124 */
Li Zefan734d4512014-07-09 16:47:29 +08001125static void update_nodemasks_hier(struct cpuset *cs, nodemask_t *new_mems)
Li Zefan5c5cc622013-06-09 17:16:29 +08001126{
1127 struct cpuset *cp;
Tejun Heo492eb212013-08-08 20:11:25 -04001128 struct cgroup_subsys_state *pos_css;
Li Zefan5c5cc622013-06-09 17:16:29 +08001129
1130 rcu_read_lock();
Li Zefan734d4512014-07-09 16:47:29 +08001131 cpuset_for_each_descendant_pre(cp, pos_css, cs) {
1132 struct cpuset *parent = parent_cs(cp);
1133
1134 nodes_and(*new_mems, cp->mems_allowed, parent->effective_mems);
1135
Li Zefan554b0d12014-07-09 16:47:41 +08001136 /*
1137 * If it becomes empty, inherit the effective mask of the
1138 * parent, which is guaranteed to have some MEMs.
1139 */
Tejun Heo9e10a132015-09-18 11:56:28 -04001140 if (cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
1141 nodes_empty(*new_mems))
Li Zefan554b0d12014-07-09 16:47:41 +08001142 *new_mems = parent->effective_mems;
1143
Li Zefan734d4512014-07-09 16:47:29 +08001144 /* Skip the whole subtree if the nodemask remains the same. */
1145 if (nodes_equal(*new_mems, cp->effective_mems)) {
1146 pos_css = css_rightmost_descendant(pos_css);
1147 continue;
Li Zefan5c5cc622013-06-09 17:16:29 +08001148 }
Li Zefan734d4512014-07-09 16:47:29 +08001149
Tejun Heoec903c02014-05-13 12:11:01 -04001150 if (!css_tryget_online(&cp->css))
Li Zefan5c5cc622013-06-09 17:16:29 +08001151 continue;
1152 rcu_read_unlock();
1153
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001154 spin_lock_irq(&callback_lock);
Li Zefan734d4512014-07-09 16:47:29 +08001155 cp->effective_mems = *new_mems;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001156 spin_unlock_irq(&callback_lock);
Li Zefan734d4512014-07-09 16:47:29 +08001157
Tejun Heo9e10a132015-09-18 11:56:28 -04001158 WARN_ON(!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
Li Zefana1381262014-07-30 15:07:13 +08001159 !nodes_equal(cp->mems_allowed, cp->effective_mems));
Li Zefan734d4512014-07-09 16:47:29 +08001160
Tejun Heod66393e2014-02-13 06:58:40 -05001161 update_tasks_nodemask(cp);
Li Zefan5c5cc622013-06-09 17:16:29 +08001162
1163 rcu_read_lock();
1164 css_put(&cp->css);
1165 }
1166 rcu_read_unlock();
1167}
1168
1169/*
Miao Xie0b2f6302008-07-25 01:47:21 -07001170 * Handle user request to change the 'mems' memory placement
1171 * of a cpuset. Needs to validate the request, update the
Miao Xie58568d22009-06-16 15:31:49 -07001172 * cpusets mems_allowed, and for each task in the cpuset,
1173 * update mems_allowed and rebind task's mempolicy and any vma
1174 * mempolicies and if the cpuset is marked 'memory_migrate',
1175 * migrate the tasks pages to the new memory.
Miao Xie0b2f6302008-07-25 01:47:21 -07001176 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001177 * Call with cpuset_mutex held. May take callback_lock during call.
Miao Xie0b2f6302008-07-25 01:47:21 -07001178 * Will take tasklist_lock, scan tasklist for tasks in cpuset cs,
1179 * lock each such tasks mm->mmap_sem, scan its vma's and rebind
1180 * their mempolicies to the cpusets new mems_allowed.
1181 */
Li Zefan645fcc92009-01-07 18:08:43 -08001182static int update_nodemask(struct cpuset *cs, struct cpuset *trialcs,
1183 const char *buf)
Miao Xie0b2f6302008-07-25 01:47:21 -07001184{
Miao Xie0b2f6302008-07-25 01:47:21 -07001185 int retval;
1186
1187 /*
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08001188 * top_cpuset.mems_allowed tracks node_stats[N_MEMORY];
Miao Xie0b2f6302008-07-25 01:47:21 -07001189 * it's read-only
1190 */
Miao Xie53feb292010-03-23 13:35:35 -07001191 if (cs == &top_cpuset) {
1192 retval = -EACCES;
1193 goto done;
1194 }
Miao Xie0b2f6302008-07-25 01:47:21 -07001195
Miao Xie0b2f6302008-07-25 01:47:21 -07001196 /*
1197 * An empty mems_allowed is ok iff there are no tasks in the cpuset.
1198 * Since nodelist_parse() fails on an empty mask, we special case
1199 * that parsing. The validate_change() call ensures that cpusets
1200 * with tasks have memory.
1201 */
1202 if (!*buf) {
Li Zefan645fcc92009-01-07 18:08:43 -08001203 nodes_clear(trialcs->mems_allowed);
Miao Xie0b2f6302008-07-25 01:47:21 -07001204 } else {
Li Zefan645fcc92009-01-07 18:08:43 -08001205 retval = nodelist_parse(buf, trialcs->mems_allowed);
Miao Xie0b2f6302008-07-25 01:47:21 -07001206 if (retval < 0)
1207 goto done;
1208
Li Zefan645fcc92009-01-07 18:08:43 -08001209 if (!nodes_subset(trialcs->mems_allowed,
Li Zefan5d8ba822014-07-09 16:49:12 +08001210 top_cpuset.mems_allowed)) {
1211 retval = -EINVAL;
Miao Xie53feb292010-03-23 13:35:35 -07001212 goto done;
1213 }
Miao Xie0b2f6302008-07-25 01:47:21 -07001214 }
Li Zefan33ad8012013-06-09 17:15:08 +08001215
1216 if (nodes_equal(cs->mems_allowed, trialcs->mems_allowed)) {
Miao Xie0b2f6302008-07-25 01:47:21 -07001217 retval = 0; /* Too easy - nothing to do */
1218 goto done;
1219 }
Li Zefan645fcc92009-01-07 18:08:43 -08001220 retval = validate_change(cs, trialcs);
Miao Xie0b2f6302008-07-25 01:47:21 -07001221 if (retval < 0)
1222 goto done;
1223
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001224 spin_lock_irq(&callback_lock);
Li Zefan645fcc92009-01-07 18:08:43 -08001225 cs->mems_allowed = trialcs->mems_allowed;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001226 spin_unlock_irq(&callback_lock);
Miao Xie0b2f6302008-07-25 01:47:21 -07001227
Li Zefan734d4512014-07-09 16:47:29 +08001228 /* use trialcs->mems_allowed as a temp variable */
Alban Crequy24ee3cf2015-08-06 16:21:05 +02001229 update_nodemasks_hier(cs, &trialcs->mems_allowed);
Miao Xie0b2f6302008-07-25 01:47:21 -07001230done:
1231 return retval;
1232}
1233
Paul Menage8793d852007-10-18 23:39:39 -07001234int current_cpuset_is_being_rebound(void)
1235{
Gu Zheng391acf92014-06-25 09:57:18 +08001236 int ret;
1237
1238 rcu_read_lock();
1239 ret = task_cs(current) == cpuset_being_rebound;
1240 rcu_read_unlock();
1241
1242 return ret;
Paul Menage8793d852007-10-18 23:39:39 -07001243}
1244
Paul Menage5be7a472008-05-06 20:42:41 -07001245static int update_relax_domain_level(struct cpuset *cs, s64 val)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001246{
Paul Menagedb7f47c2009-04-02 16:57:55 -07001247#ifdef CONFIG_SMP
Peter Zijlstra60495e72011-04-07 14:10:04 +02001248 if (val < -1 || val >= sched_domain_level_max)
Li Zefan30e0e172008-05-13 10:27:17 +08001249 return -EINVAL;
Paul Menagedb7f47c2009-04-02 16:57:55 -07001250#endif
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001251
1252 if (val != cs->relax_domain_level) {
1253 cs->relax_domain_level = val;
Li Zefan300ed6c2009-01-07 18:08:44 -08001254 if (!cpumask_empty(cs->cpus_allowed) &&
1255 is_sched_load_balance(cs))
Tejun Heo699140b2013-01-07 08:51:07 -08001256 rebuild_sched_domains_locked();
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001257 }
1258
1259 return 0;
1260}
1261
Tejun Heo72ec7022013-08-08 20:11:26 -04001262/**
Miao Xie950592f2009-06-16 15:31:47 -07001263 * update_tasks_flags - update the spread flags of tasks in the cpuset.
1264 * @cs: the cpuset in which each task's spread flags needs to be changed
Miao Xie950592f2009-06-16 15:31:47 -07001265 *
Tejun Heod66393e2014-02-13 06:58:40 -05001266 * Iterate through each task of @cs updating its spread flags. As this
1267 * function is called with cpuset_mutex held, cpuset membership stays
1268 * stable.
Miao Xie950592f2009-06-16 15:31:47 -07001269 */
Tejun Heod66393e2014-02-13 06:58:40 -05001270static void update_tasks_flags(struct cpuset *cs)
Miao Xie950592f2009-06-16 15:31:47 -07001271{
Tejun Heod66393e2014-02-13 06:58:40 -05001272 struct css_task_iter it;
1273 struct task_struct *task;
1274
1275 css_task_iter_start(&cs->css, &it);
1276 while ((task = css_task_iter_next(&it)))
1277 cpuset_update_task_spread_flag(cs, task);
1278 css_task_iter_end(&it);
Miao Xie950592f2009-06-16 15:31:47 -07001279}
1280
1281/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * update_flag - read a 0 or a 1 in a file and update associated flag
Paul Menage78608362008-04-29 01:00:26 -07001283 * bit: the bit to update (see cpuset_flagbits_t)
1284 * cs: the cpuset to update
1285 * turning_on: whether the flag is being set or cleared
Paul Jackson053199e2005-10-30 15:02:30 -08001286 *
Tejun Heo5d21cc22013-01-07 08:51:08 -08001287 * Call with cpuset_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 */
1289
Paul Menage700fe1a2008-04-29 01:00:00 -07001290static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs,
1291 int turning_on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Li Zefan645fcc92009-01-07 18:08:43 -08001293 struct cpuset *trialcs;
Rakib Mullick40b6a762008-10-18 20:28:18 -07001294 int balance_flag_changed;
Miao Xie950592f2009-06-16 15:31:47 -07001295 int spread_flag_changed;
Miao Xie950592f2009-06-16 15:31:47 -07001296 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Li Zefan645fcc92009-01-07 18:08:43 -08001298 trialcs = alloc_trial_cpuset(cs);
1299 if (!trialcs)
1300 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Li Zefan645fcc92009-01-07 18:08:43 -08001302 if (turning_on)
1303 set_bit(bit, &trialcs->flags);
1304 else
1305 clear_bit(bit, &trialcs->flags);
1306
1307 err = validate_change(cs, trialcs);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -07001308 if (err < 0)
Li Zefan645fcc92009-01-07 18:08:43 -08001309 goto out;
Paul Jackson029190c2007-10-18 23:40:20 -07001310
Paul Jackson029190c2007-10-18 23:40:20 -07001311 balance_flag_changed = (is_sched_load_balance(cs) !=
Li Zefan645fcc92009-01-07 18:08:43 -08001312 is_sched_load_balance(trialcs));
Paul Jackson029190c2007-10-18 23:40:20 -07001313
Miao Xie950592f2009-06-16 15:31:47 -07001314 spread_flag_changed = ((is_spread_slab(cs) != is_spread_slab(trialcs))
1315 || (is_spread_page(cs) != is_spread_page(trialcs)));
1316
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001317 spin_lock_irq(&callback_lock);
Li Zefan645fcc92009-01-07 18:08:43 -08001318 cs->flags = trialcs->flags;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001319 spin_unlock_irq(&callback_lock);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -07001320
Li Zefan300ed6c2009-01-07 18:08:44 -08001321 if (!cpumask_empty(trialcs->cpus_allowed) && balance_flag_changed)
Tejun Heo699140b2013-01-07 08:51:07 -08001322 rebuild_sched_domains_locked();
Paul Jackson029190c2007-10-18 23:40:20 -07001323
Miao Xie950592f2009-06-16 15:31:47 -07001324 if (spread_flag_changed)
Tejun Heod66393e2014-02-13 06:58:40 -05001325 update_tasks_flags(cs);
Li Zefan645fcc92009-01-07 18:08:43 -08001326out:
1327 free_trial_cpuset(trialcs);
1328 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Paul Jackson053199e2005-10-30 15:02:30 -08001331/*
Adrian Bunk80f72282006-06-30 18:27:16 +02001332 * Frequency meter - How fast is some event occurring?
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001333 *
1334 * These routines manage a digitally filtered, constant time based,
1335 * event frequency meter. There are four routines:
1336 * fmeter_init() - initialize a frequency meter.
1337 * fmeter_markevent() - called each time the event happens.
1338 * fmeter_getrate() - returns the recent rate of such events.
1339 * fmeter_update() - internal routine used to update fmeter.
1340 *
1341 * A common data structure is passed to each of these routines,
1342 * which is used to keep track of the state required to manage the
1343 * frequency meter and its digital filter.
1344 *
1345 * The filter works on the number of events marked per unit time.
1346 * The filter is single-pole low-pass recursive (IIR). The time unit
1347 * is 1 second. Arithmetic is done using 32-bit integers scaled to
1348 * simulate 3 decimal digits of precision (multiplied by 1000).
1349 *
1350 * With an FM_COEF of 933, and a time base of 1 second, the filter
1351 * has a half-life of 10 seconds, meaning that if the events quit
1352 * happening, then the rate returned from the fmeter_getrate()
1353 * will be cut in half each 10 seconds, until it converges to zero.
1354 *
1355 * It is not worth doing a real infinitely recursive filter. If more
1356 * than FM_MAXTICKS ticks have elapsed since the last filter event,
1357 * just compute FM_MAXTICKS ticks worth, by which point the level
1358 * will be stable.
1359 *
1360 * Limit the count of unprocessed events to FM_MAXCNT, so as to avoid
1361 * arithmetic overflow in the fmeter_update() routine.
1362 *
1363 * Given the simple 32 bit integer arithmetic used, this meter works
1364 * best for reporting rates between one per millisecond (msec) and
1365 * one per 32 (approx) seconds. At constant rates faster than one
1366 * per msec it maxes out at values just under 1,000,000. At constant
1367 * rates between one per msec, and one per second it will stabilize
1368 * to a value N*1000, where N is the rate of events per second.
1369 * At constant rates between one per second and one per 32 seconds,
1370 * it will be choppy, moving up on the seconds that have an event,
1371 * and then decaying until the next event. At rates slower than
1372 * about one in 32 seconds, it decays all the way back to zero between
1373 * each event.
1374 */
1375
1376#define FM_COEF 933 /* coefficient for half-life of 10 secs */
1377#define FM_MAXTICKS ((time_t)99) /* useless computing more ticks than this */
1378#define FM_MAXCNT 1000000 /* limit cnt to avoid overflow */
1379#define FM_SCALE 1000 /* faux fixed point scale */
1380
1381/* Initialize a frequency meter */
1382static void fmeter_init(struct fmeter *fmp)
1383{
1384 fmp->cnt = 0;
1385 fmp->val = 0;
1386 fmp->time = 0;
1387 spin_lock_init(&fmp->lock);
1388}
1389
1390/* Internal meter update - process cnt events and update value */
1391static void fmeter_update(struct fmeter *fmp)
1392{
1393 time_t now = get_seconds();
1394 time_t ticks = now - fmp->time;
1395
1396 if (ticks == 0)
1397 return;
1398
1399 ticks = min(FM_MAXTICKS, ticks);
1400 while (ticks-- > 0)
1401 fmp->val = (FM_COEF * fmp->val) / FM_SCALE;
1402 fmp->time = now;
1403
1404 fmp->val += ((FM_SCALE - FM_COEF) * fmp->cnt) / FM_SCALE;
1405 fmp->cnt = 0;
1406}
1407
1408/* Process any previous ticks, then bump cnt by one (times scale). */
1409static void fmeter_markevent(struct fmeter *fmp)
1410{
1411 spin_lock(&fmp->lock);
1412 fmeter_update(fmp);
1413 fmp->cnt = min(FM_MAXCNT, fmp->cnt + FM_SCALE);
1414 spin_unlock(&fmp->lock);
1415}
1416
1417/* Process any previous ticks, then return current value. */
1418static int fmeter_getrate(struct fmeter *fmp)
1419{
1420 int val;
1421
1422 spin_lock(&fmp->lock);
1423 fmeter_update(fmp);
1424 val = fmp->val;
1425 spin_unlock(&fmp->lock);
1426 return val;
1427}
1428
Tejun Heo57fce0a2014-02-13 06:58:41 -05001429static struct cpuset *cpuset_attach_old_cs;
1430
Tejun Heo5d21cc22013-01-07 08:51:08 -08001431/* Called by cgroups to determine if a cpuset is usable; cpuset_mutex held */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001432static int cpuset_can_attach(struct cgroup_taskset *tset)
Ben Blumf780bdb2011-05-26 16:25:19 -07001433{
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001434 struct cgroup_subsys_state *css;
1435 struct cpuset *cs;
Tejun Heobb9d97b2011-12-12 18:12:21 -08001436 struct task_struct *task;
1437 int ret;
Ben Blumf780bdb2011-05-26 16:25:19 -07001438
Tejun Heo57fce0a2014-02-13 06:58:41 -05001439 /* used later by cpuset_attach() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001440 cpuset_attach_old_cs = task_cs(cgroup_taskset_first(tset, &css));
1441 cs = css_cs(css);
Tejun Heo57fce0a2014-02-13 06:58:41 -05001442
Tejun Heo5d21cc22013-01-07 08:51:08 -08001443 mutex_lock(&cpuset_mutex);
1444
Tejun Heoaa6ec292014-07-09 10:08:08 -04001445 /* allow moving tasks into an empty cpuset if on default hierarchy */
Tejun Heo5d21cc22013-01-07 08:51:08 -08001446 ret = -ENOSPC;
Tejun Heo9e10a132015-09-18 11:56:28 -04001447 if (!cgroup_subsys_on_dfl(cpuset_cgrp_subsys) &&
Li Zefan88fa5232013-06-09 17:16:46 +08001448 (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed)))
Tejun Heo5d21cc22013-01-07 08:51:08 -08001449 goto out_unlock;
Ben Blumbe367d02009-09-23 15:56:31 -07001450
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001451 cgroup_taskset_for_each(task, css, tset) {
Juri Lelli7f514122014-09-19 10:22:40 +01001452 ret = task_can_attach(task, cs->cpus_allowed);
1453 if (ret)
Tejun Heo5d21cc22013-01-07 08:51:08 -08001454 goto out_unlock;
1455 ret = security_task_setscheduler(task);
1456 if (ret)
1457 goto out_unlock;
Tejun Heobb9d97b2011-12-12 18:12:21 -08001458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Tejun Heo452477f2013-01-07 08:51:07 -08001460 /*
1461 * Mark attach is in progress. This makes validate_change() fail
1462 * changes which zero cpus/mems_allowed.
1463 */
1464 cs->attach_in_progress++;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001465 ret = 0;
1466out_unlock:
1467 mutex_unlock(&cpuset_mutex);
1468 return ret;
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001469}
1470
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001471static void cpuset_cancel_attach(struct cgroup_taskset *tset)
Tejun Heo452477f2013-01-07 08:51:07 -08001472{
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001473 struct cgroup_subsys_state *css;
1474 struct cpuset *cs;
1475
1476 cgroup_taskset_first(tset, &css);
1477 cs = css_cs(css);
1478
Tejun Heo5d21cc22013-01-07 08:51:08 -08001479 mutex_lock(&cpuset_mutex);
Tejun Heoeb954192013-08-08 20:11:23 -04001480 css_cs(css)->attach_in_progress--;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001481 mutex_unlock(&cpuset_mutex);
Tejun Heo452477f2013-01-07 08:51:07 -08001482}
1483
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001484/*
Tejun Heo5d21cc22013-01-07 08:51:08 -08001485 * Protected by cpuset_mutex. cpus_attach is used only by cpuset_attach()
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001486 * but we can't allocate it dynamically there. Define it global and
1487 * allocate from cpuset_init().
1488 */
1489static cpumask_var_t cpus_attach;
1490
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001491static void cpuset_attach(struct cgroup_taskset *tset)
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001492{
Li Zefan67bd2c52013-06-05 17:15:35 +08001493 /* static buf protected by cpuset_mutex */
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001494 static nodemask_t cpuset_attach_nodemask_to;
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001495 struct task_struct *task;
Tejun Heo4530edd2015-09-11 15:00:19 -04001496 struct task_struct *leader;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001497 struct cgroup_subsys_state *css;
1498 struct cpuset *cs;
Tejun Heo57fce0a2014-02-13 06:58:41 -05001499 struct cpuset *oldcs = cpuset_attach_old_cs;
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001500
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001501 cgroup_taskset_first(tset, &css);
1502 cs = css_cs(css);
1503
Tejun Heo5d21cc22013-01-07 08:51:08 -08001504 mutex_lock(&cpuset_mutex);
1505
Tejun Heo94196f52011-12-12 18:12:22 -08001506 /* prepare for attach */
Ben Blumf780bdb2011-05-26 16:25:19 -07001507 if (cs == &top_cpuset)
1508 cpumask_copy(cpus_attach, cpu_possible_mask);
1509 else
Li Zefanae1c8022014-07-09 16:48:32 +08001510 guarantee_online_cpus(cs, cpus_attach);
Ben Blumf780bdb2011-05-26 16:25:19 -07001511
Li Zefanae1c8022014-07-09 16:48:32 +08001512 guarantee_online_mems(cs, &cpuset_attach_nodemask_to);
Tejun Heo94196f52011-12-12 18:12:22 -08001513
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001514 cgroup_taskset_for_each(task, css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001515 /*
1516 * can_attach beforehand should guarantee that this doesn't
1517 * fail. TODO: have a better way to handle failure here
1518 */
1519 WARN_ON_ONCE(set_cpus_allowed_ptr(task, cpus_attach));
1520
1521 cpuset_change_task_nodemask(task, &cpuset_attach_nodemask_to);
1522 cpuset_update_task_spread_flag(cs, task);
1523 }
David Quigley22fb52d2006-06-23 02:04:00 -07001524
Ben Blumf780bdb2011-05-26 16:25:19 -07001525 /*
Tejun Heo4530edd2015-09-11 15:00:19 -04001526 * Change mm for all threadgroup leaders. This is expensive and may
1527 * sleep and should be moved outside migration path proper.
Ben Blumf780bdb2011-05-26 16:25:19 -07001528 */
Li Zefanae1c8022014-07-09 16:48:32 +08001529 cpuset_attach_nodemask_to = cs->effective_mems;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001530 cgroup_taskset_for_each_leader(leader, css, tset) {
Tejun Heo3df9ca02015-09-11 15:00:18 -04001531 struct mm_struct *mm = get_task_mm(leader);
Li Zefanf047cec2013-06-13 15:11:44 +08001532
Tejun Heo3df9ca02015-09-11 15:00:18 -04001533 if (mm) {
1534 mpol_rebind_mm(mm, &cpuset_attach_nodemask_to);
1535
1536 /*
1537 * old_mems_allowed is the same with mems_allowed
1538 * here, except if this task is being moved
1539 * automatically due to hotplug. In that case
1540 * @mems_allowed has been updated and is empty, so
1541 * @old_mems_allowed is the right nodesets that we
1542 * migrate mm from.
1543 */
1544 if (is_memory_migrate(cs)) {
1545 cpuset_migrate_mm(mm, &oldcs->old_mems_allowed,
1546 &cpuset_attach_nodemask_to);
1547 }
1548 mmput(mm);
Li Zefanf047cec2013-06-13 15:11:44 +08001549 }
Paul Jackson42253992006-01-08 01:01:59 -08001550 }
Tejun Heo452477f2013-01-07 08:51:07 -08001551
Li Zefan33ad8012013-06-09 17:15:08 +08001552 cs->old_mems_allowed = cpuset_attach_nodemask_to;
Tejun Heo02bb5862013-01-07 08:51:08 -08001553
Tejun Heo452477f2013-01-07 08:51:07 -08001554 cs->attach_in_progress--;
Li Zefane44193d2013-06-09 17:14:22 +08001555 if (!cs->attach_in_progress)
1556 wake_up(&cpuset_attach_wq);
Tejun Heo5d21cc22013-01-07 08:51:08 -08001557
1558 mutex_unlock(&cpuset_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
1561/* The various types of files and directories in a cpuset file system */
1562
1563typedef enum {
Paul Jackson45b07ef2006-01-08 01:00:56 -08001564 FILE_MEMORY_MIGRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 FILE_CPULIST,
1566 FILE_MEMLIST,
Li Zefanafd1a8b2014-07-09 16:49:25 +08001567 FILE_EFFECTIVE_CPULIST,
1568 FILE_EFFECTIVE_MEMLIST,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 FILE_CPU_EXCLUSIVE,
1570 FILE_MEM_EXCLUSIVE,
Paul Menage78608362008-04-29 01:00:26 -07001571 FILE_MEM_HARDWALL,
Paul Jackson029190c2007-10-18 23:40:20 -07001572 FILE_SCHED_LOAD_BALANCE,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001573 FILE_SCHED_RELAX_DOMAIN_LEVEL,
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001574 FILE_MEMORY_PRESSURE_ENABLED,
1575 FILE_MEMORY_PRESSURE,
Paul Jackson825a46a2006-03-24 03:16:03 -08001576 FILE_SPREAD_PAGE,
1577 FILE_SPREAD_SLAB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578} cpuset_filetype_t;
1579
Tejun Heo182446d2013-08-08 20:11:24 -04001580static int cpuset_write_u64(struct cgroup_subsys_state *css, struct cftype *cft,
1581 u64 val)
Paul Menage700fe1a2008-04-29 01:00:00 -07001582{
Tejun Heo182446d2013-08-08 20:11:24 -04001583 struct cpuset *cs = css_cs(css);
Paul Menage700fe1a2008-04-29 01:00:00 -07001584 cpuset_filetype_t type = cft->private;
Li Zefana903f082013-08-13 10:05:59 +08001585 int retval = 0;
Paul Menage700fe1a2008-04-29 01:00:00 -07001586
Tejun Heo5d21cc22013-01-07 08:51:08 -08001587 mutex_lock(&cpuset_mutex);
Li Zefana903f082013-08-13 10:05:59 +08001588 if (!is_cpuset_online(cs)) {
1589 retval = -ENODEV;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001590 goto out_unlock;
Li Zefana903f082013-08-13 10:05:59 +08001591 }
Paul Menage700fe1a2008-04-29 01:00:00 -07001592
1593 switch (type) {
1594 case FILE_CPU_EXCLUSIVE:
1595 retval = update_flag(CS_CPU_EXCLUSIVE, cs, val);
1596 break;
1597 case FILE_MEM_EXCLUSIVE:
1598 retval = update_flag(CS_MEM_EXCLUSIVE, cs, val);
1599 break;
Paul Menage78608362008-04-29 01:00:26 -07001600 case FILE_MEM_HARDWALL:
1601 retval = update_flag(CS_MEM_HARDWALL, cs, val);
1602 break;
Paul Menage700fe1a2008-04-29 01:00:00 -07001603 case FILE_SCHED_LOAD_BALANCE:
1604 retval = update_flag(CS_SCHED_LOAD_BALANCE, cs, val);
1605 break;
1606 case FILE_MEMORY_MIGRATE:
1607 retval = update_flag(CS_MEMORY_MIGRATE, cs, val);
1608 break;
1609 case FILE_MEMORY_PRESSURE_ENABLED:
1610 cpuset_memory_pressure_enabled = !!val;
1611 break;
Paul Menage700fe1a2008-04-29 01:00:00 -07001612 case FILE_SPREAD_PAGE:
1613 retval = update_flag(CS_SPREAD_PAGE, cs, val);
Paul Menage700fe1a2008-04-29 01:00:00 -07001614 break;
1615 case FILE_SPREAD_SLAB:
1616 retval = update_flag(CS_SPREAD_SLAB, cs, val);
Paul Menage700fe1a2008-04-29 01:00:00 -07001617 break;
1618 default:
1619 retval = -EINVAL;
1620 break;
1621 }
Tejun Heo5d21cc22013-01-07 08:51:08 -08001622out_unlock:
1623 mutex_unlock(&cpuset_mutex);
Paul Menage700fe1a2008-04-29 01:00:00 -07001624 return retval;
1625}
1626
Tejun Heo182446d2013-08-08 20:11:24 -04001627static int cpuset_write_s64(struct cgroup_subsys_state *css, struct cftype *cft,
1628 s64 val)
Paul Menage5be7a472008-05-06 20:42:41 -07001629{
Tejun Heo182446d2013-08-08 20:11:24 -04001630 struct cpuset *cs = css_cs(css);
Paul Menage5be7a472008-05-06 20:42:41 -07001631 cpuset_filetype_t type = cft->private;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001632 int retval = -ENODEV;
Paul Menage5be7a472008-05-06 20:42:41 -07001633
Tejun Heo5d21cc22013-01-07 08:51:08 -08001634 mutex_lock(&cpuset_mutex);
1635 if (!is_cpuset_online(cs))
1636 goto out_unlock;
Paul Menagee3712392008-07-25 01:47:02 -07001637
Paul Menage5be7a472008-05-06 20:42:41 -07001638 switch (type) {
1639 case FILE_SCHED_RELAX_DOMAIN_LEVEL:
1640 retval = update_relax_domain_level(cs, val);
1641 break;
1642 default:
1643 retval = -EINVAL;
1644 break;
1645 }
Tejun Heo5d21cc22013-01-07 08:51:08 -08001646out_unlock:
1647 mutex_unlock(&cpuset_mutex);
Paul Menage5be7a472008-05-06 20:42:41 -07001648 return retval;
1649}
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651/*
Paul Menagee3712392008-07-25 01:47:02 -07001652 * Common handling for a write to a "cpus" or "mems" file.
1653 */
Tejun Heo451af502014-05-13 12:16:21 -04001654static ssize_t cpuset_write_resmask(struct kernfs_open_file *of,
1655 char *buf, size_t nbytes, loff_t off)
Paul Menagee3712392008-07-25 01:47:02 -07001656{
Tejun Heo451af502014-05-13 12:16:21 -04001657 struct cpuset *cs = css_cs(of_css(of));
Li Zefan645fcc92009-01-07 18:08:43 -08001658 struct cpuset *trialcs;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001659 int retval = -ENODEV;
Paul Menagee3712392008-07-25 01:47:02 -07001660
Tejun Heo451af502014-05-13 12:16:21 -04001661 buf = strstrip(buf);
1662
Tejun Heo3a5a6d02013-01-07 08:51:07 -08001663 /*
1664 * CPU or memory hotunplug may leave @cs w/o any execution
1665 * resources, in which case the hotplug code asynchronously updates
1666 * configuration and transfers all tasks to the nearest ancestor
1667 * which can execute.
1668 *
1669 * As writes to "cpus" or "mems" may restore @cs's execution
1670 * resources, wait for the previously scheduled operations before
1671 * proceeding, so that we don't end up keep removing tasks added
1672 * after execution capability is restored.
Tejun Heo76bb5ab2014-06-30 15:47:32 -04001673 *
1674 * cpuset_hotplug_work calls back into cgroup core via
1675 * cgroup_transfer_tasks() and waiting for it from a cgroupfs
1676 * operation like this one can lead to a deadlock through kernfs
1677 * active_ref protection. Let's break the protection. Losing the
1678 * protection is okay as we check whether @cs is online after
1679 * grabbing cpuset_mutex anyway. This only happens on the legacy
1680 * hierarchies.
Tejun Heo3a5a6d02013-01-07 08:51:07 -08001681 */
Tejun Heo76bb5ab2014-06-30 15:47:32 -04001682 css_get(&cs->css);
1683 kernfs_break_active_protection(of->kn);
Tejun Heo3a5a6d02013-01-07 08:51:07 -08001684 flush_work(&cpuset_hotplug_work);
1685
Tejun Heo5d21cc22013-01-07 08:51:08 -08001686 mutex_lock(&cpuset_mutex);
1687 if (!is_cpuset_online(cs))
1688 goto out_unlock;
Paul Menagee3712392008-07-25 01:47:02 -07001689
Li Zefan645fcc92009-01-07 18:08:43 -08001690 trialcs = alloc_trial_cpuset(cs);
Li Zefanb75f38d2011-03-04 17:36:21 -08001691 if (!trialcs) {
1692 retval = -ENOMEM;
Tejun Heo5d21cc22013-01-07 08:51:08 -08001693 goto out_unlock;
Li Zefanb75f38d2011-03-04 17:36:21 -08001694 }
Li Zefan645fcc92009-01-07 18:08:43 -08001695
Tejun Heo451af502014-05-13 12:16:21 -04001696 switch (of_cft(of)->private) {
Paul Menagee3712392008-07-25 01:47:02 -07001697 case FILE_CPULIST:
Li Zefan645fcc92009-01-07 18:08:43 -08001698 retval = update_cpumask(cs, trialcs, buf);
Paul Menagee3712392008-07-25 01:47:02 -07001699 break;
1700 case FILE_MEMLIST:
Li Zefan645fcc92009-01-07 18:08:43 -08001701 retval = update_nodemask(cs, trialcs, buf);
Paul Menagee3712392008-07-25 01:47:02 -07001702 break;
1703 default:
1704 retval = -EINVAL;
1705 break;
1706 }
Li Zefan645fcc92009-01-07 18:08:43 -08001707
1708 free_trial_cpuset(trialcs);
Tejun Heo5d21cc22013-01-07 08:51:08 -08001709out_unlock:
1710 mutex_unlock(&cpuset_mutex);
Tejun Heo76bb5ab2014-06-30 15:47:32 -04001711 kernfs_unbreak_active_protection(of->kn);
1712 css_put(&cs->css);
Tejun Heo451af502014-05-13 12:16:21 -04001713 return retval ?: nbytes;
Paul Menagee3712392008-07-25 01:47:02 -07001714}
1715
1716/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 * These ascii lists should be read in a single call, by using a user
1718 * buffer large enough to hold the entire map. If read in smaller
1719 * chunks, there is no guarantee of atomicity. Since the display format
1720 * used, list of ranges of sequential numbers, is variable length,
1721 * and since these maps can change value dynamically, one could read
1722 * gibberish by doing partial reads while a list was changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
Tejun Heo2da8ca82013-12-05 12:28:04 -05001724static int cpuset_common_seq_show(struct seq_file *sf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001726 struct cpuset *cs = css_cs(seq_css(sf));
1727 cpuset_filetype_t type = seq_cft(sf)->private;
Tejun Heo51ffe412013-12-05 12:28:02 -05001728 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001730 spin_lock_irq(&callback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 switch (type) {
1733 case FILE_CPULIST:
Tejun Heoe8e6d972015-02-13 14:37:23 -08001734 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->cpus_allowed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 break;
1736 case FILE_MEMLIST:
Tejun Heoe8e6d972015-02-13 14:37:23 -08001737 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->mems_allowed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 break;
Li Zefanafd1a8b2014-07-09 16:49:25 +08001739 case FILE_EFFECTIVE_CPULIST:
Tejun Heoe8e6d972015-02-13 14:37:23 -08001740 seq_printf(sf, "%*pbl\n", cpumask_pr_args(cs->effective_cpus));
Li Zefanafd1a8b2014-07-09 16:49:25 +08001741 break;
1742 case FILE_EFFECTIVE_MEMLIST:
Tejun Heoe8e6d972015-02-13 14:37:23 -08001743 seq_printf(sf, "%*pbl\n", nodemask_pr_args(&cs->effective_mems));
Li Zefanafd1a8b2014-07-09 16:49:25 +08001744 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 default:
Tejun Heo51ffe412013-12-05 12:28:02 -05001746 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001749 spin_unlock_irq(&callback_lock);
Tejun Heo51ffe412013-12-05 12:28:02 -05001750 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
Tejun Heo182446d2013-08-08 20:11:24 -04001753static u64 cpuset_read_u64(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menage700fe1a2008-04-29 01:00:00 -07001754{
Tejun Heo182446d2013-08-08 20:11:24 -04001755 struct cpuset *cs = css_cs(css);
Paul Menage700fe1a2008-04-29 01:00:00 -07001756 cpuset_filetype_t type = cft->private;
1757 switch (type) {
1758 case FILE_CPU_EXCLUSIVE:
1759 return is_cpu_exclusive(cs);
1760 case FILE_MEM_EXCLUSIVE:
1761 return is_mem_exclusive(cs);
Paul Menage78608362008-04-29 01:00:26 -07001762 case FILE_MEM_HARDWALL:
1763 return is_mem_hardwall(cs);
Paul Menage700fe1a2008-04-29 01:00:00 -07001764 case FILE_SCHED_LOAD_BALANCE:
1765 return is_sched_load_balance(cs);
1766 case FILE_MEMORY_MIGRATE:
1767 return is_memory_migrate(cs);
1768 case FILE_MEMORY_PRESSURE_ENABLED:
1769 return cpuset_memory_pressure_enabled;
1770 case FILE_MEMORY_PRESSURE:
1771 return fmeter_getrate(&cs->fmeter);
1772 case FILE_SPREAD_PAGE:
1773 return is_spread_page(cs);
1774 case FILE_SPREAD_SLAB:
1775 return is_spread_slab(cs);
1776 default:
1777 BUG();
1778 }
Max Krasnyanskycf417142008-08-11 14:33:53 -07001779
1780 /* Unreachable but makes gcc happy */
1781 return 0;
Paul Menage700fe1a2008-04-29 01:00:00 -07001782}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Tejun Heo182446d2013-08-08 20:11:24 -04001784static s64 cpuset_read_s64(struct cgroup_subsys_state *css, struct cftype *cft)
Paul Menage5be7a472008-05-06 20:42:41 -07001785{
Tejun Heo182446d2013-08-08 20:11:24 -04001786 struct cpuset *cs = css_cs(css);
Paul Menage5be7a472008-05-06 20:42:41 -07001787 cpuset_filetype_t type = cft->private;
1788 switch (type) {
1789 case FILE_SCHED_RELAX_DOMAIN_LEVEL:
1790 return cs->relax_domain_level;
1791 default:
1792 BUG();
1793 }
Max Krasnyanskycf417142008-08-11 14:33:53 -07001794
1795 /* Unrechable but makes gcc happy */
1796 return 0;
Paul Menage5be7a472008-05-06 20:42:41 -07001797}
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800/*
1801 * for the common functions, 'private' gives the type of file
1802 */
1803
Paul Menageaddf2c72008-04-29 01:00:26 -07001804static struct cftype files[] = {
1805 {
1806 .name = "cpus",
Tejun Heo2da8ca82013-12-05 12:28:04 -05001807 .seq_show = cpuset_common_seq_show,
Tejun Heo451af502014-05-13 12:16:21 -04001808 .write = cpuset_write_resmask,
Paul Menagee3712392008-07-25 01:47:02 -07001809 .max_write_len = (100U + 6 * NR_CPUS),
Paul Menageaddf2c72008-04-29 01:00:26 -07001810 .private = FILE_CPULIST,
1811 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Paul Menageaddf2c72008-04-29 01:00:26 -07001813 {
1814 .name = "mems",
Tejun Heo2da8ca82013-12-05 12:28:04 -05001815 .seq_show = cpuset_common_seq_show,
Tejun Heo451af502014-05-13 12:16:21 -04001816 .write = cpuset_write_resmask,
Paul Menagee3712392008-07-25 01:47:02 -07001817 .max_write_len = (100U + 6 * MAX_NUMNODES),
Paul Menageaddf2c72008-04-29 01:00:26 -07001818 .private = FILE_MEMLIST,
1819 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Paul Menageaddf2c72008-04-29 01:00:26 -07001821 {
Li Zefanafd1a8b2014-07-09 16:49:25 +08001822 .name = "effective_cpus",
1823 .seq_show = cpuset_common_seq_show,
1824 .private = FILE_EFFECTIVE_CPULIST,
1825 },
1826
1827 {
1828 .name = "effective_mems",
1829 .seq_show = cpuset_common_seq_show,
1830 .private = FILE_EFFECTIVE_MEMLIST,
1831 },
1832
1833 {
Paul Menageaddf2c72008-04-29 01:00:26 -07001834 .name = "cpu_exclusive",
1835 .read_u64 = cpuset_read_u64,
1836 .write_u64 = cpuset_write_u64,
1837 .private = FILE_CPU_EXCLUSIVE,
1838 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Paul Menageaddf2c72008-04-29 01:00:26 -07001840 {
1841 .name = "mem_exclusive",
1842 .read_u64 = cpuset_read_u64,
1843 .write_u64 = cpuset_write_u64,
1844 .private = FILE_MEM_EXCLUSIVE,
1845 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Paul Menageaddf2c72008-04-29 01:00:26 -07001847 {
Paul Menage78608362008-04-29 01:00:26 -07001848 .name = "mem_hardwall",
1849 .read_u64 = cpuset_read_u64,
1850 .write_u64 = cpuset_write_u64,
1851 .private = FILE_MEM_HARDWALL,
1852 },
1853
1854 {
Paul Menageaddf2c72008-04-29 01:00:26 -07001855 .name = "sched_load_balance",
1856 .read_u64 = cpuset_read_u64,
1857 .write_u64 = cpuset_write_u64,
1858 .private = FILE_SCHED_LOAD_BALANCE,
1859 },
Paul Jackson029190c2007-10-18 23:40:20 -07001860
Paul Menageaddf2c72008-04-29 01:00:26 -07001861 {
1862 .name = "sched_relax_domain_level",
Paul Menage5be7a472008-05-06 20:42:41 -07001863 .read_s64 = cpuset_read_s64,
1864 .write_s64 = cpuset_write_s64,
Paul Menageaddf2c72008-04-29 01:00:26 -07001865 .private = FILE_SCHED_RELAX_DOMAIN_LEVEL,
1866 },
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001867
Paul Menageaddf2c72008-04-29 01:00:26 -07001868 {
1869 .name = "memory_migrate",
1870 .read_u64 = cpuset_read_u64,
1871 .write_u64 = cpuset_write_u64,
1872 .private = FILE_MEMORY_MIGRATE,
1873 },
1874
1875 {
1876 .name = "memory_pressure",
1877 .read_u64 = cpuset_read_u64,
Paul Menageaddf2c72008-04-29 01:00:26 -07001878 },
1879
1880 {
1881 .name = "memory_spread_page",
1882 .read_u64 = cpuset_read_u64,
1883 .write_u64 = cpuset_write_u64,
1884 .private = FILE_SPREAD_PAGE,
1885 },
1886
1887 {
1888 .name = "memory_spread_slab",
1889 .read_u64 = cpuset_read_u64,
1890 .write_u64 = cpuset_write_u64,
1891 .private = FILE_SPREAD_SLAB,
1892 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001893
1894 {
1895 .name = "memory_pressure_enabled",
1896 .flags = CFTYPE_ONLY_ON_ROOT,
1897 .read_u64 = cpuset_read_u64,
1898 .write_u64 = cpuset_write_u64,
1899 .private = FILE_MEMORY_PRESSURE_ENABLED,
1900 },
1901
1902 { } /* terminate */
Paul Jackson45b07ef2006-01-08 01:00:56 -08001903};
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905/*
Tejun Heo92fb9742012-11-19 08:13:38 -08001906 * cpuset_css_alloc - allocate a cpuset css
Li Zefanc9e5fe62013-06-14 11:18:27 +08001907 * cgrp: control group that the new cpuset will be part of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 */
1909
Tejun Heoeb954192013-08-08 20:11:23 -04001910static struct cgroup_subsys_state *
1911cpuset_css_alloc(struct cgroup_subsys_state *parent_css)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Tejun Heoc8f699b2013-01-07 08:51:07 -08001913 struct cpuset *cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Tejun Heoeb954192013-08-08 20:11:23 -04001915 if (!parent_css)
Paul Menage8793d852007-10-18 23:39:39 -07001916 return &top_cpuset.css;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001917
Tejun Heoc8f699b2013-01-07 08:51:07 -08001918 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 if (!cs)
Paul Menage8793d852007-10-18 23:39:39 -07001920 return ERR_PTR(-ENOMEM);
Li Zefane2b9a3d2014-07-09 16:47:03 +08001921 if (!alloc_cpumask_var(&cs->cpus_allowed, GFP_KERNEL))
1922 goto free_cs;
1923 if (!alloc_cpumask_var(&cs->effective_cpus, GFP_KERNEL))
1924 goto free_cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Paul Jackson029190c2007-10-18 23:40:20 -07001926 set_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
Li Zefan300ed6c2009-01-07 18:08:44 -08001927 cpumask_clear(cs->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07001928 nodes_clear(cs->mems_allowed);
Li Zefane2b9a3d2014-07-09 16:47:03 +08001929 cpumask_clear(cs->effective_cpus);
1930 nodes_clear(cs->effective_mems);
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001931 fmeter_init(&cs->fmeter);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001932 cs->relax_domain_level = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Tejun Heoc8f699b2013-01-07 08:51:07 -08001934 return &cs->css;
Li Zefane2b9a3d2014-07-09 16:47:03 +08001935
1936free_cpus:
1937 free_cpumask_var(cs->cpus_allowed);
1938free_cs:
1939 kfree(cs);
1940 return ERR_PTR(-ENOMEM);
Tejun Heoc8f699b2013-01-07 08:51:07 -08001941}
1942
Tejun Heoeb954192013-08-08 20:11:23 -04001943static int cpuset_css_online(struct cgroup_subsys_state *css)
Tejun Heoc8f699b2013-01-07 08:51:07 -08001944{
Tejun Heoeb954192013-08-08 20:11:23 -04001945 struct cpuset *cs = css_cs(css);
Tejun Heoc4310692013-01-07 08:51:08 -08001946 struct cpuset *parent = parent_cs(cs);
Tejun Heoae8086c2013-01-07 08:51:07 -08001947 struct cpuset *tmp_cs;
Tejun Heo492eb212013-08-08 20:11:25 -04001948 struct cgroup_subsys_state *pos_css;
Tejun Heoc8f699b2013-01-07 08:51:07 -08001949
1950 if (!parent)
1951 return 0;
1952
Tejun Heo5d21cc22013-01-07 08:51:08 -08001953 mutex_lock(&cpuset_mutex);
1954
Tejun Heoefeb77b2013-01-07 08:51:07 -08001955 set_bit(CS_ONLINE, &cs->flags);
Tejun Heoc8f699b2013-01-07 08:51:07 -08001956 if (is_spread_page(parent))
1957 set_bit(CS_SPREAD_PAGE, &cs->flags);
1958 if (is_spread_slab(parent))
1959 set_bit(CS_SPREAD_SLAB, &cs->flags);
1960
Mel Gorman664eedd2014-06-04 16:10:08 -07001961 cpuset_inc();
Tejun Heo033fa1c2012-11-19 08:13:39 -08001962
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001963 spin_lock_irq(&callback_lock);
Tejun Heo9e10a132015-09-18 11:56:28 -04001964 if (cgroup_subsys_on_dfl(cpuset_cgrp_subsys)) {
Li Zefane2b9a3d2014-07-09 16:47:03 +08001965 cpumask_copy(cs->effective_cpus, parent->effective_cpus);
1966 cs->effective_mems = parent->effective_mems;
1967 }
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001968 spin_unlock_irq(&callback_lock);
Li Zefane2b9a3d2014-07-09 16:47:03 +08001969
Tejun Heoeb954192013-08-08 20:11:23 -04001970 if (!test_bit(CGRP_CPUSET_CLONE_CHILDREN, &css->cgroup->flags))
Tejun Heo5d21cc22013-01-07 08:51:08 -08001971 goto out_unlock;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001972
1973 /*
1974 * Clone @parent's configuration if CGRP_CPUSET_CLONE_CHILDREN is
1975 * set. This flag handling is implemented in cgroup core for
1976 * histrical reasons - the flag may be specified during mount.
1977 *
1978 * Currently, if any sibling cpusets have exclusive cpus or mem, we
1979 * refuse to clone the configuration - thereby refusing the task to
1980 * be entered, and as a result refusing the sys_unshare() or
1981 * clone() which initiated it. If this becomes a problem for some
1982 * users who wish to allow that scenario, then this could be
1983 * changed to grant parent->cpus_allowed-sibling_cpus_exclusive
1984 * (and likewise for mems) to the new cgroup.
1985 */
Tejun Heoae8086c2013-01-07 08:51:07 -08001986 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -04001987 cpuset_for_each_child(tmp_cs, pos_css, parent) {
Tejun Heoae8086c2013-01-07 08:51:07 -08001988 if (is_mem_exclusive(tmp_cs) || is_cpu_exclusive(tmp_cs)) {
1989 rcu_read_unlock();
Tejun Heo5d21cc22013-01-07 08:51:08 -08001990 goto out_unlock;
Tejun Heoae8086c2013-01-07 08:51:07 -08001991 }
Tejun Heo033fa1c2012-11-19 08:13:39 -08001992 }
Tejun Heoae8086c2013-01-07 08:51:07 -08001993 rcu_read_unlock();
Tejun Heo033fa1c2012-11-19 08:13:39 -08001994
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04001995 spin_lock_irq(&callback_lock);
Tejun Heo033fa1c2012-11-19 08:13:39 -08001996 cs->mems_allowed = parent->mems_allowed;
Zefan Li790317e2015-02-13 11:19:49 +08001997 cs->effective_mems = parent->mems_allowed;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001998 cpumask_copy(cs->cpus_allowed, parent->cpus_allowed);
Zefan Li790317e2015-02-13 11:19:49 +08001999 cpumask_copy(cs->effective_cpus, parent->cpus_allowed);
Dan Carpentercea74462014-10-27 16:27:02 +03002000 spin_unlock_irq(&callback_lock);
Tejun Heo5d21cc22013-01-07 08:51:08 -08002001out_unlock:
2002 mutex_unlock(&cpuset_mutex);
Tejun Heoc8f699b2013-01-07 08:51:07 -08002003 return 0;
2004}
2005
Zhao Hongjiang0b9e6962013-07-27 11:56:53 +08002006/*
2007 * If the cpuset being removed has its flag 'sched_load_balance'
2008 * enabled, then simulate turning sched_load_balance off, which
2009 * will call rebuild_sched_domains_locked().
2010 */
2011
Tejun Heoeb954192013-08-08 20:11:23 -04002012static void cpuset_css_offline(struct cgroup_subsys_state *css)
Tejun Heoc8f699b2013-01-07 08:51:07 -08002013{
Tejun Heoeb954192013-08-08 20:11:23 -04002014 struct cpuset *cs = css_cs(css);
Tejun Heoc8f699b2013-01-07 08:51:07 -08002015
Tejun Heo5d21cc22013-01-07 08:51:08 -08002016 mutex_lock(&cpuset_mutex);
Tejun Heoc8f699b2013-01-07 08:51:07 -08002017
2018 if (is_sched_load_balance(cs))
2019 update_flag(CS_SCHED_LOAD_BALANCE, cs, 0);
2020
Mel Gorman664eedd2014-06-04 16:10:08 -07002021 cpuset_dec();
Tejun Heoefeb77b2013-01-07 08:51:07 -08002022 clear_bit(CS_ONLINE, &cs->flags);
Tejun Heoc8f699b2013-01-07 08:51:07 -08002023
Tejun Heo5d21cc22013-01-07 08:51:08 -08002024 mutex_unlock(&cpuset_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
Tejun Heoeb954192013-08-08 20:11:23 -04002027static void cpuset_css_free(struct cgroup_subsys_state *css)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Tejun Heoeb954192013-08-08 20:11:23 -04002029 struct cpuset *cs = css_cs(css);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Li Zefane2b9a3d2014-07-09 16:47:03 +08002031 free_cpumask_var(cs->effective_cpus);
Li Zefan300ed6c2009-01-07 18:08:44 -08002032 free_cpumask_var(cs->cpus_allowed);
Paul Menage8793d852007-10-18 23:39:39 -07002033 kfree(cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Li Zefan39bd0d12014-07-09 16:48:01 +08002036static void cpuset_bind(struct cgroup_subsys_state *root_css)
2037{
2038 mutex_lock(&cpuset_mutex);
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002039 spin_lock_irq(&callback_lock);
Li Zefan39bd0d12014-07-09 16:48:01 +08002040
Tejun Heo9e10a132015-09-18 11:56:28 -04002041 if (cgroup_subsys_on_dfl(cpuset_cgrp_subsys)) {
Li Zefan39bd0d12014-07-09 16:48:01 +08002042 cpumask_copy(top_cpuset.cpus_allowed, cpu_possible_mask);
2043 top_cpuset.mems_allowed = node_possible_map;
2044 } else {
2045 cpumask_copy(top_cpuset.cpus_allowed,
2046 top_cpuset.effective_cpus);
2047 top_cpuset.mems_allowed = top_cpuset.effective_mems;
2048 }
2049
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002050 spin_unlock_irq(&callback_lock);
Li Zefan39bd0d12014-07-09 16:48:01 +08002051 mutex_unlock(&cpuset_mutex);
2052}
2053
Tejun Heo073219e2014-02-08 10:36:58 -05002054struct cgroup_subsys cpuset_cgrp_subsys = {
Li Zefan39bd0d12014-07-09 16:48:01 +08002055 .css_alloc = cpuset_css_alloc,
2056 .css_online = cpuset_css_online,
2057 .css_offline = cpuset_css_offline,
2058 .css_free = cpuset_css_free,
2059 .can_attach = cpuset_can_attach,
2060 .cancel_attach = cpuset_cancel_attach,
2061 .attach = cpuset_attach,
2062 .bind = cpuset_bind,
Tejun Heo55779642014-07-15 11:05:09 -04002063 .legacy_cftypes = files,
Li Zefan39bd0d12014-07-09 16:48:01 +08002064 .early_init = 1,
Paul Menage8793d852007-10-18 23:39:39 -07002065};
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067/**
2068 * cpuset_init - initialize cpusets at system boot
2069 *
2070 * Description: Initialize top_cpuset and the cpuset internal file system,
2071 **/
2072
2073int __init cpuset_init(void)
2074{
Paul Menage8793d852007-10-18 23:39:39 -07002075 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Miao Xie58568d22009-06-16 15:31:49 -07002077 if (!alloc_cpumask_var(&top_cpuset.cpus_allowed, GFP_KERNEL))
2078 BUG();
Li Zefane2b9a3d2014-07-09 16:47:03 +08002079 if (!alloc_cpumask_var(&top_cpuset.effective_cpus, GFP_KERNEL))
2080 BUG();
Miao Xie58568d22009-06-16 15:31:49 -07002081
Li Zefan300ed6c2009-01-07 18:08:44 -08002082 cpumask_setall(top_cpuset.cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07002083 nodes_setall(top_cpuset.mems_allowed);
Li Zefane2b9a3d2014-07-09 16:47:03 +08002084 cpumask_setall(top_cpuset.effective_cpus);
2085 nodes_setall(top_cpuset.effective_mems);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002087 fmeter_init(&top_cpuset.fmeter);
Paul Jackson029190c2007-10-18 23:40:20 -07002088 set_bit(CS_SCHED_LOAD_BALANCE, &top_cpuset.flags);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09002089 top_cpuset.relax_domain_level = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 err = register_filesystem(&cpuset_fs_type);
2092 if (err < 0)
Paul Menage8793d852007-10-18 23:39:39 -07002093 return err;
2094
Li Zefan2341d1b2009-01-07 18:08:42 -08002095 if (!alloc_cpumask_var(&cpus_attach, GFP_KERNEL))
2096 BUG();
2097
Paul Menage8793d852007-10-18 23:39:39 -07002098 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002101/*
Max Krasnyanskycf417142008-08-11 14:33:53 -07002102 * If CPU and/or memory hotplug handlers, below, unplug any CPUs
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002103 * or memory nodes, we need to walk over the cpuset hierarchy,
2104 * removing that CPU or node from all cpusets. If this removes the
Cliff Wickman956db3c2008-02-07 00:14:43 -08002105 * last CPU or node from a cpuset, then move the tasks in the empty
2106 * cpuset to its next-highest non-empty parent.
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002107 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08002108static void remove_tasks_in_empty_cpuset(struct cpuset *cs)
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002109{
Cliff Wickman956db3c2008-02-07 00:14:43 -08002110 struct cpuset *parent;
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002111
Paul Jacksonc8d9c902008-02-07 00:14:46 -08002112 /*
Cliff Wickman956db3c2008-02-07 00:14:43 -08002113 * Find its next-highest non-empty parent, (top cpuset
2114 * has online cpus, so can't be empty).
2115 */
Tejun Heoc4310692013-01-07 08:51:08 -08002116 parent = parent_cs(cs);
Li Zefan300ed6c2009-01-07 18:08:44 -08002117 while (cpumask_empty(parent->cpus_allowed) ||
Paul Jacksonb4501292008-02-07 00:14:47 -08002118 nodes_empty(parent->mems_allowed))
Tejun Heoc4310692013-01-07 08:51:08 -08002119 parent = parent_cs(parent);
Cliff Wickman956db3c2008-02-07 00:14:43 -08002120
Tejun Heo8cc99342013-04-07 09:29:50 -07002121 if (cgroup_transfer_tasks(parent->css.cgroup, cs->css.cgroup)) {
Fabian Frederick12d30892014-05-05 19:49:00 +02002122 pr_err("cpuset: failed to transfer tasks out of empty cpuset ");
Tejun Heoe61734c2014-02-12 09:29:50 -05002123 pr_cont_cgroup_name(cs->css.cgroup);
2124 pr_cont("\n");
Tejun Heo8cc99342013-04-07 09:29:50 -07002125 }
Cliff Wickman956db3c2008-02-07 00:14:43 -08002126}
2127
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002128static void
2129hotplug_update_tasks_legacy(struct cpuset *cs,
2130 struct cpumask *new_cpus, nodemask_t *new_mems,
2131 bool cpus_updated, bool mems_updated)
Li Zefan390a36a2014-07-09 16:48:54 +08002132{
2133 bool is_empty;
2134
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002135 spin_lock_irq(&callback_lock);
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002136 cpumask_copy(cs->cpus_allowed, new_cpus);
2137 cpumask_copy(cs->effective_cpus, new_cpus);
2138 cs->mems_allowed = *new_mems;
2139 cs->effective_mems = *new_mems;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002140 spin_unlock_irq(&callback_lock);
Li Zefan390a36a2014-07-09 16:48:54 +08002141
2142 /*
2143 * Don't call update_tasks_cpumask() if the cpuset becomes empty,
2144 * as the tasks will be migratecd to an ancestor.
2145 */
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002146 if (cpus_updated && !cpumask_empty(cs->cpus_allowed))
Li Zefan390a36a2014-07-09 16:48:54 +08002147 update_tasks_cpumask(cs);
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002148 if (mems_updated && !nodes_empty(cs->mems_allowed))
Li Zefan390a36a2014-07-09 16:48:54 +08002149 update_tasks_nodemask(cs);
2150
2151 is_empty = cpumask_empty(cs->cpus_allowed) ||
2152 nodes_empty(cs->mems_allowed);
2153
2154 mutex_unlock(&cpuset_mutex);
2155
2156 /*
2157 * Move tasks to the nearest ancestor with execution resources,
2158 * This is full cgroup operation which will also call back into
2159 * cpuset. Should be done outside any lock.
2160 */
2161 if (is_empty)
2162 remove_tasks_in_empty_cpuset(cs);
2163
2164 mutex_lock(&cpuset_mutex);
2165}
2166
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002167static void
2168hotplug_update_tasks(struct cpuset *cs,
2169 struct cpumask *new_cpus, nodemask_t *new_mems,
2170 bool cpus_updated, bool mems_updated)
Li Zefan390a36a2014-07-09 16:48:54 +08002171{
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002172 if (cpumask_empty(new_cpus))
2173 cpumask_copy(new_cpus, parent_cs(cs)->effective_cpus);
2174 if (nodes_empty(*new_mems))
2175 *new_mems = parent_cs(cs)->effective_mems;
Li Zefan390a36a2014-07-09 16:48:54 +08002176
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002177 spin_lock_irq(&callback_lock);
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002178 cpumask_copy(cs->effective_cpus, new_cpus);
2179 cs->effective_mems = *new_mems;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002180 spin_unlock_irq(&callback_lock);
Li Zefan390a36a2014-07-09 16:48:54 +08002181
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002182 if (cpus_updated)
Li Zefan390a36a2014-07-09 16:48:54 +08002183 update_tasks_cpumask(cs);
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002184 if (mems_updated)
Li Zefan390a36a2014-07-09 16:48:54 +08002185 update_tasks_nodemask(cs);
2186}
2187
Tejun Heodeb7aa32013-01-07 08:51:07 -08002188/**
Li Zefan388afd82013-06-09 17:14:47 +08002189 * cpuset_hotplug_update_tasks - update tasks in a cpuset for hotunplug
Tejun Heodeb7aa32013-01-07 08:51:07 -08002190 * @cs: cpuset in interest
Cliff Wickman956db3c2008-02-07 00:14:43 -08002191 *
Tejun Heodeb7aa32013-01-07 08:51:07 -08002192 * Compare @cs's cpu and mem masks against top_cpuset and if some have gone
2193 * offline, update @cs accordingly. If @cs ends up with no CPU or memory,
2194 * all its tasks are moved to the nearest ancestor with both resources.
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002195 */
Li Zefan388afd82013-06-09 17:14:47 +08002196static void cpuset_hotplug_update_tasks(struct cpuset *cs)
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002197{
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002198 static cpumask_t new_cpus;
2199 static nodemask_t new_mems;
2200 bool cpus_updated;
2201 bool mems_updated;
Li Zefane44193d2013-06-09 17:14:22 +08002202retry:
2203 wait_event(cpuset_attach_wq, cs->attach_in_progress == 0);
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002204
Tejun Heo5d21cc22013-01-07 08:51:08 -08002205 mutex_lock(&cpuset_mutex);
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002206
Li Zefane44193d2013-06-09 17:14:22 +08002207 /*
2208 * We have raced with task attaching. We wait until attaching
2209 * is finished, so we won't attach a task to an empty cpuset.
2210 */
2211 if (cs->attach_in_progress) {
2212 mutex_unlock(&cpuset_mutex);
2213 goto retry;
2214 }
2215
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002216 cpumask_and(&new_cpus, cs->cpus_allowed, parent_cs(cs)->effective_cpus);
2217 nodes_and(new_mems, cs->mems_allowed, parent_cs(cs)->effective_mems);
Paul Jacksonb4501292008-02-07 00:14:47 -08002218
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002219 cpus_updated = !cpumask_equal(&new_cpus, cs->effective_cpus);
2220 mems_updated = !nodes_equal(new_mems, cs->effective_mems);
Cliff Wickman956db3c2008-02-07 00:14:43 -08002221
Tejun Heo9e10a132015-09-18 11:56:28 -04002222 if (cgroup_subsys_on_dfl(cpuset_cgrp_subsys))
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002223 hotplug_update_tasks(cs, &new_cpus, &new_mems,
2224 cpus_updated, mems_updated);
Li Zefan390a36a2014-07-09 16:48:54 +08002225 else
Li Zefanbe4c9dd2014-07-09 16:49:04 +08002226 hotplug_update_tasks_legacy(cs, &new_cpus, &new_mems,
2227 cpus_updated, mems_updated);
Tejun Heo8d033942013-01-07 08:51:07 -08002228
Tejun Heo5d21cc22013-01-07 08:51:08 -08002229 mutex_unlock(&cpuset_mutex);
Tejun Heodeb7aa32013-01-07 08:51:07 -08002230}
Paul Jacksonb4501292008-02-07 00:14:47 -08002231
Tejun Heodeb7aa32013-01-07 08:51:07 -08002232/**
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002233 * cpuset_hotplug_workfn - handle CPU/memory hotunplug for a cpuset
Tejun Heodeb7aa32013-01-07 08:51:07 -08002234 *
2235 * This function is called after either CPU or memory configuration has
2236 * changed and updates cpuset accordingly. The top_cpuset is always
2237 * synchronized to cpu_active_mask and N_MEMORY, which is necessary in
2238 * order to make cpusets transparent (of no affect) on systems that are
2239 * actively using CPU hotplug but making no active use of cpusets.
2240 *
2241 * Non-root cpusets are only affected by offlining. If any CPUs or memory
Li Zefan388afd82013-06-09 17:14:47 +08002242 * nodes have been taken down, cpuset_hotplug_update_tasks() is invoked on
2243 * all descendants.
Tejun Heodeb7aa32013-01-07 08:51:07 -08002244 *
2245 * Note that CPU offlining during suspend is ignored. We don't modify
2246 * cpusets across suspend/resume cycles at all.
2247 */
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002248static void cpuset_hotplug_workfn(struct work_struct *work)
Tejun Heodeb7aa32013-01-07 08:51:07 -08002249{
Li Zefan5c5cc622013-06-09 17:16:29 +08002250 static cpumask_t new_cpus;
2251 static nodemask_t new_mems;
Tejun Heodeb7aa32013-01-07 08:51:07 -08002252 bool cpus_updated, mems_updated;
Tejun Heo9e10a132015-09-18 11:56:28 -04002253 bool on_dfl = cgroup_subsys_on_dfl(cpuset_cgrp_subsys);
Cliff Wickman956db3c2008-02-07 00:14:43 -08002254
Tejun Heo5d21cc22013-01-07 08:51:08 -08002255 mutex_lock(&cpuset_mutex);
Cliff Wickman956db3c2008-02-07 00:14:43 -08002256
Tejun Heodeb7aa32013-01-07 08:51:07 -08002257 /* fetch the available cpus/mems and find out which changed how */
2258 cpumask_copy(&new_cpus, cpu_active_mask);
2259 new_mems = node_states[N_MEMORY];
Cliff Wickman956db3c2008-02-07 00:14:43 -08002260
Li Zefan7e882912014-07-09 16:48:42 +08002261 cpus_updated = !cpumask_equal(top_cpuset.effective_cpus, &new_cpus);
2262 mems_updated = !nodes_equal(top_cpuset.effective_mems, new_mems);
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302263
Tejun Heodeb7aa32013-01-07 08:51:07 -08002264 /* synchronize cpus_allowed to cpu_active_mask */
2265 if (cpus_updated) {
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002266 spin_lock_irq(&callback_lock);
Li Zefan7e882912014-07-09 16:48:42 +08002267 if (!on_dfl)
2268 cpumask_copy(top_cpuset.cpus_allowed, &new_cpus);
Li Zefan1344ab92014-07-09 16:47:16 +08002269 cpumask_copy(top_cpuset.effective_cpus, &new_cpus);
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002270 spin_unlock_irq(&callback_lock);
Tejun Heodeb7aa32013-01-07 08:51:07 -08002271 /* we don't mess with cpumasks of tasks in top_cpuset */
2272 }
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302273
Tejun Heodeb7aa32013-01-07 08:51:07 -08002274 /* synchronize mems_allowed to N_MEMORY */
2275 if (mems_updated) {
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002276 spin_lock_irq(&callback_lock);
Li Zefan7e882912014-07-09 16:48:42 +08002277 if (!on_dfl)
2278 top_cpuset.mems_allowed = new_mems;
Li Zefan1344ab92014-07-09 16:47:16 +08002279 top_cpuset.effective_mems = new_mems;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002280 spin_unlock_irq(&callback_lock);
Tejun Heod66393e2014-02-13 06:58:40 -05002281 update_tasks_nodemask(&top_cpuset);
Tejun Heodeb7aa32013-01-07 08:51:07 -08002282 }
2283
Tejun Heo5d21cc22013-01-07 08:51:08 -08002284 mutex_unlock(&cpuset_mutex);
Tejun Heodeb7aa32013-01-07 08:51:07 -08002285
Li Zefan5c5cc622013-06-09 17:16:29 +08002286 /* if cpus or mems changed, we need to propagate to descendants */
2287 if (cpus_updated || mems_updated) {
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002288 struct cpuset *cs;
Tejun Heo492eb212013-08-08 20:11:25 -04002289 struct cgroup_subsys_state *pos_css;
Paul Jacksonb4501292008-02-07 00:14:47 -08002290
Paul Jacksonb4501292008-02-07 00:14:47 -08002291 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -04002292 cpuset_for_each_descendant_pre(cs, pos_css, &top_cpuset) {
Tejun Heoec903c02014-05-13 12:11:01 -04002293 if (cs == &top_cpuset || !css_tryget_online(&cs->css))
Li Zefan388afd82013-06-09 17:14:47 +08002294 continue;
2295 rcu_read_unlock();
2296
2297 cpuset_hotplug_update_tasks(cs);
2298
2299 rcu_read_lock();
2300 css_put(&cs->css);
2301 }
Tejun Heodeb7aa32013-01-07 08:51:07 -08002302 rcu_read_unlock();
2303 }
Tejun Heo8d033942013-01-07 08:51:07 -08002304
Tejun Heodeb7aa32013-01-07 08:51:07 -08002305 /* rebuild sched domains if cpus_allowed has changed */
Li Zhonge0e80a02013-04-27 06:52:43 -07002306 if (cpus_updated)
2307 rebuild_sched_domains();
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002308}
2309
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302310void cpuset_update_active_cpus(bool cpu_online)
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002311{
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002312 /*
2313 * We're inside cpu hotplug critical region which usually nests
2314 * inside cgroup synchronization. Bounce actual hotplug processing
2315 * to a work item to avoid reverse locking order.
2316 *
2317 * We still need to do partition_sched_domains() synchronously;
2318 * otherwise, the scheduler will get confused and put tasks to the
2319 * dead CPU. Fall back to the default single domain.
2320 * cpuset_hotplug_workfn() will rebuild it as necessary.
2321 */
2322 partition_sched_domains(1, NULL, NULL);
2323 schedule_work(&cpuset_hotplug_work);
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002324}
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002325
Paul Jackson38837fc2006-09-29 02:01:16 -07002326/*
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002327 * Keep top_cpuset.mems_allowed tracking node_states[N_MEMORY].
2328 * Call this routine anytime after node_states[N_MEMORY] changes.
Srivatsa S. Bhata1cd2b12012-05-24 19:47:03 +05302329 * See cpuset_update_active_cpus() for CPU hotplug handling.
Paul Jackson38837fc2006-09-29 02:01:16 -07002330 */
Miao Xief4818912008-11-19 15:36:30 -08002331static int cpuset_track_online_nodes(struct notifier_block *self,
2332 unsigned long action, void *arg)
Paul Jackson38837fc2006-09-29 02:01:16 -07002333{
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002334 schedule_work(&cpuset_hotplug_work);
Miao Xief4818912008-11-19 15:36:30 -08002335 return NOTIFY_OK;
Paul Jackson38837fc2006-09-29 02:01:16 -07002336}
Andrew Mortond8f10cb2013-04-29 15:08:08 -07002337
2338static struct notifier_block cpuset_track_online_nodes_nb = {
2339 .notifier_call = cpuset_track_online_nodes,
2340 .priority = 10, /* ??! */
2341};
Paul Jackson38837fc2006-09-29 02:01:16 -07002342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343/**
2344 * cpuset_init_smp - initialize cpus_allowed
2345 *
2346 * Description: Finish top cpuset after cpu, node maps are initialized
Andrew Mortond8f10cb2013-04-29 15:08:08 -07002347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348void __init cpuset_init_smp(void)
2349{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01002350 cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask);
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002351 top_cpuset.mems_allowed = node_states[N_MEMORY];
Li Zefan33ad8012013-06-09 17:15:08 +08002352 top_cpuset.old_mems_allowed = top_cpuset.mems_allowed;
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002353
Li Zefane2b9a3d2014-07-09 16:47:03 +08002354 cpumask_copy(top_cpuset.effective_cpus, cpu_active_mask);
2355 top_cpuset.effective_mems = node_states[N_MEMORY];
2356
Andrew Mortond8f10cb2013-04-29 15:08:08 -07002357 register_hotmemory_notifier(&cpuset_track_online_nodes_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
2360/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
2362 * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
Li Zefan6af866a2009-01-07 18:08:45 -08002363 * @pmask: pointer to struct cpumask variable to receive cpus_allowed set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 *
Li Zefan300ed6c2009-01-07 18:08:44 -08002365 * Description: Returns the cpumask_var_t cpus_allowed of the cpuset
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 * attached to the specified @tsk. Guaranteed to return some non-empty
Rusty Russell5f054e32012-03-29 15:38:31 +10302367 * subset of cpu_online_mask, even if this means going outside the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 * tasks cpuset.
2369 **/
2370
Li Zefan6af866a2009-01-07 18:08:45 -08002371void cpuset_cpus_allowed(struct task_struct *tsk, struct cpumask *pmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002373 unsigned long flags;
2374
2375 spin_lock_irqsave(&callback_lock, flags);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002376 rcu_read_lock();
Li Zefanae1c8022014-07-09 16:48:32 +08002377 guarantee_online_cpus(task_cs(tsk), pmask);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002378 rcu_read_unlock();
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002379 spin_unlock_irqrestore(&callback_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01002382void cpuset_cpus_allowed_fallback(struct task_struct *tsk)
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002383{
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002384 rcu_read_lock();
Li Zefanae1c8022014-07-09 16:48:32 +08002385 do_set_cpus_allowed(tsk, task_cs(tsk)->effective_cpus);
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002386 rcu_read_unlock();
2387
2388 /*
2389 * We own tsk->cpus_allowed, nobody can change it under us.
2390 *
2391 * But we used cs && cs->cpus_allowed lockless and thus can
2392 * race with cgroup_attach_task() or update_cpumask() and get
2393 * the wrong tsk->cpus_allowed. However, both cases imply the
2394 * subsequent cpuset_change_cpumask()->set_cpus_allowed_ptr()
2395 * which takes task_rq_lock().
2396 *
2397 * If we are called after it dropped the lock we must see all
2398 * changes in tsk_cs()->cpus_allowed. Otherwise we can temporary
2399 * set any mask even if it is not right from task_cs() pov,
2400 * the pending set_cpus_allowed_ptr() will fix things.
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01002401 *
2402 * select_fallback_rq() will fix things ups and set cpu_possible_mask
2403 * if required.
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002404 */
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002405}
2406
Rasmus Villemoes8f4ab072015-02-12 15:00:16 -08002407void __init cpuset_init_current_mems_allowed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408{
Mike Travisf9a86fc2008-04-04 18:11:07 -07002409 nodes_setall(current->mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Randy Dunlapd9fd8a62005-07-27 11:45:11 -07002412/**
Paul Jackson909d75a2006-01-08 01:01:55 -08002413 * cpuset_mems_allowed - return mems_allowed mask from a tasks cpuset.
2414 * @tsk: pointer to task_struct from which to obtain cpuset->mems_allowed.
2415 *
2416 * Description: Returns the nodemask_t mems_allowed of the cpuset
2417 * attached to the specified @tsk. Guaranteed to return some non-empty
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002418 * subset of node_states[N_MEMORY], even if this means going outside the
Paul Jackson909d75a2006-01-08 01:01:55 -08002419 * tasks cpuset.
2420 **/
2421
2422nodemask_t cpuset_mems_allowed(struct task_struct *tsk)
2423{
2424 nodemask_t mask;
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002425 unsigned long flags;
Paul Jackson909d75a2006-01-08 01:01:55 -08002426
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002427 spin_lock_irqsave(&callback_lock, flags);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002428 rcu_read_lock();
Li Zefanae1c8022014-07-09 16:48:32 +08002429 guarantee_online_mems(task_cs(tsk), &mask);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002430 rcu_read_unlock();
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002431 spin_unlock_irqrestore(&callback_lock, flags);
Paul Jackson909d75a2006-01-08 01:01:55 -08002432
2433 return mask;
2434}
2435
2436/**
Mel Gorman19770b32008-04-28 02:12:18 -07002437 * cpuset_nodemask_valid_mems_allowed - check nodemask vs. curremt mems_allowed
2438 * @nodemask: the nodemask to be checked
Randy Dunlapd9fd8a62005-07-27 11:45:11 -07002439 *
Mel Gorman19770b32008-04-28 02:12:18 -07002440 * Are any of the nodes in the nodemask allowed in current->mems_allowed?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 */
Mel Gorman19770b32008-04-28 02:12:18 -07002442int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Mel Gorman19770b32008-04-28 02:12:18 -07002444 return nodes_intersects(*nodemask, current->mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445}
2446
Paul Jackson9bf22292005-09-06 15:18:12 -07002447/*
Paul Menage78608362008-04-29 01:00:26 -07002448 * nearest_hardwall_ancestor() - Returns the nearest mem_exclusive or
2449 * mem_hardwall ancestor to the specified cpuset. Call holding
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002450 * callback_lock. If no ancestor is mem_exclusive or mem_hardwall
Paul Menage78608362008-04-29 01:00:26 -07002451 * (an unusual configuration), then returns the root cpuset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 */
Tejun Heoc9710d82013-08-08 20:11:22 -04002453static struct cpuset *nearest_hardwall_ancestor(struct cpuset *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Tejun Heoc4310692013-01-07 08:51:08 -08002455 while (!(is_mem_exclusive(cs) || is_mem_hardwall(cs)) && parent_cs(cs))
2456 cs = parent_cs(cs);
Paul Jackson9bf22292005-09-06 15:18:12 -07002457 return cs;
2458}
2459
2460/**
Vladimir Davydov344736f2014-10-20 15:50:30 +04002461 * cpuset_node_allowed - Can we allocate on a memory node?
David Rientjesa1bc5a42009-04-02 16:57:54 -07002462 * @node: is this an allowed node?
Paul Jackson02a0e532006-12-13 00:34:25 -08002463 * @gfp_mask: memory allocation flags
Paul Jackson9bf22292005-09-06 15:18:12 -07002464 *
David Rientjes6e276d22015-04-14 15:47:01 -07002465 * If we're in interrupt, yes, we can always allocate. If @node is set in
2466 * current's mems_allowed, yes. If it's not a __GFP_HARDWALL request and this
2467 * node is set in the nearest hardwalled cpuset ancestor to current's cpuset,
2468 * yes. If current has access to memory reserves due to TIF_MEMDIE, yes.
Paul Jackson9bf22292005-09-06 15:18:12 -07002469 * Otherwise, no.
2470 *
2471 * GFP_USER allocations are marked with the __GFP_HARDWALL bit,
David Rientjesc596d9f2007-05-06 14:49:32 -07002472 * and do not allow allocations outside the current tasks cpuset
2473 * unless the task has been OOM killed as is marked TIF_MEMDIE.
Paul Jackson9bf22292005-09-06 15:18:12 -07002474 * GFP_KERNEL allocations are not so marked, so can escape to the
Paul Menage78608362008-04-29 01:00:26 -07002475 * nearest enclosing hardwalled ancestor cpuset.
Paul Jackson9bf22292005-09-06 15:18:12 -07002476 *
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002477 * Scanning up parent cpusets requires callback_lock. The
Paul Jackson02a0e532006-12-13 00:34:25 -08002478 * __alloc_pages() routine only calls here with __GFP_HARDWALL bit
2479 * _not_ set if it's a GFP_KERNEL allocation, and all nodes in the
2480 * current tasks mems_allowed came up empty on the first pass over
2481 * the zonelist. So only GFP_KERNEL allocations, if all nodes in the
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002482 * cpuset are short of memory, might require taking the callback_lock.
Paul Jackson9bf22292005-09-06 15:18:12 -07002483 *
Paul Jackson36be57f2006-05-20 15:00:10 -07002484 * The first call here from mm/page_alloc:get_page_from_freelist()
Paul Jackson02a0e532006-12-13 00:34:25 -08002485 * has __GFP_HARDWALL set in gfp_mask, enforcing hardwall cpusets,
2486 * so no allocation on a node outside the cpuset is allowed (unless
2487 * in interrupt, of course).
Paul Jackson9bf22292005-09-06 15:18:12 -07002488 *
Paul Jackson36be57f2006-05-20 15:00:10 -07002489 * The second pass through get_page_from_freelist() doesn't even call
2490 * here for GFP_ATOMIC calls. For those calls, the __alloc_pages()
2491 * variable 'wait' is not set, and the bit ALLOC_CPUSET is not set
2492 * in alloc_flags. That logic and the checks below have the combined
2493 * affect that:
Paul Jackson9bf22292005-09-06 15:18:12 -07002494 * in_interrupt - any node ok (current task context irrelevant)
2495 * GFP_ATOMIC - any node ok
David Rientjesc596d9f2007-05-06 14:49:32 -07002496 * TIF_MEMDIE - any node ok
Paul Menage78608362008-04-29 01:00:26 -07002497 * GFP_KERNEL - any node in enclosing hardwalled cpuset ok
Paul Jackson9bf22292005-09-06 15:18:12 -07002498 * GFP_USER - only nodes in current tasks mems allowed ok.
Paul Jackson02a0e532006-12-13 00:34:25 -08002499 */
Vladimir Davydov344736f2014-10-20 15:50:30 +04002500int __cpuset_node_allowed(int node, gfp_t gfp_mask)
Paul Jackson9bf22292005-09-06 15:18:12 -07002501{
Tejun Heoc9710d82013-08-08 20:11:22 -04002502 struct cpuset *cs; /* current cpuset ancestors */
Paul Jackson29afd492006-03-24 03:16:12 -08002503 int allowed; /* is allocation in zone z allowed? */
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002504 unsigned long flags;
Paul Jackson9bf22292005-09-06 15:18:12 -07002505
David Rientjes6e276d22015-04-14 15:47:01 -07002506 if (in_interrupt())
Paul Jackson9bf22292005-09-06 15:18:12 -07002507 return 1;
Paul Jackson9bf22292005-09-06 15:18:12 -07002508 if (node_isset(node, current->mems_allowed))
2509 return 1;
David Rientjesc596d9f2007-05-06 14:49:32 -07002510 /*
2511 * Allow tasks that have access to memory reserves because they have
2512 * been OOM killed to get memory anywhere.
2513 */
2514 if (unlikely(test_thread_flag(TIF_MEMDIE)))
2515 return 1;
Paul Jackson9bf22292005-09-06 15:18:12 -07002516 if (gfp_mask & __GFP_HARDWALL) /* If hardwall request, stop here */
2517 return 0;
2518
Bob Picco5563e772005-11-13 16:06:35 -08002519 if (current->flags & PF_EXITING) /* Let dying task have memory */
2520 return 1;
2521
Paul Jackson9bf22292005-09-06 15:18:12 -07002522 /* Not hardwall and node outside mems_allowed: scan up cpusets */
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002523 spin_lock_irqsave(&callback_lock, flags);
Paul Jackson053199e2005-10-30 15:02:30 -08002524
Li Zefanb8dadcb2014-03-03 17:28:36 -05002525 rcu_read_lock();
Paul Menage78608362008-04-29 01:00:26 -07002526 cs = nearest_hardwall_ancestor(task_cs(current));
Li Zefan99afb0f2014-02-27 18:19:36 +08002527 allowed = node_isset(node, cs->mems_allowed);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002528 rcu_read_unlock();
Paul Jackson053199e2005-10-30 15:02:30 -08002529
Vladimir Davydov8447a0f2014-10-20 15:50:29 +04002530 spin_unlock_irqrestore(&callback_lock, flags);
Paul Jackson9bf22292005-09-06 15:18:12 -07002531 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002534/**
Jack Steiner6adef3e2010-05-26 14:42:49 -07002535 * cpuset_mem_spread_node() - On which node to begin search for a file page
2536 * cpuset_slab_spread_node() - On which node to begin search for a slab page
Paul Jackson825a46a2006-03-24 03:16:03 -08002537 *
2538 * If a task is marked PF_SPREAD_PAGE or PF_SPREAD_SLAB (as for
2539 * tasks in a cpuset with is_spread_page or is_spread_slab set),
2540 * and if the memory allocation used cpuset_mem_spread_node()
2541 * to determine on which node to start looking, as it will for
2542 * certain page cache or slab cache pages such as used for file
2543 * system buffers and inode caches, then instead of starting on the
2544 * local node to look for a free page, rather spread the starting
2545 * node around the tasks mems_allowed nodes.
2546 *
2547 * We don't have to worry about the returned node being offline
2548 * because "it can't happen", and even if it did, it would be ok.
2549 *
2550 * The routines calling guarantee_online_mems() are careful to
2551 * only set nodes in task->mems_allowed that are online. So it
2552 * should not be possible for the following code to return an
2553 * offline node. But if it did, that would be ok, as this routine
2554 * is not returning the node where the allocation must be, only
2555 * the node where the search should start. The zonelist passed to
2556 * __alloc_pages() will include all nodes. If the slab allocator
2557 * is passed an offline node, it will fall back to the local node.
2558 * See kmem_cache_alloc_node().
2559 */
2560
Jack Steiner6adef3e2010-05-26 14:42:49 -07002561static int cpuset_spread_node(int *rotor)
Paul Jackson825a46a2006-03-24 03:16:03 -08002562{
2563 int node;
2564
Jack Steiner6adef3e2010-05-26 14:42:49 -07002565 node = next_node(*rotor, current->mems_allowed);
Paul Jackson825a46a2006-03-24 03:16:03 -08002566 if (node == MAX_NUMNODES)
2567 node = first_node(current->mems_allowed);
Jack Steiner6adef3e2010-05-26 14:42:49 -07002568 *rotor = node;
Paul Jackson825a46a2006-03-24 03:16:03 -08002569 return node;
2570}
Jack Steiner6adef3e2010-05-26 14:42:49 -07002571
2572int cpuset_mem_spread_node(void)
2573{
Michal Hocko778d3b02011-07-26 16:08:30 -07002574 if (current->cpuset_mem_spread_rotor == NUMA_NO_NODE)
2575 current->cpuset_mem_spread_rotor =
2576 node_random(&current->mems_allowed);
2577
Jack Steiner6adef3e2010-05-26 14:42:49 -07002578 return cpuset_spread_node(&current->cpuset_mem_spread_rotor);
2579}
2580
2581int cpuset_slab_spread_node(void)
2582{
Michal Hocko778d3b02011-07-26 16:08:30 -07002583 if (current->cpuset_slab_spread_rotor == NUMA_NO_NODE)
2584 current->cpuset_slab_spread_rotor =
2585 node_random(&current->mems_allowed);
2586
Jack Steiner6adef3e2010-05-26 14:42:49 -07002587 return cpuset_spread_node(&current->cpuset_slab_spread_rotor);
2588}
2589
Paul Jackson825a46a2006-03-24 03:16:03 -08002590EXPORT_SYMBOL_GPL(cpuset_mem_spread_node);
2591
2592/**
David Rientjesbbe373f2007-10-16 23:25:58 -07002593 * cpuset_mems_allowed_intersects - Does @tsk1's mems_allowed intersect @tsk2's?
2594 * @tsk1: pointer to task_struct of some task.
2595 * @tsk2: pointer to task_struct of some other task.
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002596 *
David Rientjesbbe373f2007-10-16 23:25:58 -07002597 * Description: Return true if @tsk1's mems_allowed intersects the
2598 * mems_allowed of @tsk2. Used by the OOM killer to determine if
2599 * one of the task's memory usage might impact the memory available
2600 * to the other.
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002601 **/
2602
David Rientjesbbe373f2007-10-16 23:25:58 -07002603int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
2604 const struct task_struct *tsk2)
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002605{
David Rientjesbbe373f2007-10-16 23:25:58 -07002606 return nodes_intersects(tsk1->mems_allowed, tsk2->mems_allowed);
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002607}
2608
David Rientjes75aa1992009-01-06 14:39:01 -08002609/**
David Rientjesda39da32015-11-05 18:48:05 -08002610 * cpuset_print_current_mems_allowed - prints current's cpuset and mems_allowed
David Rientjes75aa1992009-01-06 14:39:01 -08002611 *
David Rientjesda39da32015-11-05 18:48:05 -08002612 * Description: Prints current's name, cpuset name, and cached copy of its
Li Zefanb8dadcb2014-03-03 17:28:36 -05002613 * mems_allowed to the kernel log.
David Rientjes75aa1992009-01-06 14:39:01 -08002614 */
David Rientjesda39da32015-11-05 18:48:05 -08002615void cpuset_print_current_mems_allowed(void)
David Rientjes75aa1992009-01-06 14:39:01 -08002616{
Li Zefanb8dadcb2014-03-03 17:28:36 -05002617 struct cgroup *cgrp;
David Rientjes75aa1992009-01-06 14:39:01 -08002618
Li Zefanb8dadcb2014-03-03 17:28:36 -05002619 rcu_read_lock();
Li Zefan63f43f52013-01-25 16:08:01 +08002620
David Rientjesda39da32015-11-05 18:48:05 -08002621 cgrp = task_cs(current)->css.cgroup;
2622 pr_info("%s cpuset=", current->comm);
Tejun Heoe61734c2014-02-12 09:29:50 -05002623 pr_cont_cgroup_name(cgrp);
David Rientjesda39da32015-11-05 18:48:05 -08002624 pr_cont(" mems_allowed=%*pbl\n",
2625 nodemask_pr_args(&current->mems_allowed));
Li Zefanf440d982013-03-01 15:02:15 +08002626
Li Zefancfb59662013-03-12 10:28:39 +08002627 rcu_read_unlock();
David Rientjes75aa1992009-01-06 14:39:01 -08002628}
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630/*
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002631 * Collection of memory_pressure is suppressed unless
2632 * this flag is enabled by writing "1" to the special
2633 * cpuset file 'memory_pressure_enabled' in the root cpuset.
2634 */
2635
Paul Jacksonc5b2aff82006-01-08 01:01:51 -08002636int cpuset_memory_pressure_enabled __read_mostly;
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002637
2638/**
2639 * cpuset_memory_pressure_bump - keep stats of per-cpuset reclaims.
2640 *
2641 * Keep a running average of the rate of synchronous (direct)
2642 * page reclaim efforts initiated by tasks in each cpuset.
2643 *
2644 * This represents the rate at which some task in the cpuset
2645 * ran low on memory on all nodes it was allowed to use, and
2646 * had to enter the kernels page reclaim code in an effort to
2647 * create more free memory by tossing clean pages or swapping
2648 * or writing dirty pages.
2649 *
2650 * Display to user space in the per-cpuset read-only file
2651 * "memory_pressure". Value displayed is an integer
2652 * representing the recent rate of entry into the synchronous
2653 * (direct) page reclaim by any task attached to the cpuset.
2654 **/
2655
2656void __cpuset_memory_pressure_bump(void)
2657{
Li Zefanb8dadcb2014-03-03 17:28:36 -05002658 rcu_read_lock();
Paul Menage8793d852007-10-18 23:39:39 -07002659 fmeter_markevent(&task_cs(current)->fmeter);
Li Zefanb8dadcb2014-03-03 17:28:36 -05002660 rcu_read_unlock();
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002661}
2662
Paul Menage8793d852007-10-18 23:39:39 -07002663#ifdef CONFIG_PROC_PID_CPUSET
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002664/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 * proc_cpuset_show()
2666 * - Print tasks cpuset path into seq_file.
2667 * - Used for /proc/<pid>/cpuset.
Paul Jackson053199e2005-10-30 15:02:30 -08002668 * - No need to task_lock(tsk) on this tsk->cpuset reference, as it
2669 * doesn't really matter if tsk->cpuset changes after we read it,
Tejun Heo5d21cc22013-01-07 08:51:08 -08002670 * and we take cpuset_mutex, keeping cpuset_attach() from changing it
Paul Menage2df167a2008-02-07 00:14:45 -08002671 * anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 */
Zefan Li52de4772014-09-18 16:03:36 +08002673int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
2674 struct pid *pid, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
Tejun Heoe61734c2014-02-12 09:29:50 -05002676 char *buf, *p;
Paul Menage8793d852007-10-18 23:39:39 -07002677 struct cgroup_subsys_state *css;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002678 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Eric W. Biederman99f89552006-06-26 00:25:55 -07002680 retval = -ENOMEM;
Tejun Heoe61734c2014-02-12 09:29:50 -05002681 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (!buf)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002683 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Tejun Heoe61734c2014-02-12 09:29:50 -05002685 retval = -ENAMETOOLONG;
Li Zefan27e89ae2013-01-15 14:10:57 +08002686 rcu_read_lock();
Tejun Heo073219e2014-02-08 10:36:58 -05002687 css = task_css(tsk, cpuset_cgrp_id);
Tejun Heoe61734c2014-02-12 09:29:50 -05002688 p = cgroup_path(css->cgroup, buf, PATH_MAX);
Li Zefan27e89ae2013-01-15 14:10:57 +08002689 rcu_read_unlock();
Tejun Heoe61734c2014-02-12 09:29:50 -05002690 if (!p)
Zefan Li52de4772014-09-18 16:03:36 +08002691 goto out_free;
Tejun Heoe61734c2014-02-12 09:29:50 -05002692 seq_puts(m, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 seq_putc(m, '\n');
Tejun Heoe61734c2014-02-12 09:29:50 -05002694 retval = 0;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002695out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 kfree(buf);
Eric W. Biederman99f89552006-06-26 00:25:55 -07002697out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 return retval;
2699}
Paul Menage8793d852007-10-18 23:39:39 -07002700#endif /* CONFIG_PROC_PID_CPUSET */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Heiko Carstensd01d4822009-09-21 11:06:27 +02002702/* Display task mems_allowed in /proc/<pid>/status file. */
Eric W. Biedermandf5f8312008-02-08 04:18:33 -08002703void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Tejun Heoe8e6d972015-02-13 14:37:23 -08002705 seq_printf(m, "Mems_allowed:\t%*pb\n",
2706 nodemask_pr_args(&task->mems_allowed));
2707 seq_printf(m, "Mems_allowed_list:\t%*pbl\n",
2708 nodemask_pr_args(&task->mems_allowed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}