blob: 74e412f908dba18a1428b05256650dcfbb57417b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Paul Jackson202f72d2006-01-08 01:01:57 -080063/*
64 * Tracks how many cpusets are currently defined in system.
65 * When there is only one cpuset (the root cpuset) we can
66 * short circuit some hooks.
67 */
Paul Jackson7edc5962006-01-08 01:02:03 -080068int number_of_cpusets __read_mostly;
Paul Jackson202f72d2006-01-08 01:01:57 -080069
Paul Menage2df167a2008-02-07 00:14:45 -080070/* Forward declare cgroup structures */
Paul Menage8793d852007-10-18 23:39:39 -070071struct cgroup_subsys cpuset_subsys;
72struct cpuset;
73
Paul Jackson3e0d98b2006-01-08 01:01:49 -080074/* See "Frequency meter" comments, below. */
75
76struct fmeter {
77 int cnt; /* unprocessed events count */
78 int val; /* most recent output value */
79 time_t time; /* clock (secs) when val computed */
80 spinlock_t lock; /* guards read or write of above */
81};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct cpuset {
Paul Menage8793d852007-10-18 23:39:39 -070084 struct cgroup_subsys_state css;
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned long flags; /* "unsigned long" so bitops work */
Li Zefan300ed6c2009-01-07 18:08:44 -080087 cpumask_var_t cpus_allowed; /* CPUs allowed to tasks in cpuset */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 nodemask_t mems_allowed; /* Memory Nodes allowed to tasks */
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct cpuset *parent; /* my parent */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Paul Jackson3e0d98b2006-01-08 01:01:49 -080092 struct fmeter fmeter; /* memory_pressure filter */
Paul Jackson029190c2007-10-18 23:40:20 -070093
94 /* partition number for rebuild_sched_domains() */
95 int pn;
Cliff Wickman956db3c2008-02-07 00:14:43 -080096
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +090097 /* for custom sched domain */
98 int relax_domain_level;
99
Uwe Kleine-König732bee72010-06-11 12:16:59 +0200100 /* used for walking a cpuset hierarchy */
Cliff Wickman956db3c2008-02-07 00:14:43 -0800101 struct list_head stack_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Paul Menage8793d852007-10-18 23:39:39 -0700104/* Retrieve the cpuset for a cgroup */
105static inline struct cpuset *cgroup_cs(struct cgroup *cont)
106{
107 return container_of(cgroup_subsys_state(cont, cpuset_subsys_id),
108 struct cpuset, css);
109}
110
111/* Retrieve the cpuset for a task */
112static inline struct cpuset *task_cs(struct task_struct *task)
113{
114 return container_of(task_subsys_state(task, cpuset_subsys_id),
115 struct cpuset, css);
116}
Paul Menage8793d852007-10-18 23:39:39 -0700117
David Rientjesb2462722011-12-19 17:11:52 -0800118#ifdef CONFIG_NUMA
119static inline bool task_has_mempolicy(struct task_struct *task)
120{
121 return task->mempolicy;
122}
123#else
124static inline bool task_has_mempolicy(struct task_struct *task)
125{
126 return false;
127}
128#endif
129
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* bits in struct cpuset flags field */
132typedef enum {
Tejun Heoefeb77b2013-01-07 08:51:07 -0800133 CS_ONLINE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 CS_CPU_EXCLUSIVE,
135 CS_MEM_EXCLUSIVE,
Paul Menage78608362008-04-29 01:00:26 -0700136 CS_MEM_HARDWALL,
Paul Jackson45b07ef2006-01-08 01:00:56 -0800137 CS_MEMORY_MIGRATE,
Paul Jackson029190c2007-10-18 23:40:20 -0700138 CS_SCHED_LOAD_BALANCE,
Paul Jackson825a46a2006-03-24 03:16:03 -0800139 CS_SPREAD_PAGE,
140 CS_SPREAD_SLAB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141} cpuset_flagbits_t;
142
143/* convenient tests for these bits */
Tejun Heoefeb77b2013-01-07 08:51:07 -0800144static inline bool is_cpuset_online(const struct cpuset *cs)
145{
146 return test_bit(CS_ONLINE, &cs->flags);
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static inline int is_cpu_exclusive(const struct cpuset *cs)
150{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800151 return test_bit(CS_CPU_EXCLUSIVE, &cs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154static inline int is_mem_exclusive(const struct cpuset *cs)
155{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800156 return test_bit(CS_MEM_EXCLUSIVE, &cs->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Paul Menage78608362008-04-29 01:00:26 -0700159static inline int is_mem_hardwall(const struct cpuset *cs)
160{
161 return test_bit(CS_MEM_HARDWALL, &cs->flags);
162}
163
Paul Jackson029190c2007-10-18 23:40:20 -0700164static inline int is_sched_load_balance(const struct cpuset *cs)
165{
166 return test_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
167}
168
Paul Jackson45b07ef2006-01-08 01:00:56 -0800169static inline int is_memory_migrate(const struct cpuset *cs)
170{
Paul Jackson7b5b9ef2006-03-24 03:16:00 -0800171 return test_bit(CS_MEMORY_MIGRATE, &cs->flags);
Paul Jackson45b07ef2006-01-08 01:00:56 -0800172}
173
Paul Jackson825a46a2006-03-24 03:16:03 -0800174static inline int is_spread_page(const struct cpuset *cs)
175{
176 return test_bit(CS_SPREAD_PAGE, &cs->flags);
177}
178
179static inline int is_spread_slab(const struct cpuset *cs)
180{
181 return test_bit(CS_SPREAD_SLAB, &cs->flags);
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static struct cpuset top_cpuset = {
Tejun Heoefeb77b2013-01-07 08:51:07 -0800185 .flags = ((1 << CS_ONLINE) | (1 << CS_CPU_EXCLUSIVE) |
186 (1 << CS_MEM_EXCLUSIVE)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
Tejun Heoae8086c2013-01-07 08:51:07 -0800189/**
190 * cpuset_for_each_child - traverse online children of a cpuset
191 * @child_cs: loop cursor pointing to the current child
192 * @pos_cgrp: used for iteration
193 * @parent_cs: target cpuset to walk children of
194 *
195 * Walk @child_cs through the online children of @parent_cs. Must be used
196 * with RCU read locked.
197 */
198#define cpuset_for_each_child(child_cs, pos_cgrp, parent_cs) \
199 cgroup_for_each_child((pos_cgrp), (parent_cs)->css.cgroup) \
200 if (is_cpuset_online(((child_cs) = cgroup_cs((pos_cgrp)))))
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*
Paul Menage2df167a2008-02-07 00:14:45 -0800203 * There are two global mutexes guarding cpuset structures. The first
204 * is the main control groups cgroup_mutex, accessed via
205 * cgroup_lock()/cgroup_unlock(). The second is the cpuset-specific
206 * callback_mutex, below. They can nest. It is ok to first take
207 * cgroup_mutex, then nest callback_mutex. We also require taking
208 * task_lock() when dereferencing a task's cpuset pointer. See "The
209 * task_lock() exception", at the end of this comment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800211 * A task must hold both mutexes to modify cpusets. If a task
Paul Menage2df167a2008-02-07 00:14:45 -0800212 * holds cgroup_mutex, then it blocks others wanting that mutex,
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800213 * ensuring that it is the only task able to also acquire callback_mutex
Paul Jackson053199e2005-10-30 15:02:30 -0800214 * and be able to modify cpusets. It can perform various checks on
215 * the cpuset structure first, knowing nothing will change. It can
Paul Menage2df167a2008-02-07 00:14:45 -0800216 * also allocate memory while just holding cgroup_mutex. While it is
Paul Jackson053199e2005-10-30 15:02:30 -0800217 * performing these checks, various callback routines can briefly
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800218 * acquire callback_mutex to query cpusets. Once it is ready to make
219 * the changes, it takes callback_mutex, blocking everyone else.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
Paul Jackson053199e2005-10-30 15:02:30 -0800221 * Calls to the kernel memory allocator can not be made while holding
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800222 * callback_mutex, as that would risk double tripping on callback_mutex
Paul Jackson053199e2005-10-30 15:02:30 -0800223 * from one of the callbacks into the cpuset code from within
224 * __alloc_pages().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 *
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800226 * If a task is only holding callback_mutex, then it has read-only
Paul Jackson053199e2005-10-30 15:02:30 -0800227 * access to cpusets.
228 *
Miao Xie58568d22009-06-16 15:31:49 -0700229 * Now, the task_struct fields mems_allowed and mempolicy may be changed
230 * by other task, we use alloc_lock in the task_struct fields to protect
231 * them.
Paul Jackson053199e2005-10-30 15:02:30 -0800232 *
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800233 * The cpuset_common_file_read() handlers only hold callback_mutex across
Paul Jackson053199e2005-10-30 15:02:30 -0800234 * small pieces of code, such as when reading out possibly multi-word
235 * cpumasks and nodemasks.
236 *
Paul Menage2df167a2008-02-07 00:14:45 -0800237 * Accessing a task's cpuset should be done in accordance with the
238 * guidelines for accessing subsystem state in kernel/cgroup.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 */
240
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800241static DEFINE_MUTEX(callback_mutex);
Paul Jackson4247bdc2005-09-10 00:26:06 -0700242
Max Krasnyanskycf417142008-08-11 14:33:53 -0700243/*
David Rientjes75aa1992009-01-06 14:39:01 -0800244 * cpuset_buffer_lock protects both the cpuset_name and cpuset_nodelist
245 * buffers. They are statically allocated to prevent using excess stack
246 * when calling cpuset_print_task_mems_allowed().
247 */
248#define CPUSET_NAME_LEN (128)
249#define CPUSET_NODELIST_LEN (256)
250static char cpuset_name[CPUSET_NAME_LEN];
251static char cpuset_nodelist[CPUSET_NODELIST_LEN];
252static DEFINE_SPINLOCK(cpuset_buffer_lock);
253
254/*
Tejun Heo3a5a6d02013-01-07 08:51:07 -0800255 * CPU / memory hotplug is handled asynchronously.
256 */
257static void cpuset_hotplug_workfn(struct work_struct *work);
258
259static DECLARE_WORK(cpuset_hotplug_work, cpuset_hotplug_workfn);
260
261/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700262 * This is ugly, but preserves the userspace API for existing cpuset
Paul Menage8793d852007-10-18 23:39:39 -0700263 * users. If someone tries to mount the "cpuset" filesystem, we
Max Krasnyanskycf417142008-08-11 14:33:53 -0700264 * silently switch it to mount "cgroup" instead
265 */
Al Virof7e83572010-07-26 13:23:11 +0400266static struct dentry *cpuset_mount(struct file_system_type *fs_type,
267 int flags, const char *unused_dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Paul Menage8793d852007-10-18 23:39:39 -0700269 struct file_system_type *cgroup_fs = get_fs_type("cgroup");
Al Virof7e83572010-07-26 13:23:11 +0400270 struct dentry *ret = ERR_PTR(-ENODEV);
Paul Menage8793d852007-10-18 23:39:39 -0700271 if (cgroup_fs) {
272 char mountopts[] =
273 "cpuset,noprefix,"
274 "release_agent=/sbin/cpuset_release_agent";
Al Virof7e83572010-07-26 13:23:11 +0400275 ret = cgroup_fs->mount(cgroup_fs, flags,
276 unused_dev_name, mountopts);
Paul Menage8793d852007-10-18 23:39:39 -0700277 put_filesystem(cgroup_fs);
278 }
279 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static struct file_system_type cpuset_fs_type = {
283 .name = "cpuset",
Al Virof7e83572010-07-26 13:23:11 +0400284 .mount = cpuset_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Li Zefan300ed6c2009-01-07 18:08:44 -0800288 * Return in pmask the portion of a cpusets's cpus_allowed that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * are online. If none are online, walk up the cpuset hierarchy
290 * until we find one that does have some online cpus. If we get
291 * all the way to the top and still haven't found any online cpus,
Rusty Russell5f054e32012-03-29 15:38:31 +1030292 * return cpu_online_mask. Or if passed a NULL cs from an exit'ing
293 * task, return cpu_online_mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
295 * One way or another, we guarantee to return some non-empty subset
Rusty Russell5f054e32012-03-29 15:38:31 +1030296 * of cpu_online_mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 *
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800298 * Call with callback_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
300
Li Zefan6af866a2009-01-07 18:08:45 -0800301static void guarantee_online_cpus(const struct cpuset *cs,
302 struct cpumask *pmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Li Zefan300ed6c2009-01-07 18:08:44 -0800304 while (cs && !cpumask_intersects(cs->cpus_allowed, cpu_online_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 cs = cs->parent;
306 if (cs)
Li Zefan300ed6c2009-01-07 18:08:44 -0800307 cpumask_and(pmask, cs->cpus_allowed, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 else
Li Zefan300ed6c2009-01-07 18:08:44 -0800309 cpumask_copy(pmask, cpu_online_mask);
310 BUG_ON(!cpumask_intersects(pmask, cpu_online_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/*
314 * Return in *pmask the portion of a cpusets's mems_allowed that
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700315 * are online, with memory. If none are online with memory, walk
316 * up the cpuset hierarchy until we find one that does have some
317 * online mems. If we get all the way to the top and still haven't
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800318 * found any online mems, return node_states[N_MEMORY].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
320 * One way or another, we guarantee to return some non-empty subset
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800321 * of node_states[N_MEMORY].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800323 * Call with callback_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 */
325
326static void guarantee_online_mems(const struct cpuset *cs, nodemask_t *pmask)
327{
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700328 while (cs && !nodes_intersects(cs->mems_allowed,
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800329 node_states[N_MEMORY]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 cs = cs->parent;
331 if (cs)
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700332 nodes_and(*pmask, cs->mems_allowed,
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800333 node_states[N_MEMORY]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 else
Lai Jiangshan38d7bee2012-12-12 13:51:24 -0800335 *pmask = node_states[N_MEMORY];
336 BUG_ON(!nodes_intersects(*pmask, node_states[N_MEMORY]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Miao Xief3b39d42009-06-16 15:31:46 -0700339/*
340 * update task's spread flag if cpuset's page/slab spread flag is set
341 *
342 * Called with callback_mutex/cgroup_mutex held
343 */
344static void cpuset_update_task_spread_flag(struct cpuset *cs,
345 struct task_struct *tsk)
346{
347 if (is_spread_page(cs))
348 tsk->flags |= PF_SPREAD_PAGE;
349 else
350 tsk->flags &= ~PF_SPREAD_PAGE;
351 if (is_spread_slab(cs))
352 tsk->flags |= PF_SPREAD_SLAB;
353 else
354 tsk->flags &= ~PF_SPREAD_SLAB;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/*
358 * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
359 *
360 * One cpuset is a subset of another if all its allowed CPUs and
361 * Memory Nodes are a subset of the other, and its exclusive flags
Paul Menage2df167a2008-02-07 00:14:45 -0800362 * are only set if the other's are set. Call holding cgroup_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
364
365static int is_cpuset_subset(const struct cpuset *p, const struct cpuset *q)
366{
Li Zefan300ed6c2009-01-07 18:08:44 -0800367 return cpumask_subset(p->cpus_allowed, q->cpus_allowed) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 nodes_subset(p->mems_allowed, q->mems_allowed) &&
369 is_cpu_exclusive(p) <= is_cpu_exclusive(q) &&
370 is_mem_exclusive(p) <= is_mem_exclusive(q);
371}
372
Li Zefan645fcc92009-01-07 18:08:43 -0800373/**
374 * alloc_trial_cpuset - allocate a trial cpuset
375 * @cs: the cpuset that the trial cpuset duplicates
376 */
377static struct cpuset *alloc_trial_cpuset(const struct cpuset *cs)
378{
Li Zefan300ed6c2009-01-07 18:08:44 -0800379 struct cpuset *trial;
380
381 trial = kmemdup(cs, sizeof(*cs), GFP_KERNEL);
382 if (!trial)
383 return NULL;
384
385 if (!alloc_cpumask_var(&trial->cpus_allowed, GFP_KERNEL)) {
386 kfree(trial);
387 return NULL;
388 }
389 cpumask_copy(trial->cpus_allowed, cs->cpus_allowed);
390
391 return trial;
Li Zefan645fcc92009-01-07 18:08:43 -0800392}
393
394/**
395 * free_trial_cpuset - free the trial cpuset
396 * @trial: the trial cpuset to be freed
397 */
398static void free_trial_cpuset(struct cpuset *trial)
399{
Li Zefan300ed6c2009-01-07 18:08:44 -0800400 free_cpumask_var(trial->cpus_allowed);
Li Zefan645fcc92009-01-07 18:08:43 -0800401 kfree(trial);
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/*
405 * validate_change() - Used to validate that any proposed cpuset change
406 * follows the structural rules for cpusets.
407 *
408 * If we replaced the flag and mask values of the current cpuset
409 * (cur) with those values in the trial cpuset (trial), would
410 * our various subset and exclusive rules still be valid? Presumes
Paul Menage2df167a2008-02-07 00:14:45 -0800411 * cgroup_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
413 * 'cur' is the address of an actual, in-use cpuset. Operations
414 * such as list traversal that depend on the actual address of the
415 * cpuset in the list must use cur below, not trial.
416 *
417 * 'trial' is the address of bulk structure copy of cur, with
418 * perhaps one or more of the fields cpus_allowed, mems_allowed,
419 * or flags changed to new, trial values.
420 *
421 * Return 0 if valid, -errno if not.
422 */
423
424static int validate_change(const struct cpuset *cur, const struct cpuset *trial)
425{
Paul Menage8793d852007-10-18 23:39:39 -0700426 struct cgroup *cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct cpuset *c, *par;
Tejun Heoae8086c2013-01-07 08:51:07 -0800428 int ret;
429
430 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* Each of our child cpusets must be a subset of us */
Tejun Heoae8086c2013-01-07 08:51:07 -0800433 ret = -EBUSY;
434 cpuset_for_each_child(c, cont, cur)
435 if (!is_cpuset_subset(c, trial))
436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* Remaining checks don't apply to root cpuset */
Tejun Heoae8086c2013-01-07 08:51:07 -0800439 ret = 0;
Paul Jackson69604062006-12-06 20:36:15 -0800440 if (cur == &top_cpuset)
Tejun Heoae8086c2013-01-07 08:51:07 -0800441 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Paul Jackson69604062006-12-06 20:36:15 -0800443 par = cur->parent;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /* We must be a subset of our parent cpuset */
Tejun Heoae8086c2013-01-07 08:51:07 -0800446 ret = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!is_cpuset_subset(trial, par))
Tejun Heoae8086c2013-01-07 08:51:07 -0800448 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Paul Menage2df167a2008-02-07 00:14:45 -0800450 /*
451 * If either I or some sibling (!= me) is exclusive, we can't
452 * overlap
453 */
Tejun Heoae8086c2013-01-07 08:51:07 -0800454 ret = -EINVAL;
455 cpuset_for_each_child(c, cont, par) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if ((is_cpu_exclusive(trial) || is_cpu_exclusive(c)) &&
457 c != cur &&
Li Zefan300ed6c2009-01-07 18:08:44 -0800458 cpumask_intersects(trial->cpus_allowed, c->cpus_allowed))
Tejun Heoae8086c2013-01-07 08:51:07 -0800459 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if ((is_mem_exclusive(trial) || is_mem_exclusive(c)) &&
461 c != cur &&
462 nodes_intersects(trial->mems_allowed, c->mems_allowed))
Tejun Heoae8086c2013-01-07 08:51:07 -0800463 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
Paul Jackson020958b2007-10-18 23:40:21 -0700466 /* Cpusets with tasks can't have empty cpus_allowed or mems_allowed */
Tejun Heoae8086c2013-01-07 08:51:07 -0800467 ret = -ENOSPC;
468 if (cgroup_task_count(cur->css.cgroup) &&
469 (cpumask_empty(trial->cpus_allowed) ||
470 nodes_empty(trial->mems_allowed)))
471 goto out;
Paul Jackson020958b2007-10-18 23:40:21 -0700472
Tejun Heoae8086c2013-01-07 08:51:07 -0800473 ret = 0;
474out:
475 rcu_read_unlock();
476 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Paul Menagedb7f47c2009-04-02 16:57:55 -0700479#ifdef CONFIG_SMP
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -0700480/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700481 * Helper routine for generate_sched_domains().
Paul Jackson029190c2007-10-18 23:40:20 -0700482 * Do cpusets a, b have overlapping cpus_allowed masks?
483 */
Paul Jackson029190c2007-10-18 23:40:20 -0700484static int cpusets_overlap(struct cpuset *a, struct cpuset *b)
485{
Li Zefan300ed6c2009-01-07 18:08:44 -0800486 return cpumask_intersects(a->cpus_allowed, b->cpus_allowed);
Paul Jackson029190c2007-10-18 23:40:20 -0700487}
488
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900489static void
490update_domain_attr(struct sched_domain_attr *dattr, struct cpuset *c)
491{
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900492 if (dattr->relax_domain_level < c->relax_domain_level)
493 dattr->relax_domain_level = c->relax_domain_level;
494 return;
495}
496
Lai Jiangshanf5393692008-07-29 22:33:22 -0700497static void
498update_domain_attr_tree(struct sched_domain_attr *dattr, struct cpuset *c)
499{
500 LIST_HEAD(q);
501
502 list_add(&c->stack_list, &q);
503 while (!list_empty(&q)) {
504 struct cpuset *cp;
505 struct cgroup *cont;
506 struct cpuset *child;
507
508 cp = list_first_entry(&q, struct cpuset, stack_list);
509 list_del(q.next);
510
Li Zefan300ed6c2009-01-07 18:08:44 -0800511 if (cpumask_empty(cp->cpus_allowed))
Lai Jiangshanf5393692008-07-29 22:33:22 -0700512 continue;
513
514 if (is_sched_load_balance(cp))
515 update_domain_attr(dattr, cp);
516
Tejun Heoae8086c2013-01-07 08:51:07 -0800517 rcu_read_lock();
518 cpuset_for_each_child(child, cont, cp)
Lai Jiangshanf5393692008-07-29 22:33:22 -0700519 list_add_tail(&child->stack_list, &q);
Tejun Heoae8086c2013-01-07 08:51:07 -0800520 rcu_read_unlock();
Lai Jiangshanf5393692008-07-29 22:33:22 -0700521 }
522}
523
Paul Jackson029190c2007-10-18 23:40:20 -0700524/*
Max Krasnyanskycf417142008-08-11 14:33:53 -0700525 * generate_sched_domains()
Paul Jackson029190c2007-10-18 23:40:20 -0700526 *
Max Krasnyanskycf417142008-08-11 14:33:53 -0700527 * This function builds a partial partition of the systems CPUs
528 * A 'partial partition' is a set of non-overlapping subsets whose
529 * union is a subset of that set.
530 * The output of this function needs to be passed to kernel/sched.c
531 * partition_sched_domains() routine, which will rebuild the scheduler's
532 * load balancing domains (sched domains) as specified by that partial
533 * partition.
Paul Jackson029190c2007-10-18 23:40:20 -0700534 *
Li Zefan45ce80f2009-01-15 13:50:59 -0800535 * See "What is sched_load_balance" in Documentation/cgroups/cpusets.txt
Paul Jackson029190c2007-10-18 23:40:20 -0700536 * for a background explanation of this.
537 *
538 * Does not return errors, on the theory that the callers of this
539 * routine would rather not worry about failures to rebuild sched
540 * domains when operating in the severe memory shortage situations
541 * that could cause allocation failures below.
542 *
Max Krasnyanskycf417142008-08-11 14:33:53 -0700543 * Must be called with cgroup_lock held.
Paul Jackson029190c2007-10-18 23:40:20 -0700544 *
545 * The three key local variables below are:
Li Zefanaeed6822008-07-29 22:33:24 -0700546 * q - a linked-list queue of cpuset pointers, used to implement a
Paul Jackson029190c2007-10-18 23:40:20 -0700547 * top-down scan of all cpusets. This scan loads a pointer
548 * to each cpuset marked is_sched_load_balance into the
549 * array 'csa'. For our purposes, rebuilding the schedulers
550 * sched domains, we can ignore !is_sched_load_balance cpusets.
551 * csa - (for CpuSet Array) Array of pointers to all the cpusets
552 * that need to be load balanced, for convenient iterative
553 * access by the subsequent code that finds the best partition,
554 * i.e the set of domains (subsets) of CPUs such that the
555 * cpus_allowed of every cpuset marked is_sched_load_balance
556 * is a subset of one of these domains, while there are as
557 * many such domains as possible, each as small as possible.
558 * doms - Conversion of 'csa' to an array of cpumasks, for passing to
559 * the kernel/sched.c routine partition_sched_domains() in a
560 * convenient format, that can be easily compared to the prior
561 * value to determine what partition elements (sched domains)
562 * were changed (added or removed.)
563 *
564 * Finding the best partition (set of domains):
565 * The triple nested loops below over i, j, k scan over the
566 * load balanced cpusets (using the array of cpuset pointers in
567 * csa[]) looking for pairs of cpusets that have overlapping
568 * cpus_allowed, but which don't have the same 'pn' partition
569 * number and gives them in the same partition number. It keeps
570 * looping on the 'restart' label until it can no longer find
571 * any such pairs.
572 *
573 * The union of the cpus_allowed masks from the set of
574 * all cpusets having the same 'pn' value then form the one
575 * element of the partition (one sched domain) to be passed to
576 * partition_sched_domains().
577 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030578static int generate_sched_domains(cpumask_var_t **domains,
Max Krasnyanskycf417142008-08-11 14:33:53 -0700579 struct sched_domain_attr **attributes)
Paul Jackson029190c2007-10-18 23:40:20 -0700580{
Max Krasnyanskycf417142008-08-11 14:33:53 -0700581 LIST_HEAD(q); /* queue of cpusets to be scanned */
Paul Jackson029190c2007-10-18 23:40:20 -0700582 struct cpuset *cp; /* scans q */
583 struct cpuset **csa; /* array of all cpuset ptrs */
584 int csn; /* how many cpuset ptrs in csa so far */
585 int i, j, k; /* indices for partition finding loops */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030586 cpumask_var_t *doms; /* resulting partition; i.e. sched domains */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900587 struct sched_domain_attr *dattr; /* attributes for custom domains */
Ingo Molnar15837152008-11-25 10:27:49 +0100588 int ndoms = 0; /* number of sched domains in result */
Li Zefan6af866a2009-01-07 18:08:45 -0800589 int nslot; /* next empty doms[] struct cpumask slot */
Paul Jackson029190c2007-10-18 23:40:20 -0700590
Paul Jackson029190c2007-10-18 23:40:20 -0700591 doms = NULL;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900592 dattr = NULL;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700593 csa = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -0700594
595 /* Special case for the 99% of systems with one, full, sched domain */
596 if (is_sched_load_balance(&top_cpuset)) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030597 ndoms = 1;
598 doms = alloc_sched_domains(ndoms);
Paul Jackson029190c2007-10-18 23:40:20 -0700599 if (!doms)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700600 goto done;
601
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900602 dattr = kmalloc(sizeof(struct sched_domain_attr), GFP_KERNEL);
603 if (dattr) {
604 *dattr = SD_ATTR_INIT;
Li Zefan93a65572008-07-29 22:33:23 -0700605 update_domain_attr_tree(dattr, &top_cpuset);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900606 }
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030607 cpumask_copy(doms[0], top_cpuset.cpus_allowed);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700608
Max Krasnyanskycf417142008-08-11 14:33:53 -0700609 goto done;
Paul Jackson029190c2007-10-18 23:40:20 -0700610 }
611
Paul Jackson029190c2007-10-18 23:40:20 -0700612 csa = kmalloc(number_of_cpusets * sizeof(cp), GFP_KERNEL);
613 if (!csa)
614 goto done;
615 csn = 0;
616
Li Zefanaeed6822008-07-29 22:33:24 -0700617 list_add(&top_cpuset.stack_list, &q);
618 while (!list_empty(&q)) {
Paul Jackson029190c2007-10-18 23:40:20 -0700619 struct cgroup *cont;
620 struct cpuset *child; /* scans child cpusets of cp */
Lai Jiangshan489a5392008-07-25 01:47:23 -0700621
Li Zefanaeed6822008-07-29 22:33:24 -0700622 cp = list_first_entry(&q, struct cpuset, stack_list);
623 list_del(q.next);
624
Li Zefan300ed6c2009-01-07 18:08:44 -0800625 if (cpumask_empty(cp->cpus_allowed))
Lai Jiangshan489a5392008-07-25 01:47:23 -0700626 continue;
627
Lai Jiangshanf5393692008-07-29 22:33:22 -0700628 /*
629 * All child cpusets contain a subset of the parent's cpus, so
630 * just skip them, and then we call update_domain_attr_tree()
631 * to calc relax_domain_level of the corresponding sched
632 * domain.
633 */
634 if (is_sched_load_balance(cp)) {
Paul Jackson029190c2007-10-18 23:40:20 -0700635 csa[csn++] = cp;
Lai Jiangshanf5393692008-07-29 22:33:22 -0700636 continue;
637 }
Lai Jiangshan489a5392008-07-25 01:47:23 -0700638
Tejun Heoae8086c2013-01-07 08:51:07 -0800639 rcu_read_lock();
640 cpuset_for_each_child(child, cont, cp)
Li Zefanaeed6822008-07-29 22:33:24 -0700641 list_add_tail(&child->stack_list, &q);
Tejun Heoae8086c2013-01-07 08:51:07 -0800642 rcu_read_unlock();
Paul Jackson029190c2007-10-18 23:40:20 -0700643 }
644
645 for (i = 0; i < csn; i++)
646 csa[i]->pn = i;
647 ndoms = csn;
648
649restart:
650 /* Find the best partition (set of sched domains) */
651 for (i = 0; i < csn; i++) {
652 struct cpuset *a = csa[i];
653 int apn = a->pn;
654
655 for (j = 0; j < csn; j++) {
656 struct cpuset *b = csa[j];
657 int bpn = b->pn;
658
659 if (apn != bpn && cpusets_overlap(a, b)) {
660 for (k = 0; k < csn; k++) {
661 struct cpuset *c = csa[k];
662
663 if (c->pn == bpn)
664 c->pn = apn;
665 }
666 ndoms--; /* one less element */
667 goto restart;
668 }
669 }
670 }
671
Max Krasnyanskycf417142008-08-11 14:33:53 -0700672 /*
673 * Now we know how many domains to create.
674 * Convert <csn, csa> to <ndoms, doms> and populate cpu masks.
675 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030676 doms = alloc_sched_domains(ndoms);
Li Zefan700018e2008-11-18 14:02:03 +0800677 if (!doms)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700678 goto done;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700679
680 /*
681 * The rest of the code, including the scheduler, can deal with
682 * dattr==NULL case. No need to abort if alloc fails.
683 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900684 dattr = kmalloc(ndoms * sizeof(struct sched_domain_attr), GFP_KERNEL);
Paul Jackson029190c2007-10-18 23:40:20 -0700685
686 for (nslot = 0, i = 0; i < csn; i++) {
687 struct cpuset *a = csa[i];
Li Zefan6af866a2009-01-07 18:08:45 -0800688 struct cpumask *dp;
Paul Jackson029190c2007-10-18 23:40:20 -0700689 int apn = a->pn;
690
Max Krasnyanskycf417142008-08-11 14:33:53 -0700691 if (apn < 0) {
692 /* Skip completed partitions */
693 continue;
Paul Jackson029190c2007-10-18 23:40:20 -0700694 }
Max Krasnyanskycf417142008-08-11 14:33:53 -0700695
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030696 dp = doms[nslot];
Max Krasnyanskycf417142008-08-11 14:33:53 -0700697
698 if (nslot == ndoms) {
699 static int warnings = 10;
700 if (warnings) {
701 printk(KERN_WARNING
702 "rebuild_sched_domains confused:"
703 " nslot %d, ndoms %d, csn %d, i %d,"
704 " apn %d\n",
705 nslot, ndoms, csn, i, apn);
706 warnings--;
707 }
708 continue;
709 }
710
Li Zefan6af866a2009-01-07 18:08:45 -0800711 cpumask_clear(dp);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700712 if (dattr)
713 *(dattr + nslot) = SD_ATTR_INIT;
714 for (j = i; j < csn; j++) {
715 struct cpuset *b = csa[j];
716
717 if (apn == b->pn) {
Li Zefan300ed6c2009-01-07 18:08:44 -0800718 cpumask_or(dp, dp, b->cpus_allowed);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700719 if (dattr)
720 update_domain_attr_tree(dattr + nslot, b);
721
722 /* Done with this partition */
723 b->pn = -1;
724 }
725 }
726 nslot++;
Paul Jackson029190c2007-10-18 23:40:20 -0700727 }
728 BUG_ON(nslot != ndoms);
729
Paul Jackson029190c2007-10-18 23:40:20 -0700730done:
Paul Jackson029190c2007-10-18 23:40:20 -0700731 kfree(csa);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700732
Li Zefan700018e2008-11-18 14:02:03 +0800733 /*
734 * Fallback to the default domain if kmalloc() failed.
735 * See comments in partition_sched_domains().
736 */
737 if (doms == NULL)
738 ndoms = 1;
739
Max Krasnyanskycf417142008-08-11 14:33:53 -0700740 *domains = doms;
741 *attributes = dattr;
742 return ndoms;
743}
744
745/*
746 * Rebuild scheduler domains.
747 *
Tejun Heo699140b2013-01-07 08:51:07 -0800748 * If the flag 'sched_load_balance' of any cpuset with non-empty
749 * 'cpus' changes, or if the 'cpus' allowed changes in any cpuset
750 * which has that flag enabled, or if any cpuset with a non-empty
751 * 'cpus' is removed, then call this routine to rebuild the
752 * scheduler's dynamic sched domains.
Max Krasnyanskycf417142008-08-11 14:33:53 -0700753 *
Tejun Heo699140b2013-01-07 08:51:07 -0800754 * Call with cgroup_mutex held. Takes get_online_cpus().
Max Krasnyanskycf417142008-08-11 14:33:53 -0700755 */
Tejun Heo699140b2013-01-07 08:51:07 -0800756static void rebuild_sched_domains_locked(void)
Max Krasnyanskycf417142008-08-11 14:33:53 -0700757{
758 struct sched_domain_attr *attr;
Rusty Russellacc3f5d2009-11-03 14:53:40 +1030759 cpumask_var_t *doms;
Max Krasnyanskycf417142008-08-11 14:33:53 -0700760 int ndoms;
761
Tejun Heo699140b2013-01-07 08:51:07 -0800762 WARN_ON_ONCE(!cgroup_lock_is_held());
Max Krasnyanskycf417142008-08-11 14:33:53 -0700763 get_online_cpus();
764
765 /* Generate domain masks and attrs */
Max Krasnyanskycf417142008-08-11 14:33:53 -0700766 ndoms = generate_sched_domains(&doms, &attr);
Max Krasnyanskycf417142008-08-11 14:33:53 -0700767
768 /* Have scheduler rebuild the domains */
769 partition_sched_domains(ndoms, doms, attr);
770
771 put_online_cpus();
772}
Paul Menagedb7f47c2009-04-02 16:57:55 -0700773#else /* !CONFIG_SMP */
Tejun Heo699140b2013-01-07 08:51:07 -0800774static void rebuild_sched_domains_locked(void)
Paul Menagedb7f47c2009-04-02 16:57:55 -0700775{
776}
777
Geert Uytterhoevene1b80902009-12-06 20:41:16 +0100778static int generate_sched_domains(cpumask_var_t **domains,
Paul Menagedb7f47c2009-04-02 16:57:55 -0700779 struct sched_domain_attr **attributes)
780{
781 *domains = NULL;
782 return 1;
783}
784#endif /* CONFIG_SMP */
Max Krasnyanskycf417142008-08-11 14:33:53 -0700785
Max Krasnyanskycf417142008-08-11 14:33:53 -0700786void rebuild_sched_domains(void)
787{
Tejun Heo699140b2013-01-07 08:51:07 -0800788 cgroup_lock();
789 rebuild_sched_domains_locked();
790 cgroup_unlock();
Paul Jackson029190c2007-10-18 23:40:20 -0700791}
792
Cliff Wickman58f47902008-02-07 00:14:44 -0800793/**
794 * cpuset_test_cpumask - test a task's cpus_allowed versus its cpuset's
795 * @tsk: task to test
796 * @scan: struct cgroup_scanner contained in its struct cpuset_hotplug_scanner
797 *
Paul Menage2df167a2008-02-07 00:14:45 -0800798 * Call with cgroup_mutex held. May take callback_mutex during call.
Cliff Wickman58f47902008-02-07 00:14:44 -0800799 * Called for each task in a cgroup by cgroup_scan_tasks().
800 * Return nonzero if this tasks's cpus_allowed mask should be changed (in other
801 * words, if its mask is not equal to its cpuset's mask).
Paul Jackson053199e2005-10-30 15:02:30 -0800802 */
Adrian Bunk9e0c9142008-04-29 01:00:25 -0700803static int cpuset_test_cpumask(struct task_struct *tsk,
804 struct cgroup_scanner *scan)
Cliff Wickman58f47902008-02-07 00:14:44 -0800805{
Li Zefan300ed6c2009-01-07 18:08:44 -0800806 return !cpumask_equal(&tsk->cpus_allowed,
Cliff Wickman58f47902008-02-07 00:14:44 -0800807 (cgroup_cs(scan->cg))->cpus_allowed);
808}
Paul Jackson053199e2005-10-30 15:02:30 -0800809
Cliff Wickman58f47902008-02-07 00:14:44 -0800810/**
811 * cpuset_change_cpumask - make a task's cpus_allowed the same as its cpuset's
812 * @tsk: task to test
813 * @scan: struct cgroup_scanner containing the cgroup of the task
814 *
815 * Called by cgroup_scan_tasks() for each task in a cgroup whose
816 * cpus_allowed mask needs to be changed.
817 *
818 * We don't need to re-check for the cgroup/cpuset membership, since we're
819 * holding cgroup_lock() at this point.
820 */
Adrian Bunk9e0c9142008-04-29 01:00:25 -0700821static void cpuset_change_cpumask(struct task_struct *tsk,
822 struct cgroup_scanner *scan)
Cliff Wickman58f47902008-02-07 00:14:44 -0800823{
Li Zefan300ed6c2009-01-07 18:08:44 -0800824 set_cpus_allowed_ptr(tsk, ((cgroup_cs(scan->cg))->cpus_allowed));
Cliff Wickman58f47902008-02-07 00:14:44 -0800825}
826
827/**
Miao Xie0b2f6302008-07-25 01:47:21 -0700828 * update_tasks_cpumask - Update the cpumasks of tasks in the cpuset.
829 * @cs: the cpuset in which each task's cpus_allowed mask needs to be changed
Li Zefan4e743392008-09-13 02:33:08 -0700830 * @heap: if NULL, defer allocating heap memory to cgroup_scan_tasks()
Miao Xie0b2f6302008-07-25 01:47:21 -0700831 *
832 * Called with cgroup_mutex held
833 *
834 * The cgroup_scan_tasks() function will scan all the tasks in a cgroup,
835 * calling callback functions for each.
836 *
Li Zefan4e743392008-09-13 02:33:08 -0700837 * No return value. It's guaranteed that cgroup_scan_tasks() always returns 0
838 * if @heap != NULL.
Miao Xie0b2f6302008-07-25 01:47:21 -0700839 */
Li Zefan4e743392008-09-13 02:33:08 -0700840static void update_tasks_cpumask(struct cpuset *cs, struct ptr_heap *heap)
Miao Xie0b2f6302008-07-25 01:47:21 -0700841{
842 struct cgroup_scanner scan;
Miao Xie0b2f6302008-07-25 01:47:21 -0700843
844 scan.cg = cs->css.cgroup;
845 scan.test_task = cpuset_test_cpumask;
846 scan.process_task = cpuset_change_cpumask;
Li Zefan4e743392008-09-13 02:33:08 -0700847 scan.heap = heap;
848 cgroup_scan_tasks(&scan);
Miao Xie0b2f6302008-07-25 01:47:21 -0700849}
850
851/**
Cliff Wickman58f47902008-02-07 00:14:44 -0800852 * update_cpumask - update the cpus_allowed mask of a cpuset and all tasks in it
853 * @cs: the cpuset to consider
854 * @buf: buffer of cpu numbers written to this cpuset
855 */
Li Zefan645fcc92009-01-07 18:08:43 -0800856static int update_cpumask(struct cpuset *cs, struct cpuset *trialcs,
857 const char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Li Zefan4e743392008-09-13 02:33:08 -0700859 struct ptr_heap heap;
Cliff Wickman58f47902008-02-07 00:14:44 -0800860 int retval;
861 int is_load_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Rusty Russell5f054e32012-03-29 15:38:31 +1030863 /* top_cpuset.cpus_allowed tracks cpu_online_mask; it's read-only */
Paul Jackson4c4d50f2006-08-27 01:23:51 -0700864 if (cs == &top_cpuset)
865 return -EACCES;
866
David Rientjes6f7f02e2007-05-08 00:31:43 -0700867 /*
Paul Jacksonc8d9c902008-02-07 00:14:46 -0800868 * An empty cpus_allowed is ok only if the cpuset has no tasks.
Paul Jackson020958b2007-10-18 23:40:21 -0700869 * Since cpulist_parse() fails on an empty mask, we special case
870 * that parsing. The validate_change() call ensures that cpusets
871 * with tasks have cpus.
David Rientjes6f7f02e2007-05-08 00:31:43 -0700872 */
Paul Jackson020958b2007-10-18 23:40:21 -0700873 if (!*buf) {
Li Zefan300ed6c2009-01-07 18:08:44 -0800874 cpumask_clear(trialcs->cpus_allowed);
David Rientjes6f7f02e2007-05-08 00:31:43 -0700875 } else {
Li Zefan300ed6c2009-01-07 18:08:44 -0800876 retval = cpulist_parse(buf, trialcs->cpus_allowed);
David Rientjes6f7f02e2007-05-08 00:31:43 -0700877 if (retval < 0)
878 return retval;
Lai Jiangshan37340742008-06-05 22:46:32 -0700879
Peter Zijlstra6ad4c182009-11-25 13:31:39 +0100880 if (!cpumask_subset(trialcs->cpus_allowed, cpu_active_mask))
Lai Jiangshan37340742008-06-05 22:46:32 -0700881 return -EINVAL;
David Rientjes6f7f02e2007-05-08 00:31:43 -0700882 }
Li Zefan645fcc92009-01-07 18:08:43 -0800883 retval = validate_change(cs, trialcs);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -0700884 if (retval < 0)
885 return retval;
Paul Jackson029190c2007-10-18 23:40:20 -0700886
Paul Menage8707d8b2007-10-18 23:40:22 -0700887 /* Nothing to do if the cpus didn't change */
Li Zefan300ed6c2009-01-07 18:08:44 -0800888 if (cpumask_equal(cs->cpus_allowed, trialcs->cpus_allowed))
Paul Menage8707d8b2007-10-18 23:40:22 -0700889 return 0;
Cliff Wickman58f47902008-02-07 00:14:44 -0800890
Li Zefan4e743392008-09-13 02:33:08 -0700891 retval = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
892 if (retval)
893 return retval;
894
Li Zefan645fcc92009-01-07 18:08:43 -0800895 is_load_balanced = is_sched_load_balance(trialcs);
Paul Jackson029190c2007-10-18 23:40:20 -0700896
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800897 mutex_lock(&callback_mutex);
Li Zefan300ed6c2009-01-07 18:08:44 -0800898 cpumask_copy(cs->cpus_allowed, trialcs->cpus_allowed);
Ingo Molnar3d3f26a2006-03-23 03:00:18 -0800899 mutex_unlock(&callback_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -0700900
Paul Menage8707d8b2007-10-18 23:40:22 -0700901 /*
902 * Scan tasks in the cpuset, and update the cpumasks of any
Cliff Wickman58f47902008-02-07 00:14:44 -0800903 * that need an update.
Paul Menage8707d8b2007-10-18 23:40:22 -0700904 */
Li Zefan4e743392008-09-13 02:33:08 -0700905 update_tasks_cpumask(cs, &heap);
906
907 heap_free(&heap);
Cliff Wickman58f47902008-02-07 00:14:44 -0800908
Paul Menage8707d8b2007-10-18 23:40:22 -0700909 if (is_load_balanced)
Tejun Heo699140b2013-01-07 08:51:07 -0800910 rebuild_sched_domains_locked();
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -0700911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Paul Jackson053199e2005-10-30 15:02:30 -0800914/*
Paul Jacksone4e364e2006-03-31 02:30:52 -0800915 * cpuset_migrate_mm
916 *
917 * Migrate memory region from one set of nodes to another.
918 *
919 * Temporarilly set tasks mems_allowed to target nodes of migration,
920 * so that the migration code can allocate pages on these nodes.
921 *
Paul Menage2df167a2008-02-07 00:14:45 -0800922 * Call holding cgroup_mutex, so current's cpuset won't change
Paul Jacksonc8d9c902008-02-07 00:14:46 -0800923 * during this call, as manage_mutex holds off any cpuset_attach()
Paul Jacksone4e364e2006-03-31 02:30:52 -0800924 * calls. Therefore we don't need to take task_lock around the
925 * call to guarantee_online_mems(), as we know no one is changing
Paul Menage2df167a2008-02-07 00:14:45 -0800926 * our task's cpuset.
Paul Jacksone4e364e2006-03-31 02:30:52 -0800927 *
Paul Jacksone4e364e2006-03-31 02:30:52 -0800928 * While the mm_struct we are migrating is typically from some
929 * other task, the task_struct mems_allowed that we are hacking
930 * is for our current task, which must allocate new pages for that
931 * migrating memory region.
Paul Jacksone4e364e2006-03-31 02:30:52 -0800932 */
933
934static void cpuset_migrate_mm(struct mm_struct *mm, const nodemask_t *from,
935 const nodemask_t *to)
936{
937 struct task_struct *tsk = current;
938
Paul Jacksone4e364e2006-03-31 02:30:52 -0800939 tsk->mems_allowed = *to;
Paul Jacksone4e364e2006-03-31 02:30:52 -0800940
941 do_migrate_pages(mm, from, to, MPOL_MF_MOVE_ALL);
942
Paul Menage8793d852007-10-18 23:39:39 -0700943 guarantee_online_mems(task_cs(tsk),&tsk->mems_allowed);
Paul Jacksone4e364e2006-03-31 02:30:52 -0800944}
945
Li Zefan3b6766f2009-04-02 16:57:51 -0700946/*
Miao Xie58568d22009-06-16 15:31:49 -0700947 * cpuset_change_task_nodemask - change task's mems_allowed and mempolicy
948 * @tsk: the task to change
949 * @newmems: new nodes that the task will be set
950 *
951 * In order to avoid seeing no nodes if the old and new nodes are disjoint,
952 * we structure updates as setting all new allowed nodes, then clearing newly
953 * disallowed ones.
Miao Xie58568d22009-06-16 15:31:49 -0700954 */
955static void cpuset_change_task_nodemask(struct task_struct *tsk,
956 nodemask_t *newmems)
957{
David Rientjesb2462722011-12-19 17:11:52 -0800958 bool need_loop;
David Rientjes89e8a242011-11-02 13:38:39 -0700959
Miao Xiec0ff7452010-05-24 14:32:08 -0700960 /*
961 * Allow tasks that have access to memory reserves because they have
962 * been OOM killed to get memory anywhere.
963 */
964 if (unlikely(test_thread_flag(TIF_MEMDIE)))
965 return;
966 if (current->flags & PF_EXITING) /* Let dying task have memory */
967 return;
968
969 task_lock(tsk);
David Rientjesb2462722011-12-19 17:11:52 -0800970 /*
971 * Determine if a loop is necessary if another thread is doing
972 * get_mems_allowed(). If at least one node remains unchanged and
973 * tsk does not have a mempolicy, then an empty nodemask will not be
974 * possible when mems_allowed is larger than a word.
975 */
976 need_loop = task_has_mempolicy(tsk) ||
977 !nodes_intersects(*newmems, tsk->mems_allowed);
Mel Gormancc9a6c82012-03-21 16:34:11 -0700978
979 if (need_loop)
980 write_seqcount_begin(&tsk->mems_allowed_seq);
981
Miao Xie58568d22009-06-16 15:31:49 -0700982 nodes_or(tsk->mems_allowed, tsk->mems_allowed, *newmems);
Miao Xiec0ff7452010-05-24 14:32:08 -0700983 mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP1);
984
Miao Xiec0ff7452010-05-24 14:32:08 -0700985 mpol_rebind_task(tsk, newmems, MPOL_REBIND_STEP2);
Miao Xie58568d22009-06-16 15:31:49 -0700986 tsk->mems_allowed = *newmems;
Mel Gormancc9a6c82012-03-21 16:34:11 -0700987
988 if (need_loop)
989 write_seqcount_end(&tsk->mems_allowed_seq);
990
Miao Xiec0ff7452010-05-24 14:32:08 -0700991 task_unlock(tsk);
Miao Xie58568d22009-06-16 15:31:49 -0700992}
993
994/*
995 * Update task's mems_allowed and rebind its mempolicy and vmas' mempolicy
996 * of it to cpuset's new mems_allowed, and migrate pages to new nodes if
997 * memory_migrate flag is set. Called with cgroup_mutex held.
Li Zefan3b6766f2009-04-02 16:57:51 -0700998 */
999static void cpuset_change_nodemask(struct task_struct *p,
1000 struct cgroup_scanner *scan)
1001{
1002 struct mm_struct *mm;
1003 struct cpuset *cs;
1004 int migrate;
1005 const nodemask_t *oldmem = scan->data;
Li Zefanee24d372011-03-23 16:42:47 -07001006 static nodemask_t newmems; /* protected by cgroup_mutex */
Miao Xie58568d22009-06-16 15:31:49 -07001007
1008 cs = cgroup_cs(scan->cg);
Li Zefanee24d372011-03-23 16:42:47 -07001009 guarantee_online_mems(cs, &newmems);
Miao Xie58568d22009-06-16 15:31:49 -07001010
Li Zefanee24d372011-03-23 16:42:47 -07001011 cpuset_change_task_nodemask(p, &newmems);
Miao Xie53feb292010-03-23 13:35:35 -07001012
Li Zefan3b6766f2009-04-02 16:57:51 -07001013 mm = get_task_mm(p);
1014 if (!mm)
1015 return;
1016
Li Zefan3b6766f2009-04-02 16:57:51 -07001017 migrate = is_memory_migrate(cs);
1018
1019 mpol_rebind_mm(mm, &cs->mems_allowed);
1020 if (migrate)
1021 cpuset_migrate_mm(mm, oldmem, &cs->mems_allowed);
1022 mmput(mm);
1023}
1024
Paul Menage8793d852007-10-18 23:39:39 -07001025static void *cpuset_being_rebound;
1026
Miao Xie0b2f6302008-07-25 01:47:21 -07001027/**
1028 * update_tasks_nodemask - Update the nodemasks of tasks in the cpuset.
1029 * @cs: the cpuset in which each task's mems_allowed mask needs to be changed
1030 * @oldmem: old mems_allowed of cpuset cs
Li Zefan010cfac2009-04-02 16:57:52 -07001031 * @heap: if NULL, defer allocating heap memory to cgroup_scan_tasks()
Miao Xie0b2f6302008-07-25 01:47:21 -07001032 *
1033 * Called with cgroup_mutex held
Li Zefan010cfac2009-04-02 16:57:52 -07001034 * No return value. It's guaranteed that cgroup_scan_tasks() always returns 0
1035 * if @heap != NULL.
Miao Xie0b2f6302008-07-25 01:47:21 -07001036 */
Li Zefan010cfac2009-04-02 16:57:52 -07001037static void update_tasks_nodemask(struct cpuset *cs, const nodemask_t *oldmem,
1038 struct ptr_heap *heap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Li Zefan3b6766f2009-04-02 16:57:51 -07001040 struct cgroup_scanner scan;
Paul Jackson59dac162006-01-08 01:01:52 -08001041
Lee Schermerhorn846a16b2008-04-28 02:13:09 -07001042 cpuset_being_rebound = cs; /* causes mpol_dup() rebind */
Paul Jackson42253992006-01-08 01:01:59 -08001043
Li Zefan3b6766f2009-04-02 16:57:51 -07001044 scan.cg = cs->css.cgroup;
1045 scan.test_task = NULL;
1046 scan.process_task = cpuset_change_nodemask;
Li Zefan010cfac2009-04-02 16:57:52 -07001047 scan.heap = heap;
Li Zefan3b6766f2009-04-02 16:57:51 -07001048 scan.data = (nodemask_t *)oldmem;
Paul Jackson42253992006-01-08 01:01:59 -08001049
1050 /*
Li Zefan3b6766f2009-04-02 16:57:51 -07001051 * The mpol_rebind_mm() call takes mmap_sem, which we couldn't
1052 * take while holding tasklist_lock. Forks can happen - the
1053 * mpol_dup() cpuset_being_rebound check will catch such forks,
1054 * and rebind their vma mempolicies too. Because we still hold
1055 * the global cgroup_mutex, we know that no other rebind effort
1056 * will be contending for the global variable cpuset_being_rebound.
Paul Jackson42253992006-01-08 01:01:59 -08001057 * It's ok if we rebind the same mm twice; mpol_rebind_mm()
Paul Jackson04c19fa2006-01-08 01:02:00 -08001058 * is idempotent. Also migrate pages in each mm to new nodes.
Paul Jackson42253992006-01-08 01:01:59 -08001059 */
Li Zefan010cfac2009-04-02 16:57:52 -07001060 cgroup_scan_tasks(&scan);
Paul Jackson42253992006-01-08 01:01:59 -08001061
Paul Menage2df167a2008-02-07 00:14:45 -08001062 /* We're done rebinding vmas to this cpuset's new mems_allowed. */
Paul Menage8793d852007-10-18 23:39:39 -07001063 cpuset_being_rebound = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Miao Xie0b2f6302008-07-25 01:47:21 -07001066/*
1067 * Handle user request to change the 'mems' memory placement
1068 * of a cpuset. Needs to validate the request, update the
Miao Xie58568d22009-06-16 15:31:49 -07001069 * cpusets mems_allowed, and for each task in the cpuset,
1070 * update mems_allowed and rebind task's mempolicy and any vma
1071 * mempolicies and if the cpuset is marked 'memory_migrate',
1072 * migrate the tasks pages to the new memory.
Miao Xie0b2f6302008-07-25 01:47:21 -07001073 *
1074 * Call with cgroup_mutex held. May take callback_mutex during call.
1075 * Will take tasklist_lock, scan tasklist for tasks in cpuset cs,
1076 * lock each such tasks mm->mmap_sem, scan its vma's and rebind
1077 * their mempolicies to the cpusets new mems_allowed.
1078 */
Li Zefan645fcc92009-01-07 18:08:43 -08001079static int update_nodemask(struct cpuset *cs, struct cpuset *trialcs,
1080 const char *buf)
Miao Xie0b2f6302008-07-25 01:47:21 -07001081{
Miao Xie53feb292010-03-23 13:35:35 -07001082 NODEMASK_ALLOC(nodemask_t, oldmem, GFP_KERNEL);
Miao Xie0b2f6302008-07-25 01:47:21 -07001083 int retval;
Li Zefan010cfac2009-04-02 16:57:52 -07001084 struct ptr_heap heap;
Miao Xie0b2f6302008-07-25 01:47:21 -07001085
Miao Xie53feb292010-03-23 13:35:35 -07001086 if (!oldmem)
1087 return -ENOMEM;
1088
Miao Xie0b2f6302008-07-25 01:47:21 -07001089 /*
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08001090 * top_cpuset.mems_allowed tracks node_stats[N_MEMORY];
Miao Xie0b2f6302008-07-25 01:47:21 -07001091 * it's read-only
1092 */
Miao Xie53feb292010-03-23 13:35:35 -07001093 if (cs == &top_cpuset) {
1094 retval = -EACCES;
1095 goto done;
1096 }
Miao Xie0b2f6302008-07-25 01:47:21 -07001097
Miao Xie0b2f6302008-07-25 01:47:21 -07001098 /*
1099 * An empty mems_allowed is ok iff there are no tasks in the cpuset.
1100 * Since nodelist_parse() fails on an empty mask, we special case
1101 * that parsing. The validate_change() call ensures that cpusets
1102 * with tasks have memory.
1103 */
1104 if (!*buf) {
Li Zefan645fcc92009-01-07 18:08:43 -08001105 nodes_clear(trialcs->mems_allowed);
Miao Xie0b2f6302008-07-25 01:47:21 -07001106 } else {
Li Zefan645fcc92009-01-07 18:08:43 -08001107 retval = nodelist_parse(buf, trialcs->mems_allowed);
Miao Xie0b2f6302008-07-25 01:47:21 -07001108 if (retval < 0)
1109 goto done;
1110
Li Zefan645fcc92009-01-07 18:08:43 -08001111 if (!nodes_subset(trialcs->mems_allowed,
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08001112 node_states[N_MEMORY])) {
Miao Xie53feb292010-03-23 13:35:35 -07001113 retval = -EINVAL;
1114 goto done;
1115 }
Miao Xie0b2f6302008-07-25 01:47:21 -07001116 }
Miao Xie53feb292010-03-23 13:35:35 -07001117 *oldmem = cs->mems_allowed;
1118 if (nodes_equal(*oldmem, trialcs->mems_allowed)) {
Miao Xie0b2f6302008-07-25 01:47:21 -07001119 retval = 0; /* Too easy - nothing to do */
1120 goto done;
1121 }
Li Zefan645fcc92009-01-07 18:08:43 -08001122 retval = validate_change(cs, trialcs);
Miao Xie0b2f6302008-07-25 01:47:21 -07001123 if (retval < 0)
1124 goto done;
1125
Li Zefan010cfac2009-04-02 16:57:52 -07001126 retval = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
1127 if (retval < 0)
1128 goto done;
1129
Miao Xie0b2f6302008-07-25 01:47:21 -07001130 mutex_lock(&callback_mutex);
Li Zefan645fcc92009-01-07 18:08:43 -08001131 cs->mems_allowed = trialcs->mems_allowed;
Miao Xie0b2f6302008-07-25 01:47:21 -07001132 mutex_unlock(&callback_mutex);
1133
Miao Xie53feb292010-03-23 13:35:35 -07001134 update_tasks_nodemask(cs, oldmem, &heap);
Li Zefan010cfac2009-04-02 16:57:52 -07001135
1136 heap_free(&heap);
Miao Xie0b2f6302008-07-25 01:47:21 -07001137done:
Miao Xie53feb292010-03-23 13:35:35 -07001138 NODEMASK_FREE(oldmem);
Miao Xie0b2f6302008-07-25 01:47:21 -07001139 return retval;
1140}
1141
Paul Menage8793d852007-10-18 23:39:39 -07001142int current_cpuset_is_being_rebound(void)
1143{
1144 return task_cs(current) == cpuset_being_rebound;
1145}
1146
Paul Menage5be7a472008-05-06 20:42:41 -07001147static int update_relax_domain_level(struct cpuset *cs, s64 val)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001148{
Paul Menagedb7f47c2009-04-02 16:57:55 -07001149#ifdef CONFIG_SMP
Peter Zijlstra60495e72011-04-07 14:10:04 +02001150 if (val < -1 || val >= sched_domain_level_max)
Li Zefan30e0e172008-05-13 10:27:17 +08001151 return -EINVAL;
Paul Menagedb7f47c2009-04-02 16:57:55 -07001152#endif
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001153
1154 if (val != cs->relax_domain_level) {
1155 cs->relax_domain_level = val;
Li Zefan300ed6c2009-01-07 18:08:44 -08001156 if (!cpumask_empty(cs->cpus_allowed) &&
1157 is_sched_load_balance(cs))
Tejun Heo699140b2013-01-07 08:51:07 -08001158 rebuild_sched_domains_locked();
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001159 }
1160
1161 return 0;
1162}
1163
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001164/*
Miao Xie950592f2009-06-16 15:31:47 -07001165 * cpuset_change_flag - make a task's spread flags the same as its cpuset's
1166 * @tsk: task to be updated
1167 * @scan: struct cgroup_scanner containing the cgroup of the task
1168 *
1169 * Called by cgroup_scan_tasks() for each task in a cgroup.
1170 *
1171 * We don't need to re-check for the cgroup/cpuset membership, since we're
1172 * holding cgroup_lock() at this point.
1173 */
1174static void cpuset_change_flag(struct task_struct *tsk,
1175 struct cgroup_scanner *scan)
1176{
1177 cpuset_update_task_spread_flag(cgroup_cs(scan->cg), tsk);
1178}
1179
1180/*
1181 * update_tasks_flags - update the spread flags of tasks in the cpuset.
1182 * @cs: the cpuset in which each task's spread flags needs to be changed
1183 * @heap: if NULL, defer allocating heap memory to cgroup_scan_tasks()
1184 *
1185 * Called with cgroup_mutex held
1186 *
1187 * The cgroup_scan_tasks() function will scan all the tasks in a cgroup,
1188 * calling callback functions for each.
1189 *
1190 * No return value. It's guaranteed that cgroup_scan_tasks() always returns 0
1191 * if @heap != NULL.
1192 */
1193static void update_tasks_flags(struct cpuset *cs, struct ptr_heap *heap)
1194{
1195 struct cgroup_scanner scan;
1196
1197 scan.cg = cs->css.cgroup;
1198 scan.test_task = NULL;
1199 scan.process_task = cpuset_change_flag;
1200 scan.heap = heap;
1201 cgroup_scan_tasks(&scan);
1202}
1203
1204/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 * update_flag - read a 0 or a 1 in a file and update associated flag
Paul Menage78608362008-04-29 01:00:26 -07001206 * bit: the bit to update (see cpuset_flagbits_t)
1207 * cs: the cpuset to update
1208 * turning_on: whether the flag is being set or cleared
Paul Jackson053199e2005-10-30 15:02:30 -08001209 *
Paul Menage2df167a2008-02-07 00:14:45 -08001210 * Call with cgroup_mutex held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
1212
Paul Menage700fe1a2008-04-29 01:00:00 -07001213static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs,
1214 int turning_on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Li Zefan645fcc92009-01-07 18:08:43 -08001216 struct cpuset *trialcs;
Rakib Mullick40b6a762008-10-18 20:28:18 -07001217 int balance_flag_changed;
Miao Xie950592f2009-06-16 15:31:47 -07001218 int spread_flag_changed;
1219 struct ptr_heap heap;
1220 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Li Zefan645fcc92009-01-07 18:08:43 -08001222 trialcs = alloc_trial_cpuset(cs);
1223 if (!trialcs)
1224 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Li Zefan645fcc92009-01-07 18:08:43 -08001226 if (turning_on)
1227 set_bit(bit, &trialcs->flags);
1228 else
1229 clear_bit(bit, &trialcs->flags);
1230
1231 err = validate_change(cs, trialcs);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -07001232 if (err < 0)
Li Zefan645fcc92009-01-07 18:08:43 -08001233 goto out;
Paul Jackson029190c2007-10-18 23:40:20 -07001234
Miao Xie950592f2009-06-16 15:31:47 -07001235 err = heap_init(&heap, PAGE_SIZE, GFP_KERNEL, NULL);
1236 if (err < 0)
1237 goto out;
1238
Paul Jackson029190c2007-10-18 23:40:20 -07001239 balance_flag_changed = (is_sched_load_balance(cs) !=
Li Zefan645fcc92009-01-07 18:08:43 -08001240 is_sched_load_balance(trialcs));
Paul Jackson029190c2007-10-18 23:40:20 -07001241
Miao Xie950592f2009-06-16 15:31:47 -07001242 spread_flag_changed = ((is_spread_slab(cs) != is_spread_slab(trialcs))
1243 || (is_spread_page(cs) != is_spread_page(trialcs)));
1244
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001245 mutex_lock(&callback_mutex);
Li Zefan645fcc92009-01-07 18:08:43 -08001246 cs->flags = trialcs->flags;
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001247 mutex_unlock(&callback_mutex);
Dinakar Guniguntala85d7b942005-06-25 14:57:34 -07001248
Li Zefan300ed6c2009-01-07 18:08:44 -08001249 if (!cpumask_empty(trialcs->cpus_allowed) && balance_flag_changed)
Tejun Heo699140b2013-01-07 08:51:07 -08001250 rebuild_sched_domains_locked();
Paul Jackson029190c2007-10-18 23:40:20 -07001251
Miao Xie950592f2009-06-16 15:31:47 -07001252 if (spread_flag_changed)
1253 update_tasks_flags(cs, &heap);
1254 heap_free(&heap);
Li Zefan645fcc92009-01-07 18:08:43 -08001255out:
1256 free_trial_cpuset(trialcs);
1257 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Paul Jackson053199e2005-10-30 15:02:30 -08001260/*
Adrian Bunk80f72282006-06-30 18:27:16 +02001261 * Frequency meter - How fast is some event occurring?
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001262 *
1263 * These routines manage a digitally filtered, constant time based,
1264 * event frequency meter. There are four routines:
1265 * fmeter_init() - initialize a frequency meter.
1266 * fmeter_markevent() - called each time the event happens.
1267 * fmeter_getrate() - returns the recent rate of such events.
1268 * fmeter_update() - internal routine used to update fmeter.
1269 *
1270 * A common data structure is passed to each of these routines,
1271 * which is used to keep track of the state required to manage the
1272 * frequency meter and its digital filter.
1273 *
1274 * The filter works on the number of events marked per unit time.
1275 * The filter is single-pole low-pass recursive (IIR). The time unit
1276 * is 1 second. Arithmetic is done using 32-bit integers scaled to
1277 * simulate 3 decimal digits of precision (multiplied by 1000).
1278 *
1279 * With an FM_COEF of 933, and a time base of 1 second, the filter
1280 * has a half-life of 10 seconds, meaning that if the events quit
1281 * happening, then the rate returned from the fmeter_getrate()
1282 * will be cut in half each 10 seconds, until it converges to zero.
1283 *
1284 * It is not worth doing a real infinitely recursive filter. If more
1285 * than FM_MAXTICKS ticks have elapsed since the last filter event,
1286 * just compute FM_MAXTICKS ticks worth, by which point the level
1287 * will be stable.
1288 *
1289 * Limit the count of unprocessed events to FM_MAXCNT, so as to avoid
1290 * arithmetic overflow in the fmeter_update() routine.
1291 *
1292 * Given the simple 32 bit integer arithmetic used, this meter works
1293 * best for reporting rates between one per millisecond (msec) and
1294 * one per 32 (approx) seconds. At constant rates faster than one
1295 * per msec it maxes out at values just under 1,000,000. At constant
1296 * rates between one per msec, and one per second it will stabilize
1297 * to a value N*1000, where N is the rate of events per second.
1298 * At constant rates between one per second and one per 32 seconds,
1299 * it will be choppy, moving up on the seconds that have an event,
1300 * and then decaying until the next event. At rates slower than
1301 * about one in 32 seconds, it decays all the way back to zero between
1302 * each event.
1303 */
1304
1305#define FM_COEF 933 /* coefficient for half-life of 10 secs */
1306#define FM_MAXTICKS ((time_t)99) /* useless computing more ticks than this */
1307#define FM_MAXCNT 1000000 /* limit cnt to avoid overflow */
1308#define FM_SCALE 1000 /* faux fixed point scale */
1309
1310/* Initialize a frequency meter */
1311static void fmeter_init(struct fmeter *fmp)
1312{
1313 fmp->cnt = 0;
1314 fmp->val = 0;
1315 fmp->time = 0;
1316 spin_lock_init(&fmp->lock);
1317}
1318
1319/* Internal meter update - process cnt events and update value */
1320static void fmeter_update(struct fmeter *fmp)
1321{
1322 time_t now = get_seconds();
1323 time_t ticks = now - fmp->time;
1324
1325 if (ticks == 0)
1326 return;
1327
1328 ticks = min(FM_MAXTICKS, ticks);
1329 while (ticks-- > 0)
1330 fmp->val = (FM_COEF * fmp->val) / FM_SCALE;
1331 fmp->time = now;
1332
1333 fmp->val += ((FM_SCALE - FM_COEF) * fmp->cnt) / FM_SCALE;
1334 fmp->cnt = 0;
1335}
1336
1337/* Process any previous ticks, then bump cnt by one (times scale). */
1338static void fmeter_markevent(struct fmeter *fmp)
1339{
1340 spin_lock(&fmp->lock);
1341 fmeter_update(fmp);
1342 fmp->cnt = min(FM_MAXCNT, fmp->cnt + FM_SCALE);
1343 spin_unlock(&fmp->lock);
1344}
1345
1346/* Process any previous ticks, then return current value. */
1347static int fmeter_getrate(struct fmeter *fmp)
1348{
1349 int val;
1350
1351 spin_lock(&fmp->lock);
1352 fmeter_update(fmp);
1353 val = fmp->val;
1354 spin_unlock(&fmp->lock);
1355 return val;
1356}
1357
Paul Menage2df167a2008-02-07 00:14:45 -08001358/* Called by cgroups to determine if a cpuset is usable; cgroup_mutex held */
Li Zefan761b3ef52012-01-31 13:47:36 +08001359static int cpuset_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Ben Blumf780bdb2011-05-26 16:25:19 -07001360{
Tejun Heo2f7ee562011-12-12 18:12:21 -08001361 struct cpuset *cs = cgroup_cs(cgrp);
Tejun Heobb9d97b2011-12-12 18:12:21 -08001362 struct task_struct *task;
1363 int ret;
Ben Blumf780bdb2011-05-26 16:25:19 -07001364
Ben Blumbe367d02009-09-23 15:56:31 -07001365 if (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed))
1366 return -ENOSPC;
1367
Tejun Heobb9d97b2011-12-12 18:12:21 -08001368 cgroup_taskset_for_each(task, cgrp, tset) {
1369 /*
1370 * Kthreads bound to specific cpus cannot be moved to a new
1371 * cpuset; we cannot change their cpu affinity and
1372 * isolating such threads by their set of allowed nodes is
1373 * unnecessary. Thus, cpusets are not applicable for such
1374 * threads. This prevents checking for success of
1375 * set_cpus_allowed_ptr() on all attached tasks before
1376 * cpus_allowed may be changed.
1377 */
1378 if (task->flags & PF_THREAD_BOUND)
1379 return -EINVAL;
1380 if ((ret = security_task_setscheduler(task)))
1381 return ret;
1382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Tejun Heo4e4c9a12013-01-07 08:51:07 -08001384 return 0;
1385}
1386
1387/*
1388 * Protected by cgroup_mutex. cpus_attach is used only by cpuset_attach()
1389 * but we can't allocate it dynamically there. Define it global and
1390 * allocate from cpuset_init().
1391 */
1392static cpumask_var_t cpus_attach;
1393
1394static void cpuset_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
1395{
1396 /* static bufs protected by cgroup_mutex */
1397 static nodemask_t cpuset_attach_nodemask_from;
1398 static nodemask_t cpuset_attach_nodemask_to;
1399 struct mm_struct *mm;
1400 struct task_struct *task;
1401 struct task_struct *leader = cgroup_taskset_first(tset);
1402 struct cgroup *oldcgrp = cgroup_taskset_cur_cgroup(tset);
1403 struct cpuset *cs = cgroup_cs(cgrp);
1404 struct cpuset *oldcs = cgroup_cs(oldcgrp);
1405
Tejun Heo94196f52011-12-12 18:12:22 -08001406 /* prepare for attach */
Ben Blumf780bdb2011-05-26 16:25:19 -07001407 if (cs == &top_cpuset)
1408 cpumask_copy(cpus_attach, cpu_possible_mask);
1409 else
1410 guarantee_online_cpus(cs, cpus_attach);
1411
1412 guarantee_online_mems(cs, &cpuset_attach_nodemask_to);
Tejun Heo94196f52011-12-12 18:12:22 -08001413
Tejun Heobb9d97b2011-12-12 18:12:21 -08001414 cgroup_taskset_for_each(task, cgrp, tset) {
1415 /*
1416 * can_attach beforehand should guarantee that this doesn't
1417 * fail. TODO: have a better way to handle failure here
1418 */
1419 WARN_ON_ONCE(set_cpus_allowed_ptr(task, cpus_attach));
1420
1421 cpuset_change_task_nodemask(task, &cpuset_attach_nodemask_to);
1422 cpuset_update_task_spread_flag(cs, task);
1423 }
David Quigley22fb52d2006-06-23 02:04:00 -07001424
Ben Blumf780bdb2011-05-26 16:25:19 -07001425 /*
1426 * Change mm, possibly for multiple threads in a threadgroup. This is
1427 * expensive and may sleep.
1428 */
1429 cpuset_attach_nodemask_from = oldcs->mems_allowed;
1430 cpuset_attach_nodemask_to = cs->mems_allowed;
Tejun Heobb9d97b2011-12-12 18:12:21 -08001431 mm = get_task_mm(leader);
Paul Jackson42253992006-01-08 01:01:59 -08001432 if (mm) {
Ben Blumf780bdb2011-05-26 16:25:19 -07001433 mpol_rebind_mm(mm, &cpuset_attach_nodemask_to);
Paul Jackson2741a552006-03-31 02:30:51 -08001434 if (is_memory_migrate(cs))
Ben Blumf780bdb2011-05-26 16:25:19 -07001435 cpuset_migrate_mm(mm, &cpuset_attach_nodemask_from,
1436 &cpuset_attach_nodemask_to);
Paul Jackson42253992006-01-08 01:01:59 -08001437 mmput(mm);
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
1441/* The various types of files and directories in a cpuset file system */
1442
1443typedef enum {
Paul Jackson45b07ef2006-01-08 01:00:56 -08001444 FILE_MEMORY_MIGRATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 FILE_CPULIST,
1446 FILE_MEMLIST,
1447 FILE_CPU_EXCLUSIVE,
1448 FILE_MEM_EXCLUSIVE,
Paul Menage78608362008-04-29 01:00:26 -07001449 FILE_MEM_HARDWALL,
Paul Jackson029190c2007-10-18 23:40:20 -07001450 FILE_SCHED_LOAD_BALANCE,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001451 FILE_SCHED_RELAX_DOMAIN_LEVEL,
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001452 FILE_MEMORY_PRESSURE_ENABLED,
1453 FILE_MEMORY_PRESSURE,
Paul Jackson825a46a2006-03-24 03:16:03 -08001454 FILE_SPREAD_PAGE,
1455 FILE_SPREAD_SLAB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456} cpuset_filetype_t;
1457
Paul Menage700fe1a2008-04-29 01:00:00 -07001458static int cpuset_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
1459{
1460 int retval = 0;
1461 struct cpuset *cs = cgroup_cs(cgrp);
1462 cpuset_filetype_t type = cft->private;
1463
Paul Menagee3712392008-07-25 01:47:02 -07001464 if (!cgroup_lock_live_group(cgrp))
Paul Menage700fe1a2008-04-29 01:00:00 -07001465 return -ENODEV;
Paul Menage700fe1a2008-04-29 01:00:00 -07001466
1467 switch (type) {
1468 case FILE_CPU_EXCLUSIVE:
1469 retval = update_flag(CS_CPU_EXCLUSIVE, cs, val);
1470 break;
1471 case FILE_MEM_EXCLUSIVE:
1472 retval = update_flag(CS_MEM_EXCLUSIVE, cs, val);
1473 break;
Paul Menage78608362008-04-29 01:00:26 -07001474 case FILE_MEM_HARDWALL:
1475 retval = update_flag(CS_MEM_HARDWALL, cs, val);
1476 break;
Paul Menage700fe1a2008-04-29 01:00:00 -07001477 case FILE_SCHED_LOAD_BALANCE:
1478 retval = update_flag(CS_SCHED_LOAD_BALANCE, cs, val);
1479 break;
1480 case FILE_MEMORY_MIGRATE:
1481 retval = update_flag(CS_MEMORY_MIGRATE, cs, val);
1482 break;
1483 case FILE_MEMORY_PRESSURE_ENABLED:
1484 cpuset_memory_pressure_enabled = !!val;
1485 break;
1486 case FILE_MEMORY_PRESSURE:
1487 retval = -EACCES;
1488 break;
1489 case FILE_SPREAD_PAGE:
1490 retval = update_flag(CS_SPREAD_PAGE, cs, val);
Paul Menage700fe1a2008-04-29 01:00:00 -07001491 break;
1492 case FILE_SPREAD_SLAB:
1493 retval = update_flag(CS_SPREAD_SLAB, cs, val);
Paul Menage700fe1a2008-04-29 01:00:00 -07001494 break;
1495 default:
1496 retval = -EINVAL;
1497 break;
1498 }
1499 cgroup_unlock();
1500 return retval;
1501}
1502
Paul Menage5be7a472008-05-06 20:42:41 -07001503static int cpuset_write_s64(struct cgroup *cgrp, struct cftype *cft, s64 val)
1504{
1505 int retval = 0;
1506 struct cpuset *cs = cgroup_cs(cgrp);
1507 cpuset_filetype_t type = cft->private;
1508
Paul Menagee3712392008-07-25 01:47:02 -07001509 if (!cgroup_lock_live_group(cgrp))
Paul Menage5be7a472008-05-06 20:42:41 -07001510 return -ENODEV;
Paul Menagee3712392008-07-25 01:47:02 -07001511
Paul Menage5be7a472008-05-06 20:42:41 -07001512 switch (type) {
1513 case FILE_SCHED_RELAX_DOMAIN_LEVEL:
1514 retval = update_relax_domain_level(cs, val);
1515 break;
1516 default:
1517 retval = -EINVAL;
1518 break;
1519 }
1520 cgroup_unlock();
1521 return retval;
1522}
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524/*
Paul Menagee3712392008-07-25 01:47:02 -07001525 * Common handling for a write to a "cpus" or "mems" file.
1526 */
1527static int cpuset_write_resmask(struct cgroup *cgrp, struct cftype *cft,
1528 const char *buf)
1529{
1530 int retval = 0;
Li Zefan645fcc92009-01-07 18:08:43 -08001531 struct cpuset *cs = cgroup_cs(cgrp);
1532 struct cpuset *trialcs;
Paul Menagee3712392008-07-25 01:47:02 -07001533
Tejun Heo3a5a6d02013-01-07 08:51:07 -08001534 /*
1535 * CPU or memory hotunplug may leave @cs w/o any execution
1536 * resources, in which case the hotplug code asynchronously updates
1537 * configuration and transfers all tasks to the nearest ancestor
1538 * which can execute.
1539 *
1540 * As writes to "cpus" or "mems" may restore @cs's execution
1541 * resources, wait for the previously scheduled operations before
1542 * proceeding, so that we don't end up keep removing tasks added
1543 * after execution capability is restored.
1544 */
1545 flush_work(&cpuset_hotplug_work);
1546
Paul Menagee3712392008-07-25 01:47:02 -07001547 if (!cgroup_lock_live_group(cgrp))
1548 return -ENODEV;
1549
Li Zefan645fcc92009-01-07 18:08:43 -08001550 trialcs = alloc_trial_cpuset(cs);
Li Zefanb75f38d2011-03-04 17:36:21 -08001551 if (!trialcs) {
1552 retval = -ENOMEM;
1553 goto out;
1554 }
Li Zefan645fcc92009-01-07 18:08:43 -08001555
Paul Menagee3712392008-07-25 01:47:02 -07001556 switch (cft->private) {
1557 case FILE_CPULIST:
Li Zefan645fcc92009-01-07 18:08:43 -08001558 retval = update_cpumask(cs, trialcs, buf);
Paul Menagee3712392008-07-25 01:47:02 -07001559 break;
1560 case FILE_MEMLIST:
Li Zefan645fcc92009-01-07 18:08:43 -08001561 retval = update_nodemask(cs, trialcs, buf);
Paul Menagee3712392008-07-25 01:47:02 -07001562 break;
1563 default:
1564 retval = -EINVAL;
1565 break;
1566 }
Li Zefan645fcc92009-01-07 18:08:43 -08001567
1568 free_trial_cpuset(trialcs);
Li Zefanb75f38d2011-03-04 17:36:21 -08001569out:
Paul Menagee3712392008-07-25 01:47:02 -07001570 cgroup_unlock();
1571 return retval;
1572}
1573
1574/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * These ascii lists should be read in a single call, by using a user
1576 * buffer large enough to hold the entire map. If read in smaller
1577 * chunks, there is no guarantee of atomicity. Since the display format
1578 * used, list of ranges of sequential numbers, is variable length,
1579 * and since these maps can change value dynamically, one could read
1580 * gibberish by doing partial reads while a list was changing.
1581 * A single large read to a buffer that crosses a page boundary is
1582 * ok, because the result being copied to user land is not recomputed
1583 * across a page fault.
1584 */
1585
Li Zefan9303e0c2011-03-23 16:42:45 -07001586static size_t cpuset_sprintf_cpulist(char *page, struct cpuset *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Li Zefan9303e0c2011-03-23 16:42:45 -07001588 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001590 mutex_lock(&callback_mutex);
Li Zefan9303e0c2011-03-23 16:42:45 -07001591 count = cpulist_scnprintf(page, PAGE_SIZE, cs->cpus_allowed);
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001592 mutex_unlock(&callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Li Zefan9303e0c2011-03-23 16:42:45 -07001594 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595}
1596
Li Zefan9303e0c2011-03-23 16:42:45 -07001597static size_t cpuset_sprintf_memlist(char *page, struct cpuset *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Li Zefan9303e0c2011-03-23 16:42:45 -07001599 size_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001601 mutex_lock(&callback_mutex);
Li Zefan9303e0c2011-03-23 16:42:45 -07001602 count = nodelist_scnprintf(page, PAGE_SIZE, cs->mems_allowed);
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08001603 mutex_unlock(&callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Li Zefan9303e0c2011-03-23 16:42:45 -07001605 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Paul Menage8793d852007-10-18 23:39:39 -07001608static ssize_t cpuset_common_file_read(struct cgroup *cont,
1609 struct cftype *cft,
1610 struct file *file,
1611 char __user *buf,
1612 size_t nbytes, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
Paul Menage8793d852007-10-18 23:39:39 -07001614 struct cpuset *cs = cgroup_cs(cont);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 cpuset_filetype_t type = cft->private;
1616 char *page;
1617 ssize_t retval = 0;
1618 char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Mel Gormane12ba742007-10-16 01:25:52 -07001620 if (!(page = (char *)__get_free_page(GFP_TEMPORARY)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return -ENOMEM;
1622
1623 s = page;
1624
1625 switch (type) {
1626 case FILE_CPULIST:
1627 s += cpuset_sprintf_cpulist(s, cs);
1628 break;
1629 case FILE_MEMLIST:
1630 s += cpuset_sprintf_memlist(s, cs);
1631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 default:
1633 retval = -EINVAL;
1634 goto out;
1635 }
1636 *s++ = '\n';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Al Viroeacaa1f2005-09-30 03:26:43 +01001638 retval = simple_read_from_buffer(buf, nbytes, ppos, page, s - page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639out:
1640 free_page((unsigned long)page);
1641 return retval;
1642}
1643
Paul Menage700fe1a2008-04-29 01:00:00 -07001644static u64 cpuset_read_u64(struct cgroup *cont, struct cftype *cft)
1645{
1646 struct cpuset *cs = cgroup_cs(cont);
1647 cpuset_filetype_t type = cft->private;
1648 switch (type) {
1649 case FILE_CPU_EXCLUSIVE:
1650 return is_cpu_exclusive(cs);
1651 case FILE_MEM_EXCLUSIVE:
1652 return is_mem_exclusive(cs);
Paul Menage78608362008-04-29 01:00:26 -07001653 case FILE_MEM_HARDWALL:
1654 return is_mem_hardwall(cs);
Paul Menage700fe1a2008-04-29 01:00:00 -07001655 case FILE_SCHED_LOAD_BALANCE:
1656 return is_sched_load_balance(cs);
1657 case FILE_MEMORY_MIGRATE:
1658 return is_memory_migrate(cs);
1659 case FILE_MEMORY_PRESSURE_ENABLED:
1660 return cpuset_memory_pressure_enabled;
1661 case FILE_MEMORY_PRESSURE:
1662 return fmeter_getrate(&cs->fmeter);
1663 case FILE_SPREAD_PAGE:
1664 return is_spread_page(cs);
1665 case FILE_SPREAD_SLAB:
1666 return is_spread_slab(cs);
1667 default:
1668 BUG();
1669 }
Max Krasnyanskycf417142008-08-11 14:33:53 -07001670
1671 /* Unreachable but makes gcc happy */
1672 return 0;
Paul Menage700fe1a2008-04-29 01:00:00 -07001673}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Paul Menage5be7a472008-05-06 20:42:41 -07001675static s64 cpuset_read_s64(struct cgroup *cont, struct cftype *cft)
1676{
1677 struct cpuset *cs = cgroup_cs(cont);
1678 cpuset_filetype_t type = cft->private;
1679 switch (type) {
1680 case FILE_SCHED_RELAX_DOMAIN_LEVEL:
1681 return cs->relax_domain_level;
1682 default:
1683 BUG();
1684 }
Max Krasnyanskycf417142008-08-11 14:33:53 -07001685
1686 /* Unrechable but makes gcc happy */
1687 return 0;
Paul Menage5be7a472008-05-06 20:42:41 -07001688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691/*
1692 * for the common functions, 'private' gives the type of file
1693 */
1694
Paul Menageaddf2c72008-04-29 01:00:26 -07001695static struct cftype files[] = {
1696 {
1697 .name = "cpus",
1698 .read = cpuset_common_file_read,
Paul Menagee3712392008-07-25 01:47:02 -07001699 .write_string = cpuset_write_resmask,
1700 .max_write_len = (100U + 6 * NR_CPUS),
Paul Menageaddf2c72008-04-29 01:00:26 -07001701 .private = FILE_CPULIST,
1702 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Paul Menageaddf2c72008-04-29 01:00:26 -07001704 {
1705 .name = "mems",
1706 .read = cpuset_common_file_read,
Paul Menagee3712392008-07-25 01:47:02 -07001707 .write_string = cpuset_write_resmask,
1708 .max_write_len = (100U + 6 * MAX_NUMNODES),
Paul Menageaddf2c72008-04-29 01:00:26 -07001709 .private = FILE_MEMLIST,
1710 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Paul Menageaddf2c72008-04-29 01:00:26 -07001712 {
1713 .name = "cpu_exclusive",
1714 .read_u64 = cpuset_read_u64,
1715 .write_u64 = cpuset_write_u64,
1716 .private = FILE_CPU_EXCLUSIVE,
1717 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Paul Menageaddf2c72008-04-29 01:00:26 -07001719 {
1720 .name = "mem_exclusive",
1721 .read_u64 = cpuset_read_u64,
1722 .write_u64 = cpuset_write_u64,
1723 .private = FILE_MEM_EXCLUSIVE,
1724 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Paul Menageaddf2c72008-04-29 01:00:26 -07001726 {
Paul Menage78608362008-04-29 01:00:26 -07001727 .name = "mem_hardwall",
1728 .read_u64 = cpuset_read_u64,
1729 .write_u64 = cpuset_write_u64,
1730 .private = FILE_MEM_HARDWALL,
1731 },
1732
1733 {
Paul Menageaddf2c72008-04-29 01:00:26 -07001734 .name = "sched_load_balance",
1735 .read_u64 = cpuset_read_u64,
1736 .write_u64 = cpuset_write_u64,
1737 .private = FILE_SCHED_LOAD_BALANCE,
1738 },
Paul Jackson029190c2007-10-18 23:40:20 -07001739
Paul Menageaddf2c72008-04-29 01:00:26 -07001740 {
1741 .name = "sched_relax_domain_level",
Paul Menage5be7a472008-05-06 20:42:41 -07001742 .read_s64 = cpuset_read_s64,
1743 .write_s64 = cpuset_write_s64,
Paul Menageaddf2c72008-04-29 01:00:26 -07001744 .private = FILE_SCHED_RELAX_DOMAIN_LEVEL,
1745 },
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001746
Paul Menageaddf2c72008-04-29 01:00:26 -07001747 {
1748 .name = "memory_migrate",
1749 .read_u64 = cpuset_read_u64,
1750 .write_u64 = cpuset_write_u64,
1751 .private = FILE_MEMORY_MIGRATE,
1752 },
1753
1754 {
1755 .name = "memory_pressure",
1756 .read_u64 = cpuset_read_u64,
1757 .write_u64 = cpuset_write_u64,
1758 .private = FILE_MEMORY_PRESSURE,
Li Zefan099fca32009-04-02 16:57:29 -07001759 .mode = S_IRUGO,
Paul Menageaddf2c72008-04-29 01:00:26 -07001760 },
1761
1762 {
1763 .name = "memory_spread_page",
1764 .read_u64 = cpuset_read_u64,
1765 .write_u64 = cpuset_write_u64,
1766 .private = FILE_SPREAD_PAGE,
1767 },
1768
1769 {
1770 .name = "memory_spread_slab",
1771 .read_u64 = cpuset_read_u64,
1772 .write_u64 = cpuset_write_u64,
1773 .private = FILE_SPREAD_SLAB,
1774 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001775
1776 {
1777 .name = "memory_pressure_enabled",
1778 .flags = CFTYPE_ONLY_ON_ROOT,
1779 .read_u64 = cpuset_read_u64,
1780 .write_u64 = cpuset_write_u64,
1781 .private = FILE_MEMORY_PRESSURE_ENABLED,
1782 },
1783
1784 { } /* terminate */
Paul Jackson45b07ef2006-01-08 01:00:56 -08001785};
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787/*
Tejun Heo92fb9742012-11-19 08:13:38 -08001788 * cpuset_css_alloc - allocate a cpuset css
Paul Menage2df167a2008-02-07 00:14:45 -08001789 * cont: control group that the new cpuset will be part of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 */
1791
Tejun Heo92fb9742012-11-19 08:13:38 -08001792static struct cgroup_subsys_state *cpuset_css_alloc(struct cgroup *cont)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Tejun Heoc8f699b2013-01-07 08:51:07 -08001794 struct cpuset *cs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Tejun Heoc8f699b2013-01-07 08:51:07 -08001796 if (!cont->parent)
Paul Menage8793d852007-10-18 23:39:39 -07001797 return &top_cpuset.css;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001798
Tejun Heoc8f699b2013-01-07 08:51:07 -08001799 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (!cs)
Paul Menage8793d852007-10-18 23:39:39 -07001801 return ERR_PTR(-ENOMEM);
Li Zefan300ed6c2009-01-07 18:08:44 -08001802 if (!alloc_cpumask_var(&cs->cpus_allowed, GFP_KERNEL)) {
1803 kfree(cs);
1804 return ERR_PTR(-ENOMEM);
1805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Paul Jackson029190c2007-10-18 23:40:20 -07001807 set_bit(CS_SCHED_LOAD_BALANCE, &cs->flags);
Li Zefan300ed6c2009-01-07 18:08:44 -08001808 cpumask_clear(cs->cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07001809 nodes_clear(cs->mems_allowed);
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001810 fmeter_init(&cs->fmeter);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001811 cs->relax_domain_level = -1;
Tejun Heoc8f699b2013-01-07 08:51:07 -08001812 cs->parent = cgroup_cs(cont->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Tejun Heoc8f699b2013-01-07 08:51:07 -08001814 return &cs->css;
1815}
1816
1817static int cpuset_css_online(struct cgroup *cgrp)
1818{
1819 struct cpuset *cs = cgroup_cs(cgrp);
1820 struct cpuset *parent = cs->parent;
Tejun Heoae8086c2013-01-07 08:51:07 -08001821 struct cpuset *tmp_cs;
1822 struct cgroup *pos_cg;
Tejun Heoc8f699b2013-01-07 08:51:07 -08001823
1824 if (!parent)
1825 return 0;
1826
Tejun Heoefeb77b2013-01-07 08:51:07 -08001827 set_bit(CS_ONLINE, &cs->flags);
Tejun Heoc8f699b2013-01-07 08:51:07 -08001828 if (is_spread_page(parent))
1829 set_bit(CS_SPREAD_PAGE, &cs->flags);
1830 if (is_spread_slab(parent))
1831 set_bit(CS_SPREAD_SLAB, &cs->flags);
1832
Paul Jackson202f72d2006-01-08 01:01:57 -08001833 number_of_cpusets++;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001834
Tejun Heoc8f699b2013-01-07 08:51:07 -08001835 if (!test_bit(CGRP_CPUSET_CLONE_CHILDREN, &cgrp->flags))
1836 return 0;
Tejun Heo033fa1c2012-11-19 08:13:39 -08001837
1838 /*
1839 * Clone @parent's configuration if CGRP_CPUSET_CLONE_CHILDREN is
1840 * set. This flag handling is implemented in cgroup core for
1841 * histrical reasons - the flag may be specified during mount.
1842 *
1843 * Currently, if any sibling cpusets have exclusive cpus or mem, we
1844 * refuse to clone the configuration - thereby refusing the task to
1845 * be entered, and as a result refusing the sys_unshare() or
1846 * clone() which initiated it. If this becomes a problem for some
1847 * users who wish to allow that scenario, then this could be
1848 * changed to grant parent->cpus_allowed-sibling_cpus_exclusive
1849 * (and likewise for mems) to the new cgroup.
1850 */
Tejun Heoae8086c2013-01-07 08:51:07 -08001851 rcu_read_lock();
1852 cpuset_for_each_child(tmp_cs, pos_cg, parent) {
1853 if (is_mem_exclusive(tmp_cs) || is_cpu_exclusive(tmp_cs)) {
1854 rcu_read_unlock();
Tejun Heoc8f699b2013-01-07 08:51:07 -08001855 return 0;
Tejun Heoae8086c2013-01-07 08:51:07 -08001856 }
Tejun Heo033fa1c2012-11-19 08:13:39 -08001857 }
Tejun Heoae8086c2013-01-07 08:51:07 -08001858 rcu_read_unlock();
Tejun Heo033fa1c2012-11-19 08:13:39 -08001859
1860 mutex_lock(&callback_mutex);
1861 cs->mems_allowed = parent->mems_allowed;
1862 cpumask_copy(cs->cpus_allowed, parent->cpus_allowed);
1863 mutex_unlock(&callback_mutex);
Tejun Heoc8f699b2013-01-07 08:51:07 -08001864
1865 return 0;
1866}
1867
1868static void cpuset_css_offline(struct cgroup *cgrp)
1869{
1870 struct cpuset *cs = cgroup_cs(cgrp);
1871
1872 /* css_offline is called w/o cgroup_mutex, grab it */
1873 cgroup_lock();
1874
1875 if (is_sched_load_balance(cs))
1876 update_flag(CS_SCHED_LOAD_BALANCE, cs, 0);
1877
1878 number_of_cpusets--;
Tejun Heoefeb77b2013-01-07 08:51:07 -08001879 clear_bit(CS_ONLINE, &cs->flags);
Tejun Heoc8f699b2013-01-07 08:51:07 -08001880
1881 cgroup_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Paul Jackson029190c2007-10-18 23:40:20 -07001884/*
Paul Jackson029190c2007-10-18 23:40:20 -07001885 * If the cpuset being removed has its flag 'sched_load_balance'
1886 * enabled, then simulate turning sched_load_balance off, which
Tejun Heo699140b2013-01-07 08:51:07 -08001887 * will call rebuild_sched_domains_locked().
Paul Jackson029190c2007-10-18 23:40:20 -07001888 */
1889
Tejun Heo92fb9742012-11-19 08:13:38 -08001890static void cpuset_css_free(struct cgroup *cont)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
Paul Menage8793d852007-10-18 23:39:39 -07001892 struct cpuset *cs = cgroup_cs(cont);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Li Zefan300ed6c2009-01-07 18:08:44 -08001894 free_cpumask_var(cs->cpus_allowed);
Paul Menage8793d852007-10-18 23:39:39 -07001895 kfree(cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
Paul Menage8793d852007-10-18 23:39:39 -07001898struct cgroup_subsys cpuset_subsys = {
1899 .name = "cpuset",
Tejun Heo92fb9742012-11-19 08:13:38 -08001900 .css_alloc = cpuset_css_alloc,
Tejun Heoc8f699b2013-01-07 08:51:07 -08001901 .css_online = cpuset_css_online,
1902 .css_offline = cpuset_css_offline,
Tejun Heo92fb9742012-11-19 08:13:38 -08001903 .css_free = cpuset_css_free,
Paul Menage8793d852007-10-18 23:39:39 -07001904 .can_attach = cpuset_can_attach,
1905 .attach = cpuset_attach,
Paul Menage8793d852007-10-18 23:39:39 -07001906 .subsys_id = cpuset_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07001907 .base_cftypes = files,
Paul Menage8793d852007-10-18 23:39:39 -07001908 .early_init = 1,
1909};
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/**
1912 * cpuset_init - initialize cpusets at system boot
1913 *
1914 * Description: Initialize top_cpuset and the cpuset internal file system,
1915 **/
1916
1917int __init cpuset_init(void)
1918{
Paul Menage8793d852007-10-18 23:39:39 -07001919 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Miao Xie58568d22009-06-16 15:31:49 -07001921 if (!alloc_cpumask_var(&top_cpuset.cpus_allowed, GFP_KERNEL))
1922 BUG();
1923
Li Zefan300ed6c2009-01-07 18:08:44 -08001924 cpumask_setall(top_cpuset.cpus_allowed);
Mike Travisf9a86fc2008-04-04 18:11:07 -07001925 nodes_setall(top_cpuset.mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Paul Jackson3e0d98b2006-01-08 01:01:49 -08001927 fmeter_init(&top_cpuset.fmeter);
Paul Jackson029190c2007-10-18 23:40:20 -07001928 set_bit(CS_SCHED_LOAD_BALANCE, &top_cpuset.flags);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09001929 top_cpuset.relax_domain_level = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 err = register_filesystem(&cpuset_fs_type);
1932 if (err < 0)
Paul Menage8793d852007-10-18 23:39:39 -07001933 return err;
1934
Li Zefan2341d1b2009-01-07 18:08:42 -08001935 if (!alloc_cpumask_var(&cpus_attach, GFP_KERNEL))
1936 BUG();
1937
Paul Jackson202f72d2006-01-08 01:01:57 -08001938 number_of_cpusets = 1;
Paul Menage8793d852007-10-18 23:39:39 -07001939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
Cliff Wickman956db3c2008-02-07 00:14:43 -08001942/**
1943 * cpuset_do_move_task - move a given task to another cpuset
1944 * @tsk: pointer to task_struct the task to move
1945 * @scan: struct cgroup_scanner contained in its struct cpuset_hotplug_scanner
1946 *
1947 * Called by cgroup_scan_tasks() for each task in a cgroup.
1948 * Return nonzero to stop the walk through the tasks.
1949 */
Adrian Bunk9e0c9142008-04-29 01:00:25 -07001950static void cpuset_do_move_task(struct task_struct *tsk,
1951 struct cgroup_scanner *scan)
Cliff Wickman956db3c2008-02-07 00:14:43 -08001952{
Li Zefan7f81b1a2009-04-02 16:57:53 -07001953 struct cgroup *new_cgroup = scan->data;
Cliff Wickman956db3c2008-02-07 00:14:43 -08001954
Li Zefan7f81b1a2009-04-02 16:57:53 -07001955 cgroup_attach_task(new_cgroup, tsk);
Cliff Wickman956db3c2008-02-07 00:14:43 -08001956}
1957
1958/**
1959 * move_member_tasks_to_cpuset - move tasks from one cpuset to another
1960 * @from: cpuset in which the tasks currently reside
1961 * @to: cpuset to which the tasks will be moved
1962 *
Paul Jacksonc8d9c902008-02-07 00:14:46 -08001963 * Called with cgroup_mutex held
1964 * callback_mutex must not be held, as cpuset_attach() will take it.
Cliff Wickman956db3c2008-02-07 00:14:43 -08001965 *
1966 * The cgroup_scan_tasks() function will scan all the tasks in a cgroup,
1967 * calling callback functions for each.
1968 */
1969static void move_member_tasks_to_cpuset(struct cpuset *from, struct cpuset *to)
1970{
Li Zefan7f81b1a2009-04-02 16:57:53 -07001971 struct cgroup_scanner scan;
Cliff Wickman956db3c2008-02-07 00:14:43 -08001972
Li Zefan7f81b1a2009-04-02 16:57:53 -07001973 scan.cg = from->css.cgroup;
1974 scan.test_task = NULL; /* select all tasks in cgroup */
1975 scan.process_task = cpuset_do_move_task;
1976 scan.heap = NULL;
1977 scan.data = to->css.cgroup;
Cliff Wickman956db3c2008-02-07 00:14:43 -08001978
Li Zefan7f81b1a2009-04-02 16:57:53 -07001979 if (cgroup_scan_tasks(&scan))
Cliff Wickman956db3c2008-02-07 00:14:43 -08001980 printk(KERN_ERR "move_member_tasks_to_cpuset: "
1981 "cgroup_scan_tasks failed\n");
1982}
1983
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001984/*
Max Krasnyanskycf417142008-08-11 14:33:53 -07001985 * If CPU and/or memory hotplug handlers, below, unplug any CPUs
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001986 * or memory nodes, we need to walk over the cpuset hierarchy,
1987 * removing that CPU or node from all cpusets. If this removes the
Cliff Wickman956db3c2008-02-07 00:14:43 -08001988 * last CPU or node from a cpuset, then move the tasks in the empty
1989 * cpuset to its next-highest non-empty parent.
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001990 *
Paul Jacksonc8d9c902008-02-07 00:14:46 -08001991 * Called with cgroup_mutex held
1992 * callback_mutex must not be held, as cpuset_attach() will take it.
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001993 */
Cliff Wickman956db3c2008-02-07 00:14:43 -08001994static void remove_tasks_in_empty_cpuset(struct cpuset *cs)
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001995{
Cliff Wickman956db3c2008-02-07 00:14:43 -08001996 struct cpuset *parent;
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07001997
Paul Jacksonc8d9c902008-02-07 00:14:46 -08001998 /*
Cliff Wickman956db3c2008-02-07 00:14:43 -08001999 * Find its next-highest non-empty parent, (top cpuset
2000 * has online cpus, so can't be empty).
2001 */
2002 parent = cs->parent;
Li Zefan300ed6c2009-01-07 18:08:44 -08002003 while (cpumask_empty(parent->cpus_allowed) ||
Paul Jacksonb4501292008-02-07 00:14:47 -08002004 nodes_empty(parent->mems_allowed))
Cliff Wickman956db3c2008-02-07 00:14:43 -08002005 parent = parent->parent;
Cliff Wickman956db3c2008-02-07 00:14:43 -08002006
2007 move_member_tasks_to_cpuset(cs, parent);
2008}
2009
2010/*
Srivatsa S. Bhat80d1fa62012-05-24 19:46:41 +05302011 * Helper function to traverse cpusets.
2012 * It can be used to walk the cpuset tree from top to bottom, completing
2013 * one layer before dropping down to the next (thus always processing a
2014 * node before any of its children).
2015 */
2016static struct cpuset *cpuset_next(struct list_head *queue)
2017{
2018 struct cpuset *cp;
2019 struct cpuset *child; /* scans child cpusets of cp */
2020 struct cgroup *cont;
2021
2022 if (list_empty(queue))
2023 return NULL;
2024
2025 cp = list_first_entry(queue, struct cpuset, stack_list);
2026 list_del(queue->next);
Tejun Heoae8086c2013-01-07 08:51:07 -08002027 rcu_read_lock();
2028 cpuset_for_each_child(child, cont, cp)
Srivatsa S. Bhat80d1fa62012-05-24 19:46:41 +05302029 list_add_tail(&child->stack_list, queue);
Tejun Heoae8086c2013-01-07 08:51:07 -08002030 rcu_read_unlock();
Srivatsa S. Bhat80d1fa62012-05-24 19:46:41 +05302031
2032 return cp;
2033}
2034
Tejun Heodeb7aa32013-01-07 08:51:07 -08002035/**
2036 * cpuset_propagate_hotplug - propagate CPU/memory hotplug to a cpuset
2037 * @cs: cpuset in interest
Cliff Wickman956db3c2008-02-07 00:14:43 -08002038 *
Tejun Heodeb7aa32013-01-07 08:51:07 -08002039 * Compare @cs's cpu and mem masks against top_cpuset and if some have gone
2040 * offline, update @cs accordingly. If @cs ends up with no CPU or memory,
2041 * all its tasks are moved to the nearest ancestor with both resources.
Cliff Wickman956db3c2008-02-07 00:14:43 -08002042 *
Tejun Heodeb7aa32013-01-07 08:51:07 -08002043 * Should be called with cgroup_mutex held.
Cliff Wickman956db3c2008-02-07 00:14:43 -08002044 */
Tejun Heodeb7aa32013-01-07 08:51:07 -08002045static void cpuset_propagate_hotplug(struct cpuset *cs)
Cliff Wickman956db3c2008-02-07 00:14:43 -08002046{
Tejun Heodeb7aa32013-01-07 08:51:07 -08002047 static cpumask_t off_cpus;
2048 static nodemask_t off_mems, tmp_mems;
Cliff Wickman956db3c2008-02-07 00:14:43 -08002049
Tejun Heodeb7aa32013-01-07 08:51:07 -08002050 WARN_ON_ONCE(!cgroup_lock_is_held());
Cliff Wickman956db3c2008-02-07 00:14:43 -08002051
Tejun Heodeb7aa32013-01-07 08:51:07 -08002052 cpumask_andnot(&off_cpus, cs->cpus_allowed, top_cpuset.cpus_allowed);
2053 nodes_andnot(off_mems, cs->mems_allowed, top_cpuset.mems_allowed);
Paul Jacksonb4501292008-02-07 00:14:47 -08002054
Tejun Heodeb7aa32013-01-07 08:51:07 -08002055 /* remove offline cpus from @cs */
2056 if (!cpumask_empty(&off_cpus)) {
2057 mutex_lock(&callback_mutex);
2058 cpumask_andnot(cs->cpus_allowed, cs->cpus_allowed, &off_cpus);
2059 mutex_unlock(&callback_mutex);
2060 update_tasks_cpumask(cs, NULL);
2061 }
Paul Jacksonb4501292008-02-07 00:14:47 -08002062
Tejun Heodeb7aa32013-01-07 08:51:07 -08002063 /* remove offline mems from @cs */
2064 if (!nodes_empty(off_mems)) {
2065 tmp_mems = cs->mems_allowed;
2066 mutex_lock(&callback_mutex);
2067 nodes_andnot(cs->mems_allowed, cs->mems_allowed, off_mems);
2068 mutex_unlock(&callback_mutex);
2069 update_tasks_nodemask(cs, &tmp_mems, NULL);
2070 }
Miao Xief9b4fb82008-07-25 01:47:22 -07002071
Tejun Heodeb7aa32013-01-07 08:51:07 -08002072 if (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed))
2073 remove_tasks_in_empty_cpuset(cs);
2074}
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302075
Tejun Heodeb7aa32013-01-07 08:51:07 -08002076/**
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002077 * cpuset_hotplug_workfn - handle CPU/memory hotunplug for a cpuset
Tejun Heodeb7aa32013-01-07 08:51:07 -08002078 *
2079 * This function is called after either CPU or memory configuration has
2080 * changed and updates cpuset accordingly. The top_cpuset is always
2081 * synchronized to cpu_active_mask and N_MEMORY, which is necessary in
2082 * order to make cpusets transparent (of no affect) on systems that are
2083 * actively using CPU hotplug but making no active use of cpusets.
2084 *
2085 * Non-root cpusets are only affected by offlining. If any CPUs or memory
2086 * nodes have been taken down, cpuset_propagate_hotplug() is invoked on all
2087 * descendants.
2088 *
2089 * Note that CPU offlining during suspend is ignored. We don't modify
2090 * cpusets across suspend/resume cycles at all.
2091 */
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002092static void cpuset_hotplug_workfn(struct work_struct *work)
Tejun Heodeb7aa32013-01-07 08:51:07 -08002093{
2094 static cpumask_t new_cpus, tmp_cpus;
2095 static nodemask_t new_mems, tmp_mems;
2096 bool cpus_updated, mems_updated;
2097 bool cpus_offlined, mems_offlined;
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302098
Tejun Heodeb7aa32013-01-07 08:51:07 -08002099 cgroup_lock();
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302100
Tejun Heodeb7aa32013-01-07 08:51:07 -08002101 /* fetch the available cpus/mems and find out which changed how */
2102 cpumask_copy(&new_cpus, cpu_active_mask);
2103 new_mems = node_states[N_MEMORY];
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302104
Tejun Heodeb7aa32013-01-07 08:51:07 -08002105 cpus_updated = !cpumask_equal(top_cpuset.cpus_allowed, &new_cpus);
2106 cpus_offlined = cpumask_andnot(&tmp_cpus, top_cpuset.cpus_allowed,
2107 &new_cpus);
Paul Jacksonb4501292008-02-07 00:14:47 -08002108
Tejun Heodeb7aa32013-01-07 08:51:07 -08002109 mems_updated = !nodes_equal(top_cpuset.mems_allowed, new_mems);
2110 nodes_andnot(tmp_mems, top_cpuset.mems_allowed, new_mems);
2111 mems_offlined = !nodes_empty(tmp_mems);
2112
2113 /* synchronize cpus_allowed to cpu_active_mask */
2114 if (cpus_updated) {
2115 mutex_lock(&callback_mutex);
2116 cpumask_copy(top_cpuset.cpus_allowed, &new_cpus);
2117 mutex_unlock(&callback_mutex);
2118 /* we don't mess with cpumasks of tasks in top_cpuset */
2119 }
2120
2121 /* synchronize mems_allowed to N_MEMORY */
2122 if (mems_updated) {
2123 tmp_mems = top_cpuset.mems_allowed;
2124 mutex_lock(&callback_mutex);
2125 top_cpuset.mems_allowed = new_mems;
2126 mutex_unlock(&callback_mutex);
2127 update_tasks_nodemask(&top_cpuset, &tmp_mems, NULL);
2128 }
2129
2130 /* if cpus or mems went down, we need to propagate to descendants */
2131 if (cpus_offlined || mems_offlined) {
2132 struct cpuset *cs;
2133 LIST_HEAD(queue);
2134
2135 list_add_tail(&top_cpuset.stack_list, &queue);
2136 while ((cs = cpuset_next(&queue)))
2137 if (cs != &top_cpuset)
2138 cpuset_propagate_hotplug(cs);
2139 }
2140
2141 cgroup_unlock();
2142
2143 /* rebuild sched domains if cpus_allowed has changed */
2144 if (cpus_updated) {
2145 struct sched_domain_attr *attr;
2146 cpumask_var_t *doms;
2147 int ndoms;
2148
2149 cgroup_lock();
2150 ndoms = generate_sched_domains(&doms, &attr);
2151 cgroup_unlock();
2152
2153 partition_sched_domains(ndoms, doms, attr);
Cliff Wickman956db3c2008-02-07 00:14:43 -08002154 }
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002155}
2156
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05302157void cpuset_update_active_cpus(bool cpu_online)
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002158{
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002159 /*
2160 * We're inside cpu hotplug critical region which usually nests
2161 * inside cgroup synchronization. Bounce actual hotplug processing
2162 * to a work item to avoid reverse locking order.
2163 *
2164 * We still need to do partition_sched_domains() synchronously;
2165 * otherwise, the scheduler will get confused and put tasks to the
2166 * dead CPU. Fall back to the default single domain.
2167 * cpuset_hotplug_workfn() will rebuild it as necessary.
2168 */
2169 partition_sched_domains(1, NULL, NULL);
2170 schedule_work(&cpuset_hotplug_work);
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002171}
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002172
Paul Jacksonb1aac8b2006-09-29 02:01:17 -07002173#ifdef CONFIG_MEMORY_HOTPLUG
Paul Jackson38837fc2006-09-29 02:01:16 -07002174/*
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002175 * Keep top_cpuset.mems_allowed tracking node_states[N_MEMORY].
2176 * Call this routine anytime after node_states[N_MEMORY] changes.
Srivatsa S. Bhata1cd2b12012-05-24 19:47:03 +05302177 * See cpuset_update_active_cpus() for CPU hotplug handling.
Paul Jackson38837fc2006-09-29 02:01:16 -07002178 */
Miao Xief4818912008-11-19 15:36:30 -08002179static int cpuset_track_online_nodes(struct notifier_block *self,
2180 unsigned long action, void *arg)
Paul Jackson38837fc2006-09-29 02:01:16 -07002181{
Tejun Heo3a5a6d02013-01-07 08:51:07 -08002182 schedule_work(&cpuset_hotplug_work);
Miao Xief4818912008-11-19 15:36:30 -08002183 return NOTIFY_OK;
Paul Jackson38837fc2006-09-29 02:01:16 -07002184}
2185#endif
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/**
2188 * cpuset_init_smp - initialize cpus_allowed
2189 *
2190 * Description: Finish top cpuset after cpu, node maps are initialized
2191 **/
2192
2193void __init cpuset_init_smp(void)
2194{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01002195 cpumask_copy(top_cpuset.cpus_allowed, cpu_active_mask);
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002196 top_cpuset.mems_allowed = node_states[N_MEMORY];
Paul Jackson4c4d50f2006-08-27 01:23:51 -07002197
Miao Xief4818912008-11-19 15:36:30 -08002198 hotplug_memory_notifier(cpuset_track_online_nodes, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199}
2200
2201/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
2203 * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
Li Zefan6af866a2009-01-07 18:08:45 -08002204 * @pmask: pointer to struct cpumask variable to receive cpus_allowed set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 *
Li Zefan300ed6c2009-01-07 18:08:44 -08002206 * Description: Returns the cpumask_var_t cpus_allowed of the cpuset
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 * attached to the specified @tsk. Guaranteed to return some non-empty
Rusty Russell5f054e32012-03-29 15:38:31 +10302208 * subset of cpu_online_mask, even if this means going outside the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 * tasks cpuset.
2210 **/
2211
Li Zefan6af866a2009-01-07 18:08:45 -08002212void cpuset_cpus_allowed(struct task_struct *tsk, struct cpumask *pmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08002214 mutex_lock(&callback_mutex);
Paul Jackson909d75a2006-01-08 01:01:55 -08002215 task_lock(tsk);
Mike Travisf9a86fc2008-04-04 18:11:07 -07002216 guarantee_online_cpus(task_cs(tsk), pmask);
Paul Jackson909d75a2006-01-08 01:01:55 -08002217 task_unlock(tsk);
Oleg Nesterov897f0b32010-03-15 10:10:03 +01002218 mutex_unlock(&callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01002221void cpuset_cpus_allowed_fallback(struct task_struct *tsk)
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002222{
2223 const struct cpuset *cs;
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002224
2225 rcu_read_lock();
2226 cs = task_cs(tsk);
2227 if (cs)
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09002228 do_set_cpus_allowed(tsk, cs->cpus_allowed);
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002229 rcu_read_unlock();
2230
2231 /*
2232 * We own tsk->cpus_allowed, nobody can change it under us.
2233 *
2234 * But we used cs && cs->cpus_allowed lockless and thus can
2235 * race with cgroup_attach_task() or update_cpumask() and get
2236 * the wrong tsk->cpus_allowed. However, both cases imply the
2237 * subsequent cpuset_change_cpumask()->set_cpus_allowed_ptr()
2238 * which takes task_rq_lock().
2239 *
2240 * If we are called after it dropped the lock we must see all
2241 * changes in tsk_cs()->cpus_allowed. Otherwise we can temporary
2242 * set any mask even if it is not right from task_cs() pov,
2243 * the pending set_cpus_allowed_ptr() will fix things.
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01002244 *
2245 * select_fallback_rq() will fix things ups and set cpu_possible_mask
2246 * if required.
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002247 */
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002248}
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250void cpuset_init_current_mems_allowed(void)
2251{
Mike Travisf9a86fc2008-04-04 18:11:07 -07002252 nodes_setall(current->mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Randy Dunlapd9fd8a62005-07-27 11:45:11 -07002255/**
Paul Jackson909d75a2006-01-08 01:01:55 -08002256 * cpuset_mems_allowed - return mems_allowed mask from a tasks cpuset.
2257 * @tsk: pointer to task_struct from which to obtain cpuset->mems_allowed.
2258 *
2259 * Description: Returns the nodemask_t mems_allowed of the cpuset
2260 * attached to the specified @tsk. Guaranteed to return some non-empty
Lai Jiangshan38d7bee2012-12-12 13:51:24 -08002261 * subset of node_states[N_MEMORY], even if this means going outside the
Paul Jackson909d75a2006-01-08 01:01:55 -08002262 * tasks cpuset.
2263 **/
2264
2265nodemask_t cpuset_mems_allowed(struct task_struct *tsk)
2266{
2267 nodemask_t mask;
2268
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08002269 mutex_lock(&callback_mutex);
Paul Jackson909d75a2006-01-08 01:01:55 -08002270 task_lock(tsk);
Paul Menage8793d852007-10-18 23:39:39 -07002271 guarantee_online_mems(task_cs(tsk), &mask);
Paul Jackson909d75a2006-01-08 01:01:55 -08002272 task_unlock(tsk);
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08002273 mutex_unlock(&callback_mutex);
Paul Jackson909d75a2006-01-08 01:01:55 -08002274
2275 return mask;
2276}
2277
2278/**
Mel Gorman19770b32008-04-28 02:12:18 -07002279 * cpuset_nodemask_valid_mems_allowed - check nodemask vs. curremt mems_allowed
2280 * @nodemask: the nodemask to be checked
Randy Dunlapd9fd8a62005-07-27 11:45:11 -07002281 *
Mel Gorman19770b32008-04-28 02:12:18 -07002282 * Are any of the nodes in the nodemask allowed in current->mems_allowed?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 */
Mel Gorman19770b32008-04-28 02:12:18 -07002284int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285{
Mel Gorman19770b32008-04-28 02:12:18 -07002286 return nodes_intersects(*nodemask, current->mems_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288
Paul Jackson9bf22292005-09-06 15:18:12 -07002289/*
Paul Menage78608362008-04-29 01:00:26 -07002290 * nearest_hardwall_ancestor() - Returns the nearest mem_exclusive or
2291 * mem_hardwall ancestor to the specified cpuset. Call holding
2292 * callback_mutex. If no ancestor is mem_exclusive or mem_hardwall
2293 * (an unusual configuration), then returns the root cpuset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
Paul Menage78608362008-04-29 01:00:26 -07002295static const struct cpuset *nearest_hardwall_ancestor(const struct cpuset *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Paul Menage78608362008-04-29 01:00:26 -07002297 while (!(is_mem_exclusive(cs) || is_mem_hardwall(cs)) && cs->parent)
Paul Jackson9bf22292005-09-06 15:18:12 -07002298 cs = cs->parent;
2299 return cs;
2300}
2301
2302/**
David Rientjesa1bc5a42009-04-02 16:57:54 -07002303 * cpuset_node_allowed_softwall - Can we allocate on a memory node?
2304 * @node: is this an allowed node?
Paul Jackson02a0e532006-12-13 00:34:25 -08002305 * @gfp_mask: memory allocation flags
Paul Jackson9bf22292005-09-06 15:18:12 -07002306 *
David Rientjesa1bc5a42009-04-02 16:57:54 -07002307 * If we're in interrupt, yes, we can always allocate. If __GFP_THISNODE is
2308 * set, yes, we can always allocate. If node is in our task's mems_allowed,
2309 * yes. If it's not a __GFP_HARDWALL request and this node is in the nearest
2310 * hardwalled cpuset ancestor to this task's cpuset, yes. If the task has been
2311 * OOM killed and has access to memory reserves as specified by the TIF_MEMDIE
2312 * flag, yes.
Paul Jackson9bf22292005-09-06 15:18:12 -07002313 * Otherwise, no.
2314 *
David Rientjesa1bc5a42009-04-02 16:57:54 -07002315 * If __GFP_HARDWALL is set, cpuset_node_allowed_softwall() reduces to
2316 * cpuset_node_allowed_hardwall(). Otherwise, cpuset_node_allowed_softwall()
2317 * might sleep, and might allow a node from an enclosing cpuset.
Paul Jackson02a0e532006-12-13 00:34:25 -08002318 *
David Rientjesa1bc5a42009-04-02 16:57:54 -07002319 * cpuset_node_allowed_hardwall() only handles the simpler case of hardwall
2320 * cpusets, and never sleeps.
Paul Jackson02a0e532006-12-13 00:34:25 -08002321 *
2322 * The __GFP_THISNODE placement logic is really handled elsewhere,
2323 * by forcibly using a zonelist starting at a specified node, and by
2324 * (in get_page_from_freelist()) refusing to consider the zones for
2325 * any node on the zonelist except the first. By the time any such
2326 * calls get to this routine, we should just shut up and say 'yes'.
2327 *
Paul Jackson9bf22292005-09-06 15:18:12 -07002328 * GFP_USER allocations are marked with the __GFP_HARDWALL bit,
David Rientjesc596d9f2007-05-06 14:49:32 -07002329 * and do not allow allocations outside the current tasks cpuset
2330 * unless the task has been OOM killed as is marked TIF_MEMDIE.
Paul Jackson9bf22292005-09-06 15:18:12 -07002331 * GFP_KERNEL allocations are not so marked, so can escape to the
Paul Menage78608362008-04-29 01:00:26 -07002332 * nearest enclosing hardwalled ancestor cpuset.
Paul Jackson9bf22292005-09-06 15:18:12 -07002333 *
Paul Jackson02a0e532006-12-13 00:34:25 -08002334 * Scanning up parent cpusets requires callback_mutex. The
2335 * __alloc_pages() routine only calls here with __GFP_HARDWALL bit
2336 * _not_ set if it's a GFP_KERNEL allocation, and all nodes in the
2337 * current tasks mems_allowed came up empty on the first pass over
2338 * the zonelist. So only GFP_KERNEL allocations, if all nodes in the
2339 * cpuset are short of memory, might require taking the callback_mutex
2340 * mutex.
Paul Jackson9bf22292005-09-06 15:18:12 -07002341 *
Paul Jackson36be57f2006-05-20 15:00:10 -07002342 * The first call here from mm/page_alloc:get_page_from_freelist()
Paul Jackson02a0e532006-12-13 00:34:25 -08002343 * has __GFP_HARDWALL set in gfp_mask, enforcing hardwall cpusets,
2344 * so no allocation on a node outside the cpuset is allowed (unless
2345 * in interrupt, of course).
Paul Jackson9bf22292005-09-06 15:18:12 -07002346 *
Paul Jackson36be57f2006-05-20 15:00:10 -07002347 * The second pass through get_page_from_freelist() doesn't even call
2348 * here for GFP_ATOMIC calls. For those calls, the __alloc_pages()
2349 * variable 'wait' is not set, and the bit ALLOC_CPUSET is not set
2350 * in alloc_flags. That logic and the checks below have the combined
2351 * affect that:
Paul Jackson9bf22292005-09-06 15:18:12 -07002352 * in_interrupt - any node ok (current task context irrelevant)
2353 * GFP_ATOMIC - any node ok
David Rientjesc596d9f2007-05-06 14:49:32 -07002354 * TIF_MEMDIE - any node ok
Paul Menage78608362008-04-29 01:00:26 -07002355 * GFP_KERNEL - any node in enclosing hardwalled cpuset ok
Paul Jackson9bf22292005-09-06 15:18:12 -07002356 * GFP_USER - only nodes in current tasks mems allowed ok.
Paul Jackson36be57f2006-05-20 15:00:10 -07002357 *
2358 * Rule:
David Rientjesa1bc5a42009-04-02 16:57:54 -07002359 * Don't call cpuset_node_allowed_softwall if you can't sleep, unless you
Paul Jackson36be57f2006-05-20 15:00:10 -07002360 * pass in the __GFP_HARDWALL flag set in gfp_flag, which disables
2361 * the code that might scan up ancestor cpusets and sleep.
Paul Jackson02a0e532006-12-13 00:34:25 -08002362 */
David Rientjesa1bc5a42009-04-02 16:57:54 -07002363int __cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
Paul Jackson9bf22292005-09-06 15:18:12 -07002364{
Paul Jackson9bf22292005-09-06 15:18:12 -07002365 const struct cpuset *cs; /* current cpuset ancestors */
Paul Jackson29afd492006-03-24 03:16:12 -08002366 int allowed; /* is allocation in zone z allowed? */
Paul Jackson9bf22292005-09-06 15:18:12 -07002367
Christoph Lameter9b819d22006-09-25 23:31:40 -07002368 if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
Paul Jackson9bf22292005-09-06 15:18:12 -07002369 return 1;
Paul Jackson92d1dbd2006-05-20 15:00:11 -07002370 might_sleep_if(!(gfp_mask & __GFP_HARDWALL));
Paul Jackson9bf22292005-09-06 15:18:12 -07002371 if (node_isset(node, current->mems_allowed))
2372 return 1;
David Rientjesc596d9f2007-05-06 14:49:32 -07002373 /*
2374 * Allow tasks that have access to memory reserves because they have
2375 * been OOM killed to get memory anywhere.
2376 */
2377 if (unlikely(test_thread_flag(TIF_MEMDIE)))
2378 return 1;
Paul Jackson9bf22292005-09-06 15:18:12 -07002379 if (gfp_mask & __GFP_HARDWALL) /* If hardwall request, stop here */
2380 return 0;
2381
Bob Picco5563e772005-11-13 16:06:35 -08002382 if (current->flags & PF_EXITING) /* Let dying task have memory */
2383 return 1;
2384
Paul Jackson9bf22292005-09-06 15:18:12 -07002385 /* Not hardwall and node outside mems_allowed: scan up cpusets */
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08002386 mutex_lock(&callback_mutex);
Paul Jackson053199e2005-10-30 15:02:30 -08002387
Paul Jackson053199e2005-10-30 15:02:30 -08002388 task_lock(current);
Paul Menage78608362008-04-29 01:00:26 -07002389 cs = nearest_hardwall_ancestor(task_cs(current));
Paul Jackson053199e2005-10-30 15:02:30 -08002390 task_unlock(current);
2391
Paul Jackson9bf22292005-09-06 15:18:12 -07002392 allowed = node_isset(node, cs->mems_allowed);
Ingo Molnar3d3f26a2006-03-23 03:00:18 -08002393 mutex_unlock(&callback_mutex);
Paul Jackson9bf22292005-09-06 15:18:12 -07002394 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
Paul Jackson02a0e532006-12-13 00:34:25 -08002397/*
David Rientjesa1bc5a42009-04-02 16:57:54 -07002398 * cpuset_node_allowed_hardwall - Can we allocate on a memory node?
2399 * @node: is this an allowed node?
Paul Jackson02a0e532006-12-13 00:34:25 -08002400 * @gfp_mask: memory allocation flags
2401 *
David Rientjesa1bc5a42009-04-02 16:57:54 -07002402 * If we're in interrupt, yes, we can always allocate. If __GFP_THISNODE is
2403 * set, yes, we can always allocate. If node is in our task's mems_allowed,
2404 * yes. If the task has been OOM killed and has access to memory reserves as
2405 * specified by the TIF_MEMDIE flag, yes.
2406 * Otherwise, no.
Paul Jackson02a0e532006-12-13 00:34:25 -08002407 *
2408 * The __GFP_THISNODE placement logic is really handled elsewhere,
2409 * by forcibly using a zonelist starting at a specified node, and by
2410 * (in get_page_from_freelist()) refusing to consider the zones for
2411 * any node on the zonelist except the first. By the time any such
2412 * calls get to this routine, we should just shut up and say 'yes'.
2413 *
David Rientjesa1bc5a42009-04-02 16:57:54 -07002414 * Unlike the cpuset_node_allowed_softwall() variant, above,
2415 * this variant requires that the node be in the current task's
Paul Jackson02a0e532006-12-13 00:34:25 -08002416 * mems_allowed or that we're in interrupt. It does not scan up the
2417 * cpuset hierarchy for the nearest enclosing mem_exclusive cpuset.
2418 * It never sleeps.
2419 */
David Rientjesa1bc5a42009-04-02 16:57:54 -07002420int __cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
Paul Jackson02a0e532006-12-13 00:34:25 -08002421{
Paul Jackson02a0e532006-12-13 00:34:25 -08002422 if (in_interrupt() || (gfp_mask & __GFP_THISNODE))
2423 return 1;
Paul Jackson02a0e532006-12-13 00:34:25 -08002424 if (node_isset(node, current->mems_allowed))
2425 return 1;
Daniel Walkerdedf8b72007-10-18 03:06:04 -07002426 /*
2427 * Allow tasks that have access to memory reserves because they have
2428 * been OOM killed to get memory anywhere.
2429 */
2430 if (unlikely(test_thread_flag(TIF_MEMDIE)))
2431 return 1;
Paul Jackson02a0e532006-12-13 00:34:25 -08002432 return 0;
2433}
2434
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002435/**
Jack Steiner6adef3e2010-05-26 14:42:49 -07002436 * cpuset_mem_spread_node() - On which node to begin search for a file page
2437 * cpuset_slab_spread_node() - On which node to begin search for a slab page
Paul Jackson825a46a2006-03-24 03:16:03 -08002438 *
2439 * If a task is marked PF_SPREAD_PAGE or PF_SPREAD_SLAB (as for
2440 * tasks in a cpuset with is_spread_page or is_spread_slab set),
2441 * and if the memory allocation used cpuset_mem_spread_node()
2442 * to determine on which node to start looking, as it will for
2443 * certain page cache or slab cache pages such as used for file
2444 * system buffers and inode caches, then instead of starting on the
2445 * local node to look for a free page, rather spread the starting
2446 * node around the tasks mems_allowed nodes.
2447 *
2448 * We don't have to worry about the returned node being offline
2449 * because "it can't happen", and even if it did, it would be ok.
2450 *
2451 * The routines calling guarantee_online_mems() are careful to
2452 * only set nodes in task->mems_allowed that are online. So it
2453 * should not be possible for the following code to return an
2454 * offline node. But if it did, that would be ok, as this routine
2455 * is not returning the node where the allocation must be, only
2456 * the node where the search should start. The zonelist passed to
2457 * __alloc_pages() will include all nodes. If the slab allocator
2458 * is passed an offline node, it will fall back to the local node.
2459 * See kmem_cache_alloc_node().
2460 */
2461
Jack Steiner6adef3e2010-05-26 14:42:49 -07002462static int cpuset_spread_node(int *rotor)
Paul Jackson825a46a2006-03-24 03:16:03 -08002463{
2464 int node;
2465
Jack Steiner6adef3e2010-05-26 14:42:49 -07002466 node = next_node(*rotor, current->mems_allowed);
Paul Jackson825a46a2006-03-24 03:16:03 -08002467 if (node == MAX_NUMNODES)
2468 node = first_node(current->mems_allowed);
Jack Steiner6adef3e2010-05-26 14:42:49 -07002469 *rotor = node;
Paul Jackson825a46a2006-03-24 03:16:03 -08002470 return node;
2471}
Jack Steiner6adef3e2010-05-26 14:42:49 -07002472
2473int cpuset_mem_spread_node(void)
2474{
Michal Hocko778d3b02011-07-26 16:08:30 -07002475 if (current->cpuset_mem_spread_rotor == NUMA_NO_NODE)
2476 current->cpuset_mem_spread_rotor =
2477 node_random(&current->mems_allowed);
2478
Jack Steiner6adef3e2010-05-26 14:42:49 -07002479 return cpuset_spread_node(&current->cpuset_mem_spread_rotor);
2480}
2481
2482int cpuset_slab_spread_node(void)
2483{
Michal Hocko778d3b02011-07-26 16:08:30 -07002484 if (current->cpuset_slab_spread_rotor == NUMA_NO_NODE)
2485 current->cpuset_slab_spread_rotor =
2486 node_random(&current->mems_allowed);
2487
Jack Steiner6adef3e2010-05-26 14:42:49 -07002488 return cpuset_spread_node(&current->cpuset_slab_spread_rotor);
2489}
2490
Paul Jackson825a46a2006-03-24 03:16:03 -08002491EXPORT_SYMBOL_GPL(cpuset_mem_spread_node);
2492
2493/**
David Rientjesbbe373f2007-10-16 23:25:58 -07002494 * cpuset_mems_allowed_intersects - Does @tsk1's mems_allowed intersect @tsk2's?
2495 * @tsk1: pointer to task_struct of some task.
2496 * @tsk2: pointer to task_struct of some other task.
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002497 *
David Rientjesbbe373f2007-10-16 23:25:58 -07002498 * Description: Return true if @tsk1's mems_allowed intersects the
2499 * mems_allowed of @tsk2. Used by the OOM killer to determine if
2500 * one of the task's memory usage might impact the memory available
2501 * to the other.
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002502 **/
2503
David Rientjesbbe373f2007-10-16 23:25:58 -07002504int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
2505 const struct task_struct *tsk2)
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002506{
David Rientjesbbe373f2007-10-16 23:25:58 -07002507 return nodes_intersects(tsk1->mems_allowed, tsk2->mems_allowed);
Paul Jacksonef08e3b2005-09-06 15:18:13 -07002508}
2509
David Rientjes75aa1992009-01-06 14:39:01 -08002510/**
2511 * cpuset_print_task_mems_allowed - prints task's cpuset and mems_allowed
2512 * @task: pointer to task_struct of some task.
2513 *
2514 * Description: Prints @task's name, cpuset name, and cached copy of its
2515 * mems_allowed to the kernel log. Must hold task_lock(task) to allow
2516 * dereferencing task_cs(task).
2517 */
2518void cpuset_print_task_mems_allowed(struct task_struct *tsk)
2519{
2520 struct dentry *dentry;
2521
2522 dentry = task_cs(tsk)->css.cgroup->dentry;
2523 spin_lock(&cpuset_buffer_lock);
2524 snprintf(cpuset_name, CPUSET_NAME_LEN,
2525 dentry ? (const char *)dentry->d_name.name : "/");
2526 nodelist_scnprintf(cpuset_nodelist, CPUSET_NODELIST_LEN,
2527 tsk->mems_allowed);
2528 printk(KERN_INFO "%s cpuset=%s mems_allowed=%s\n",
2529 tsk->comm, cpuset_name, cpuset_nodelist);
2530 spin_unlock(&cpuset_buffer_lock);
2531}
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533/*
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002534 * Collection of memory_pressure is suppressed unless
2535 * this flag is enabled by writing "1" to the special
2536 * cpuset file 'memory_pressure_enabled' in the root cpuset.
2537 */
2538
Paul Jacksonc5b2aff82006-01-08 01:01:51 -08002539int cpuset_memory_pressure_enabled __read_mostly;
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002540
2541/**
2542 * cpuset_memory_pressure_bump - keep stats of per-cpuset reclaims.
2543 *
2544 * Keep a running average of the rate of synchronous (direct)
2545 * page reclaim efforts initiated by tasks in each cpuset.
2546 *
2547 * This represents the rate at which some task in the cpuset
2548 * ran low on memory on all nodes it was allowed to use, and
2549 * had to enter the kernels page reclaim code in an effort to
2550 * create more free memory by tossing clean pages or swapping
2551 * or writing dirty pages.
2552 *
2553 * Display to user space in the per-cpuset read-only file
2554 * "memory_pressure". Value displayed is an integer
2555 * representing the recent rate of entry into the synchronous
2556 * (direct) page reclaim by any task attached to the cpuset.
2557 **/
2558
2559void __cpuset_memory_pressure_bump(void)
2560{
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002561 task_lock(current);
Paul Menage8793d852007-10-18 23:39:39 -07002562 fmeter_markevent(&task_cs(current)->fmeter);
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002563 task_unlock(current);
2564}
2565
Paul Menage8793d852007-10-18 23:39:39 -07002566#ifdef CONFIG_PROC_PID_CPUSET
Paul Jackson3e0d98b2006-01-08 01:01:49 -08002567/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 * proc_cpuset_show()
2569 * - Print tasks cpuset path into seq_file.
2570 * - Used for /proc/<pid>/cpuset.
Paul Jackson053199e2005-10-30 15:02:30 -08002571 * - No need to task_lock(tsk) on this tsk->cpuset reference, as it
2572 * doesn't really matter if tsk->cpuset changes after we read it,
Paul Jacksonc8d9c902008-02-07 00:14:46 -08002573 * and we take cgroup_mutex, keeping cpuset_attach() from changing it
Paul Menage2df167a2008-02-07 00:14:45 -08002574 * anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 */
Paul Jackson029190c2007-10-18 23:40:20 -07002576static int proc_cpuset_show(struct seq_file *m, void *unused_v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
Eric W. Biederman13b41b02006-06-26 00:25:56 -07002578 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 struct task_struct *tsk;
2580 char *buf;
Paul Menage8793d852007-10-18 23:39:39 -07002581 struct cgroup_subsys_state *css;
Eric W. Biederman99f89552006-06-26 00:25:55 -07002582 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Eric W. Biederman99f89552006-06-26 00:25:55 -07002584 retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2586 if (!buf)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002587 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Eric W. Biederman99f89552006-06-26 00:25:55 -07002589 retval = -ESRCH;
Eric W. Biederman13b41b02006-06-26 00:25:56 -07002590 pid = m->private;
2591 tsk = get_pid_task(pid, PIDTYPE_PID);
Eric W. Biederman99f89552006-06-26 00:25:55 -07002592 if (!tsk)
2593 goto out_free;
2594
2595 retval = -EINVAL;
Paul Menage8793d852007-10-18 23:39:39 -07002596 cgroup_lock();
2597 css = task_subsys_state(tsk, cpuset_subsys_id);
2598 retval = cgroup_path(css->cgroup, buf, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (retval < 0)
Eric W. Biederman99f89552006-06-26 00:25:55 -07002600 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 seq_puts(m, buf);
2602 seq_putc(m, '\n');
Eric W. Biederman99f89552006-06-26 00:25:55 -07002603out_unlock:
Paul Menage8793d852007-10-18 23:39:39 -07002604 cgroup_unlock();
Eric W. Biederman99f89552006-06-26 00:25:55 -07002605 put_task_struct(tsk);
2606out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 kfree(buf);
Eric W. Biederman99f89552006-06-26 00:25:55 -07002608out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return retval;
2610}
2611
2612static int cpuset_open(struct inode *inode, struct file *file)
2613{
Eric W. Biederman13b41b02006-06-26 00:25:56 -07002614 struct pid *pid = PROC_I(inode)->pid;
2615 return single_open(file, proc_cpuset_show, pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
Arjan van de Ven9a321442007-02-12 00:55:35 -08002618const struct file_operations proc_cpuset_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 .open = cpuset_open,
2620 .read = seq_read,
2621 .llseek = seq_lseek,
2622 .release = single_release,
2623};
Paul Menage8793d852007-10-18 23:39:39 -07002624#endif /* CONFIG_PROC_PID_CPUSET */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Heiko Carstensd01d4822009-09-21 11:06:27 +02002626/* Display task mems_allowed in /proc/<pid>/status file. */
Eric W. Biedermandf5f8312008-02-08 04:18:33 -08002627void cpuset_task_status_allowed(struct seq_file *m, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Eric W. Biedermandf5f8312008-02-08 04:18:33 -08002629 seq_printf(m, "Mems_allowed:\t");
Lai Jiangshan30e8e132008-10-18 20:28:20 -07002630 seq_nodemask(m, &task->mems_allowed);
Eric W. Biedermandf5f8312008-02-08 04:18:33 -08002631 seq_printf(m, "\n");
Mike Travis39106dc2008-04-08 11:43:03 -07002632 seq_printf(m, "Mems_allowed_list:\t");
Lai Jiangshan30e8e132008-10-18 20:28:20 -07002633 seq_nodemask_list(m, &task->mems_allowed);
Mike Travis39106dc2008-04-08 11:43:03 -07002634 seq_printf(m, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}