4 * Processor and Memory placement constraints for sets of tasks.
6 * Copyright (C) 2003 BULL SA.
7 * Copyright (C) 2004 Silicon Graphics, Inc.
9 * Portions derived from Patrick Mochel's sysfs code.
10 * sysfs is Copyright (c) 2001-3 Patrick Mochel
11 * Portions Copyright (c) 2004 Silicon Graphics, Inc.
13 * 2003-10-10 Written by Simon Derr <simon.derr@bull.net>
14 * 2003-10-22 Updates by Stephen Hemminger.
15 * 2004 May-July Rework by Paul Jackson <pj@sgi.com>
17 * This file is subject to the terms and conditions of the GNU General Public
18 * License. See the file COPYING in the main directory of the Linux
19 * distribution for more details.
22 #include <linux/config.h>
23 #include <linux/cpu.h>
24 #include <linux/cpumask.h>
25 #include <linux/cpuset.h>
26 #include <linux/err.h>
27 #include <linux/errno.h>
28 #include <linux/file.h>
30 #include <linux/init.h>
31 #include <linux/interrupt.h>
32 #include <linux/kernel.h>
33 #include <linux/kmod.h>
34 #include <linux/list.h>
36 #include <linux/module.h>
37 #include <linux/mount.h>
38 #include <linux/namei.h>
39 #include <linux/pagemap.h>
40 #include <linux/proc_fs.h>
41 #include <linux/sched.h>
42 #include <linux/seq_file.h>
43 #include <linux/slab.h>
44 #include <linux/smp_lock.h>
45 #include <linux/spinlock.h>
46 #include <linux/stat.h>
47 #include <linux/string.h>
48 #include <linux/time.h>
49 #include <linux/backing-dev.h>
50 #include <linux/sort.h>
52 #include <asm/uaccess.h>
53 #include <asm/atomic.h>
54 #include <asm/semaphore.h>
56 #define CPUSET_SUPER_MAGIC 0x27e0eb
59 unsigned long flags
; /* "unsigned long" so bitops work */
60 cpumask_t cpus_allowed
; /* CPUs allowed to tasks in cpuset */
61 nodemask_t mems_allowed
; /* Memory Nodes allowed to tasks */
63 atomic_t count
; /* count tasks using this cpuset */
66 * We link our 'sibling' struct into our parents 'children'.
67 * Our children link their 'sibling' into our 'children'.
69 struct list_head sibling
; /* my parents children */
70 struct list_head children
; /* my children */
72 struct cpuset
*parent
; /* my parent */
73 struct dentry
*dentry
; /* cpuset fs entry */
76 * Copy of global cpuset_mems_generation as of the most
77 * recent time this cpuset changed its mems_allowed.
82 /* bits in struct cpuset flags field */
90 /* convenient tests for these bits */
91 static inline int is_cpu_exclusive(const struct cpuset
*cs
)
93 return !!test_bit(CS_CPU_EXCLUSIVE
, &cs
->flags
);
96 static inline int is_mem_exclusive(const struct cpuset
*cs
)
98 return !!test_bit(CS_MEM_EXCLUSIVE
, &cs
->flags
);
101 static inline int is_removed(const struct cpuset
*cs
)
103 return !!test_bit(CS_REMOVED
, &cs
->flags
);
106 static inline int notify_on_release(const struct cpuset
*cs
)
108 return !!test_bit(CS_NOTIFY_ON_RELEASE
, &cs
->flags
);
112 * Increment this atomic integer everytime any cpuset changes its
113 * mems_allowed value. Users of cpusets can track this generation
114 * number, and avoid having to lock and reload mems_allowed unless
115 * the cpuset they're using changes generation.
117 * A single, global generation is needed because attach_task() could
118 * reattach a task to a different cpuset, which must not have its
119 * generation numbers aliased with those of that tasks previous cpuset.
121 * Generations are needed for mems_allowed because one task cannot
122 * modify anothers memory placement. So we must enable every task,
123 * on every visit to __alloc_pages(), to efficiently check whether
124 * its current->cpuset->mems_allowed has changed, requiring an update
125 * of its current->mems_allowed.
127 static atomic_t cpuset_mems_generation
= ATOMIC_INIT(1);
129 static struct cpuset top_cpuset
= {
130 .flags
= ((1 << CS_CPU_EXCLUSIVE
) | (1 << CS_MEM_EXCLUSIVE
)),
131 .cpus_allowed
= CPU_MASK_ALL
,
132 .mems_allowed
= NODE_MASK_ALL
,
133 .count
= ATOMIC_INIT(0),
134 .sibling
= LIST_HEAD_INIT(top_cpuset
.sibling
),
135 .children
= LIST_HEAD_INIT(top_cpuset
.children
),
138 .mems_generation
= 0,
141 static struct vfsmount
*cpuset_mount
;
142 static struct super_block
*cpuset_sb
= NULL
;
145 * cpuset_sem should be held by anyone who is depending on the children
146 * or sibling lists of any cpuset, or performing non-atomic operations
147 * on the flags or *_allowed values of a cpuset, such as raising the
148 * CS_REMOVED flag bit iff it is not already raised, or reading and
149 * conditionally modifying the *_allowed values. One kernel global
150 * cpuset semaphore should be sufficient - these things don't change
153 * The code that modifies cpusets holds cpuset_sem across the entire
154 * operation, from cpuset_common_file_write() down, single threading
155 * all cpuset modifications (except for counter manipulations from
156 * fork and exit) across the system. This presumes that cpuset
157 * modifications are rare - better kept simple and safe, even if slow.
159 * The code that reads cpusets, such as in cpuset_common_file_read()
160 * and below, only holds cpuset_sem across small pieces of code, such
161 * as when reading out possibly multi-word cpumasks and nodemasks, as
162 * the risks are less, and the desire for performance a little greater.
163 * The proc_cpuset_show() routine needs to hold cpuset_sem to insure
164 * that no cs->dentry is NULL, as it walks up the cpuset tree to root.
166 * The hooks from fork and exit, cpuset_fork() and cpuset_exit(), don't
167 * (usually) grab cpuset_sem. These are the two most performance
168 * critical pieces of code here. The exception occurs on exit(),
169 * when a task in a notify_on_release cpuset exits. Then cpuset_sem
170 * is taken, and if the cpuset count is zero, a usermode call made
171 * to /sbin/cpuset_release_agent with the name of the cpuset (path
172 * relative to the root of cpuset file system) as the argument.
174 * A cpuset can only be deleted if both its 'count' of using tasks is
175 * zero, and its list of 'children' cpusets is empty. Since all tasks
176 * in the system use _some_ cpuset, and since there is always at least
177 * one task in the system (init, pid == 1), therefore, top_cpuset
178 * always has either children cpusets and/or using tasks. So no need
179 * for any special hack to ensure that top_cpuset cannot be deleted.
182 static DECLARE_MUTEX(cpuset_sem
);
185 * A couple of forward declarations required, due to cyclic reference loop:
186 * cpuset_mkdir -> cpuset_create -> cpuset_populate_dir -> cpuset_add_file
187 * -> cpuset_create_file -> cpuset_dir_inode_operations -> cpuset_mkdir.
190 static int cpuset_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
);
191 static int cpuset_rmdir(struct inode
*unused_dir
, struct dentry
*dentry
);
193 static struct backing_dev_info cpuset_backing_dev_info
= {
194 .ra_pages
= 0, /* No readahead */
195 .capabilities
= BDI_CAP_NO_ACCT_DIRTY
| BDI_CAP_NO_WRITEBACK
,
198 static struct inode
*cpuset_new_inode(mode_t mode
)
200 struct inode
*inode
= new_inode(cpuset_sb
);
203 inode
->i_mode
= mode
;
204 inode
->i_uid
= current
->fsuid
;
205 inode
->i_gid
= current
->fsgid
;
206 inode
->i_blksize
= PAGE_CACHE_SIZE
;
208 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
209 inode
->i_mapping
->backing_dev_info
= &cpuset_backing_dev_info
;
214 static void cpuset_diput(struct dentry
*dentry
, struct inode
*inode
)
216 /* is dentry a directory ? if so, kfree() associated cpuset */
217 if (S_ISDIR(inode
->i_mode
)) {
218 struct cpuset
*cs
= dentry
->d_fsdata
;
219 BUG_ON(!(is_removed(cs
)));
225 static struct dentry_operations cpuset_dops
= {
226 .d_iput
= cpuset_diput
,
229 static struct dentry
*cpuset_get_dentry(struct dentry
*parent
, const char *name
)
235 qstr
.len
= strlen(name
);
236 qstr
.hash
= full_name_hash(name
, qstr
.len
);
237 d
= lookup_hash(&qstr
, parent
);
239 d
->d_op
= &cpuset_dops
;
243 static void remove_dir(struct dentry
*d
)
245 struct dentry
*parent
= dget(d
->d_parent
);
248 simple_rmdir(parent
->d_inode
, d
);
253 * NOTE : the dentry must have been dget()'ed
255 static void cpuset_d_remove_dir(struct dentry
*dentry
)
257 struct list_head
*node
;
259 spin_lock(&dcache_lock
);
260 node
= dentry
->d_subdirs
.next
;
261 while (node
!= &dentry
->d_subdirs
) {
262 struct dentry
*d
= list_entry(node
, struct dentry
, d_child
);
266 spin_unlock(&dcache_lock
);
268 simple_unlink(dentry
->d_inode
, d
);
270 spin_lock(&dcache_lock
);
272 node
= dentry
->d_subdirs
.next
;
274 list_del_init(&dentry
->d_child
);
275 spin_unlock(&dcache_lock
);
279 static struct super_operations cpuset_ops
= {
280 .statfs
= simple_statfs
,
281 .drop_inode
= generic_delete_inode
,
284 static int cpuset_fill_super(struct super_block
*sb
, void *unused_data
,
290 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
291 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
292 sb
->s_magic
= CPUSET_SUPER_MAGIC
;
293 sb
->s_op
= &cpuset_ops
;
296 inode
= cpuset_new_inode(S_IFDIR
| S_IRUGO
| S_IXUGO
| S_IWUSR
);
298 inode
->i_op
= &simple_dir_inode_operations
;
299 inode
->i_fop
= &simple_dir_operations
;
300 /* directories start off with i_nlink == 2 (for "." entry) */
306 root
= d_alloc_root(inode
);
315 static struct super_block
*cpuset_get_sb(struct file_system_type
*fs_type
,
316 int flags
, const char *unused_dev_name
,
319 return get_sb_single(fs_type
, flags
, data
, cpuset_fill_super
);
322 static struct file_system_type cpuset_fs_type
= {
324 .get_sb
= cpuset_get_sb
,
325 .kill_sb
= kill_litter_super
,
330 * The files in the cpuset filesystem mostly have a very simple read/write
331 * handling, some common function will take care of it. Nevertheless some cases
332 * (read tasks) are special and therefore I define this structure for every
336 * When reading/writing to a file:
337 * - the cpuset to use in file->f_dentry->d_parent->d_fsdata
338 * - the 'cftype' of the file is file->f_dentry->d_fsdata
344 int (*open
) (struct inode
*inode
, struct file
*file
);
345 ssize_t (*read
) (struct file
*file
, char __user
*buf
, size_t nbytes
,
347 int (*write
) (struct file
*file
, const char __user
*buf
, size_t nbytes
,
349 int (*release
) (struct inode
*inode
, struct file
*file
);
352 static inline struct cpuset
*__d_cs(struct dentry
*dentry
)
354 return dentry
->d_fsdata
;
357 static inline struct cftype
*__d_cft(struct dentry
*dentry
)
359 return dentry
->d_fsdata
;
363 * Call with cpuset_sem held. Writes path of cpuset into buf.
364 * Returns 0 on success, -errno on error.
367 static int cpuset_path(const struct cpuset
*cs
, char *buf
, int buflen
)
371 start
= buf
+ buflen
;
375 int len
= cs
->dentry
->d_name
.len
;
376 if ((start
-= len
) < buf
)
377 return -ENAMETOOLONG
;
378 memcpy(start
, cs
->dentry
->d_name
.name
, len
);
385 return -ENAMETOOLONG
;
388 memmove(buf
, start
, buf
+ buflen
- start
);
393 * Notify userspace when a cpuset is released, by running
394 * /sbin/cpuset_release_agent with the name of the cpuset (path
395 * relative to the root of cpuset file system) as the argument.
397 * Most likely, this user command will try to rmdir this cpuset.
399 * This races with the possibility that some other task will be
400 * attached to this cpuset before it is removed, or that some other
401 * user task will 'mkdir' a child cpuset of this cpuset. That's ok.
402 * The presumed 'rmdir' will fail quietly if this cpuset is no longer
403 * unused, and this cpuset will be reprieved from its death sentence,
404 * to continue to serve a useful existence. Next time it's released,
405 * we will get notified again, if it still has 'notify_on_release' set.
407 * Note final arg to call_usermodehelper() is 0 - that means
408 * don't wait. Since we are holding the global cpuset_sem here,
409 * and we are asking another thread (started from keventd) to rmdir a
410 * cpuset, we can't wait - or we'd deadlock with the removing thread
414 static int cpuset_release_agent(char *cpuset_str
)
416 char *argv
[3], *envp
[3];
420 argv
[i
++] = "/sbin/cpuset_release_agent";
421 argv
[i
++] = cpuset_str
;
425 /* minimal command environment */
426 envp
[i
++] = "HOME=/";
427 envp
[i
++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
430 return call_usermodehelper(argv
[0], argv
, envp
, 0);
434 * Either cs->count of using tasks transitioned to zero, or the
435 * cs->children list of child cpusets just became empty. If this
436 * cs is notify_on_release() and now both the user count is zero and
437 * the list of children is empty, send notice to user land.
440 static void check_for_release(struct cpuset
*cs
)
442 if (notify_on_release(cs
) && atomic_read(&cs
->count
) == 0 &&
443 list_empty(&cs
->children
)) {
446 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
449 if (cpuset_path(cs
, buf
, PAGE_SIZE
) < 0)
451 cpuset_release_agent(buf
);
458 * Return in *pmask the portion of a cpusets's cpus_allowed that
459 * are online. If none are online, walk up the cpuset hierarchy
460 * until we find one that does have some online cpus. If we get
461 * all the way to the top and still haven't found any online cpus,
462 * return cpu_online_map. Or if passed a NULL cs from an exit'ing
463 * task, return cpu_online_map.
465 * One way or another, we guarantee to return some non-empty subset
468 * Call with cpuset_sem held.
471 static void guarantee_online_cpus(const struct cpuset
*cs
, cpumask_t
*pmask
)
473 while (cs
&& !cpus_intersects(cs
->cpus_allowed
, cpu_online_map
))
476 cpus_and(*pmask
, cs
->cpus_allowed
, cpu_online_map
);
478 *pmask
= cpu_online_map
;
479 BUG_ON(!cpus_intersects(*pmask
, cpu_online_map
));
483 * Return in *pmask the portion of a cpusets's mems_allowed that
484 * are online. If none are online, walk up the cpuset hierarchy
485 * until we find one that does have some online mems. If we get
486 * all the way to the top and still haven't found any online mems,
487 * return node_online_map.
489 * One way or another, we guarantee to return some non-empty subset
490 * of node_online_map.
492 * Call with cpuset_sem held.
495 static void guarantee_online_mems(const struct cpuset
*cs
, nodemask_t
*pmask
)
497 while (cs
&& !nodes_intersects(cs
->mems_allowed
, node_online_map
))
500 nodes_and(*pmask
, cs
->mems_allowed
, node_online_map
);
502 *pmask
= node_online_map
;
503 BUG_ON(!nodes_intersects(*pmask
, node_online_map
));
507 * Refresh current tasks mems_allowed and mems_generation from
508 * current tasks cpuset. Call with cpuset_sem held.
510 * Be sure to call refresh_mems() on any cpuset operation which
511 * (1) holds cpuset_sem, and (2) might possibly alloc memory.
512 * Call after obtaining cpuset_sem lock, before any possible
513 * allocation. Otherwise one risks trying to allocate memory
514 * while the task cpuset_mems_generation is not the same as
515 * the mems_generation in its cpuset, which would deadlock on
516 * cpuset_sem in cpuset_update_current_mems_allowed().
518 * Since we hold cpuset_sem, once refresh_mems() is called, the
519 * test (current->cpuset_mems_generation != cs->mems_generation)
520 * in cpuset_update_current_mems_allowed() will remain false,
521 * until we drop cpuset_sem. Anyone else who would change our
522 * cpusets mems_generation needs to lock cpuset_sem first.
525 static void refresh_mems(void)
527 struct cpuset
*cs
= current
->cpuset
;
529 if (current
->cpuset_mems_generation
!= cs
->mems_generation
) {
530 guarantee_online_mems(cs
, ¤t
->mems_allowed
);
531 current
->cpuset_mems_generation
= cs
->mems_generation
;
536 * is_cpuset_subset(p, q) - Is cpuset p a subset of cpuset q?
538 * One cpuset is a subset of another if all its allowed CPUs and
539 * Memory Nodes are a subset of the other, and its exclusive flags
540 * are only set if the other's are set.
543 static int is_cpuset_subset(const struct cpuset
*p
, const struct cpuset
*q
)
545 return cpus_subset(p
->cpus_allowed
, q
->cpus_allowed
) &&
546 nodes_subset(p
->mems_allowed
, q
->mems_allowed
) &&
547 is_cpu_exclusive(p
) <= is_cpu_exclusive(q
) &&
548 is_mem_exclusive(p
) <= is_mem_exclusive(q
);
552 * validate_change() - Used to validate that any proposed cpuset change
553 * follows the structural rules for cpusets.
555 * If we replaced the flag and mask values of the current cpuset
556 * (cur) with those values in the trial cpuset (trial), would
557 * our various subset and exclusive rules still be valid? Presumes
560 * 'cur' is the address of an actual, in-use cpuset. Operations
561 * such as list traversal that depend on the actual address of the
562 * cpuset in the list must use cur below, not trial.
564 * 'trial' is the address of bulk structure copy of cur, with
565 * perhaps one or more of the fields cpus_allowed, mems_allowed,
566 * or flags changed to new, trial values.
568 * Return 0 if valid, -errno if not.
571 static int validate_change(const struct cpuset
*cur
, const struct cpuset
*trial
)
573 struct cpuset
*c
, *par
;
575 /* Each of our child cpusets must be a subset of us */
576 list_for_each_entry(c
, &cur
->children
, sibling
) {
577 if (!is_cpuset_subset(c
, trial
))
581 /* Remaining checks don't apply to root cpuset */
582 if ((par
= cur
->parent
) == NULL
)
585 /* We must be a subset of our parent cpuset */
586 if (!is_cpuset_subset(trial
, par
))
589 /* If either I or some sibling (!= me) is exclusive, we can't overlap */
590 list_for_each_entry(c
, &par
->children
, sibling
) {
591 if ((is_cpu_exclusive(trial
) || is_cpu_exclusive(c
)) &&
593 cpus_intersects(trial
->cpus_allowed
, c
->cpus_allowed
))
595 if ((is_mem_exclusive(trial
) || is_mem_exclusive(c
)) &&
597 nodes_intersects(trial
->mems_allowed
, c
->mems_allowed
))
604 static int update_cpumask(struct cpuset
*cs
, char *buf
)
606 struct cpuset trialcs
;
610 retval
= cpulist_parse(buf
, trialcs
.cpus_allowed
);
613 cpus_and(trialcs
.cpus_allowed
, trialcs
.cpus_allowed
, cpu_online_map
);
614 if (cpus_empty(trialcs
.cpus_allowed
))
616 retval
= validate_change(cs
, &trialcs
);
618 cs
->cpus_allowed
= trialcs
.cpus_allowed
;
622 static int update_nodemask(struct cpuset
*cs
, char *buf
)
624 struct cpuset trialcs
;
628 retval
= nodelist_parse(buf
, trialcs
.mems_allowed
);
631 nodes_and(trialcs
.mems_allowed
, trialcs
.mems_allowed
, node_online_map
);
632 if (nodes_empty(trialcs
.mems_allowed
))
634 retval
= validate_change(cs
, &trialcs
);
636 cs
->mems_allowed
= trialcs
.mems_allowed
;
637 atomic_inc(&cpuset_mems_generation
);
638 cs
->mems_generation
= atomic_read(&cpuset_mems_generation
);
644 * update_flag - read a 0 or a 1 in a file and update associated flag
645 * bit: the bit to update (CS_CPU_EXCLUSIVE, CS_MEM_EXCLUSIVE,
646 * CS_NOTIFY_ON_RELEASE)
647 * cs: the cpuset to update
648 * buf: the buffer where we read the 0 or 1
651 static int update_flag(cpuset_flagbits_t bit
, struct cpuset
*cs
, char *buf
)
654 struct cpuset trialcs
;
657 turning_on
= (simple_strtoul(buf
, NULL
, 10) != 0);
661 set_bit(bit
, &trialcs
.flags
);
663 clear_bit(bit
, &trialcs
.flags
);
665 err
= validate_change(cs
, &trialcs
);
668 set_bit(bit
, &cs
->flags
);
670 clear_bit(bit
, &cs
->flags
);
675 static int attach_task(struct cpuset
*cs
, char *buf
)
678 struct task_struct
*tsk
;
679 struct cpuset
*oldcs
;
682 if (sscanf(buf
, "%d", &pid
) != 1)
684 if (cpus_empty(cs
->cpus_allowed
) || nodes_empty(cs
->mems_allowed
))
688 read_lock(&tasklist_lock
);
690 tsk
= find_task_by_pid(pid
);
692 read_unlock(&tasklist_lock
);
696 get_task_struct(tsk
);
697 read_unlock(&tasklist_lock
);
699 if ((current
->euid
) && (current
->euid
!= tsk
->uid
)
700 && (current
->euid
!= tsk
->suid
)) {
701 put_task_struct(tsk
);
706 get_task_struct(tsk
);
713 put_task_struct(tsk
);
716 atomic_inc(&cs
->count
);
720 guarantee_online_cpus(cs
, &cpus
);
721 set_cpus_allowed(tsk
, cpus
);
723 put_task_struct(tsk
);
724 if (atomic_dec_and_test(&oldcs
->count
))
725 check_for_release(oldcs
);
729 /* The various types of files and directories in a cpuset file system */
738 FILE_NOTIFY_ON_RELEASE
,
742 static ssize_t
cpuset_common_file_write(struct file
*file
, const char __user
*userbuf
,
743 size_t nbytes
, loff_t
*unused_ppos
)
745 struct cpuset
*cs
= __d_cs(file
->f_dentry
->d_parent
);
746 struct cftype
*cft
= __d_cft(file
->f_dentry
);
747 cpuset_filetype_t type
= cft
->private;
751 /* Crude upper limit on largest legitimate cpulist user might write. */
752 if (nbytes
> 100 + 6 * NR_CPUS
)
755 /* +1 for nul-terminator */
756 if ((buffer
= kmalloc(nbytes
+ 1, GFP_KERNEL
)) == 0)
759 if (copy_from_user(buffer
, userbuf
, nbytes
)) {
763 buffer
[nbytes
] = 0; /* nul-terminate */
767 if (is_removed(cs
)) {
774 retval
= update_cpumask(cs
, buffer
);
777 retval
= update_nodemask(cs
, buffer
);
779 case FILE_CPU_EXCLUSIVE
:
780 retval
= update_flag(CS_CPU_EXCLUSIVE
, cs
, buffer
);
782 case FILE_MEM_EXCLUSIVE
:
783 retval
= update_flag(CS_MEM_EXCLUSIVE
, cs
, buffer
);
785 case FILE_NOTIFY_ON_RELEASE
:
786 retval
= update_flag(CS_NOTIFY_ON_RELEASE
, cs
, buffer
);
789 retval
= attach_task(cs
, buffer
);
805 static ssize_t
cpuset_file_write(struct file
*file
, const char __user
*buf
,
806 size_t nbytes
, loff_t
*ppos
)
809 struct cftype
*cft
= __d_cft(file
->f_dentry
);
813 /* special function ? */
815 retval
= cft
->write(file
, buf
, nbytes
, ppos
);
817 retval
= cpuset_common_file_write(file
, buf
, nbytes
, ppos
);
823 * These ascii lists should be read in a single call, by using a user
824 * buffer large enough to hold the entire map. If read in smaller
825 * chunks, there is no guarantee of atomicity. Since the display format
826 * used, list of ranges of sequential numbers, is variable length,
827 * and since these maps can change value dynamically, one could read
828 * gibberish by doing partial reads while a list was changing.
829 * A single large read to a buffer that crosses a page boundary is
830 * ok, because the result being copied to user land is not recomputed
831 * across a page fault.
834 static int cpuset_sprintf_cpulist(char *page
, struct cpuset
*cs
)
839 mask
= cs
->cpus_allowed
;
842 return cpulist_scnprintf(page
, PAGE_SIZE
, mask
);
845 static int cpuset_sprintf_memlist(char *page
, struct cpuset
*cs
)
850 mask
= cs
->mems_allowed
;
853 return nodelist_scnprintf(page
, PAGE_SIZE
, mask
);
856 static ssize_t
cpuset_common_file_read(struct file
*file
, char __user
*buf
,
857 size_t nbytes
, loff_t
*ppos
)
859 struct cftype
*cft
= __d_cft(file
->f_dentry
);
860 struct cpuset
*cs
= __d_cs(file
->f_dentry
->d_parent
);
861 cpuset_filetype_t type
= cft
->private;
868 if (!(page
= (char *)__get_free_page(GFP_KERNEL
)))
875 s
+= cpuset_sprintf_cpulist(s
, cs
);
878 s
+= cpuset_sprintf_memlist(s
, cs
);
880 case FILE_CPU_EXCLUSIVE
:
881 *s
++ = is_cpu_exclusive(cs
) ? '1' : '0';
883 case FILE_MEM_EXCLUSIVE
:
884 *s
++ = is_mem_exclusive(cs
) ? '1' : '0';
886 case FILE_NOTIFY_ON_RELEASE
:
887 *s
++ = notify_on_release(cs
) ? '1' : '0';
896 start
= page
+ *ppos
;
898 retval
= n
- copy_to_user(buf
, start
, min(n
, nbytes
));
901 free_page((unsigned long)page
);
905 static ssize_t
cpuset_file_read(struct file
*file
, char __user
*buf
, size_t nbytes
,
909 struct cftype
*cft
= __d_cft(file
->f_dentry
);
913 /* special function ? */
915 retval
= cft
->read(file
, buf
, nbytes
, ppos
);
917 retval
= cpuset_common_file_read(file
, buf
, nbytes
, ppos
);
922 static int cpuset_file_open(struct inode
*inode
, struct file
*file
)
927 err
= generic_file_open(inode
, file
);
931 cft
= __d_cft(file
->f_dentry
);
935 err
= cft
->open(inode
, file
);
942 static int cpuset_file_release(struct inode
*inode
, struct file
*file
)
944 struct cftype
*cft
= __d_cft(file
->f_dentry
);
946 return cft
->release(inode
, file
);
950 static struct file_operations cpuset_file_operations
= {
951 .read
= cpuset_file_read
,
952 .write
= cpuset_file_write
,
953 .llseek
= generic_file_llseek
,
954 .open
= cpuset_file_open
,
955 .release
= cpuset_file_release
,
958 static struct inode_operations cpuset_dir_inode_operations
= {
959 .lookup
= simple_lookup
,
960 .mkdir
= cpuset_mkdir
,
961 .rmdir
= cpuset_rmdir
,
964 static int cpuset_create_file(struct dentry
*dentry
, int mode
)
973 inode
= cpuset_new_inode(mode
);
978 inode
->i_op
= &cpuset_dir_inode_operations
;
979 inode
->i_fop
= &simple_dir_operations
;
981 /* start off with i_nlink == 2 (for "." entry) */
983 } else if (S_ISREG(mode
)) {
985 inode
->i_fop
= &cpuset_file_operations
;
988 d_instantiate(dentry
, inode
);
989 dget(dentry
); /* Extra count - pin the dentry in core */
994 * cpuset_create_dir - create a directory for an object.
995 * cs: the cpuset we create the directory for.
996 * It must have a valid ->parent field
997 * And we are going to fill its ->dentry field.
998 * name: The name to give to the cpuset directory. Will be copied.
999 * mode: mode to set on new directory.
1002 static int cpuset_create_dir(struct cpuset
*cs
, const char *name
, int mode
)
1004 struct dentry
*dentry
= NULL
;
1005 struct dentry
*parent
;
1008 parent
= cs
->parent
->dentry
;
1009 dentry
= cpuset_get_dentry(parent
, name
);
1011 return PTR_ERR(dentry
);
1012 error
= cpuset_create_file(dentry
, S_IFDIR
| mode
);
1014 dentry
->d_fsdata
= cs
;
1015 parent
->d_inode
->i_nlink
++;
1016 cs
->dentry
= dentry
;
1023 static int cpuset_add_file(struct dentry
*dir
, const struct cftype
*cft
)
1025 struct dentry
*dentry
;
1028 down(&dir
->d_inode
->i_sem
);
1029 dentry
= cpuset_get_dentry(dir
, cft
->name
);
1030 if (!IS_ERR(dentry
)) {
1031 error
= cpuset_create_file(dentry
, 0644 | S_IFREG
);
1033 dentry
->d_fsdata
= (void *)cft
;
1036 error
= PTR_ERR(dentry
);
1037 up(&dir
->d_inode
->i_sem
);
1042 * Stuff for reading the 'tasks' file.
1044 * Reading this file can return large amounts of data if a cpuset has
1045 * *lots* of attached tasks. So it may need several calls to read(),
1046 * but we cannot guarantee that the information we produce is correct
1047 * unless we produce it entirely atomically.
1049 * Upon tasks file open(), a struct ctr_struct is allocated, that
1050 * will have a pointer to an array (also allocated here). The struct
1051 * ctr_struct * is stored in file->private_data. Its resources will
1052 * be freed by release() when the file is closed. The array is used
1053 * to sprintf the PIDs and then used by read().
1056 /* cpusets_tasks_read array */
1064 * Load into 'pidarray' up to 'npids' of the tasks using cpuset 'cs'.
1065 * Return actual number of pids loaded.
1067 static inline int pid_array_load(pid_t
*pidarray
, int npids
, struct cpuset
*cs
)
1070 struct task_struct
*g
, *p
;
1072 read_lock(&tasklist_lock
);
1074 do_each_thread(g
, p
) {
1075 if (p
->cpuset
== cs
) {
1076 pidarray
[n
++] = p
->pid
;
1077 if (unlikely(n
== npids
))
1080 } while_each_thread(g
, p
);
1083 read_unlock(&tasklist_lock
);
1087 static int cmppid(const void *a
, const void *b
)
1089 return *(pid_t
*)a
- *(pid_t
*)b
;
1093 * Convert array 'a' of 'npids' pid_t's to a string of newline separated
1094 * decimal pids in 'buf'. Don't write more than 'sz' chars, but return
1095 * count 'cnt' of how many chars would be written if buf were large enough.
1097 static int pid_array_to_buf(char *buf
, int sz
, pid_t
*a
, int npids
)
1102 for (i
= 0; i
< npids
; i
++)
1103 cnt
+= snprintf(buf
+ cnt
, max(sz
- cnt
, 0), "%d\n", a
[i
]);
1107 static int cpuset_tasks_open(struct inode
*unused
, struct file
*file
)
1109 struct cpuset
*cs
= __d_cs(file
->f_dentry
->d_parent
);
1110 struct ctr_struct
*ctr
;
1115 if (!(file
->f_mode
& FMODE_READ
))
1118 ctr
= kmalloc(sizeof(*ctr
), GFP_KERNEL
);
1123 * If cpuset gets more users after we read count, we won't have
1124 * enough space - tough. This race is indistinguishable to the
1125 * caller from the case that the additional cpuset users didn't
1126 * show up until sometime later on.
1128 npids
= atomic_read(&cs
->count
);
1129 pidarray
= kmalloc(npids
* sizeof(pid_t
), GFP_KERNEL
);
1133 npids
= pid_array_load(pidarray
, npids
, cs
);
1134 sort(pidarray
, npids
, sizeof(pid_t
), cmppid
, NULL
);
1136 /* Call pid_array_to_buf() twice, first just to get bufsz */
1137 ctr
->bufsz
= pid_array_to_buf(&c
, sizeof(c
), pidarray
, npids
) + 1;
1138 ctr
->buf
= kmalloc(ctr
->bufsz
, GFP_KERNEL
);
1141 ctr
->bufsz
= pid_array_to_buf(ctr
->buf
, ctr
->bufsz
, pidarray
, npids
);
1144 file
->private_data
= ctr
;
1155 static ssize_t
cpuset_tasks_read(struct file
*file
, char __user
*buf
,
1156 size_t nbytes
, loff_t
*ppos
)
1158 struct ctr_struct
*ctr
= file
->private_data
;
1160 if (*ppos
+ nbytes
> ctr
->bufsz
)
1161 nbytes
= ctr
->bufsz
- *ppos
;
1162 if (copy_to_user(buf
, ctr
->buf
+ *ppos
, nbytes
))
1168 static int cpuset_tasks_release(struct inode
*unused_inode
, struct file
*file
)
1170 struct ctr_struct
*ctr
;
1172 if (file
->f_mode
& FMODE_READ
) {
1173 ctr
= file
->private_data
;
1181 * for the common functions, 'private' gives the type of file
1184 static struct cftype cft_tasks
= {
1186 .open
= cpuset_tasks_open
,
1187 .read
= cpuset_tasks_read
,
1188 .release
= cpuset_tasks_release
,
1189 .private = FILE_TASKLIST
,
1192 static struct cftype cft_cpus
= {
1194 .private = FILE_CPULIST
,
1197 static struct cftype cft_mems
= {
1199 .private = FILE_MEMLIST
,
1202 static struct cftype cft_cpu_exclusive
= {
1203 .name
= "cpu_exclusive",
1204 .private = FILE_CPU_EXCLUSIVE
,
1207 static struct cftype cft_mem_exclusive
= {
1208 .name
= "mem_exclusive",
1209 .private = FILE_MEM_EXCLUSIVE
,
1212 static struct cftype cft_notify_on_release
= {
1213 .name
= "notify_on_release",
1214 .private = FILE_NOTIFY_ON_RELEASE
,
1217 static int cpuset_populate_dir(struct dentry
*cs_dentry
)
1221 if ((err
= cpuset_add_file(cs_dentry
, &cft_cpus
)) < 0)
1223 if ((err
= cpuset_add_file(cs_dentry
, &cft_mems
)) < 0)
1225 if ((err
= cpuset_add_file(cs_dentry
, &cft_cpu_exclusive
)) < 0)
1227 if ((err
= cpuset_add_file(cs_dentry
, &cft_mem_exclusive
)) < 0)
1229 if ((err
= cpuset_add_file(cs_dentry
, &cft_notify_on_release
)) < 0)
1231 if ((err
= cpuset_add_file(cs_dentry
, &cft_tasks
)) < 0)
1237 * cpuset_create - create a cpuset
1238 * parent: cpuset that will be parent of the new cpuset.
1239 * name: name of the new cpuset. Will be strcpy'ed.
1240 * mode: mode to set on new inode
1242 * Must be called with the semaphore on the parent inode held
1245 static long cpuset_create(struct cpuset
*parent
, const char *name
, int mode
)
1250 cs
= kmalloc(sizeof(*cs
), GFP_KERNEL
);
1257 if (notify_on_release(parent
))
1258 set_bit(CS_NOTIFY_ON_RELEASE
, &cs
->flags
);
1259 cs
->cpus_allowed
= CPU_MASK_NONE
;
1260 cs
->mems_allowed
= NODE_MASK_NONE
;
1261 atomic_set(&cs
->count
, 0);
1262 INIT_LIST_HEAD(&cs
->sibling
);
1263 INIT_LIST_HEAD(&cs
->children
);
1264 atomic_inc(&cpuset_mems_generation
);
1265 cs
->mems_generation
= atomic_read(&cpuset_mems_generation
);
1267 cs
->parent
= parent
;
1269 list_add(&cs
->sibling
, &cs
->parent
->children
);
1271 err
= cpuset_create_dir(cs
, name
, mode
);
1276 * Release cpuset_sem before cpuset_populate_dir() because it
1277 * will down() this new directory's i_sem and if we race with
1278 * another mkdir, we might deadlock.
1282 err
= cpuset_populate_dir(cs
->dentry
);
1283 /* If err < 0, we have a half-filled directory - oh well ;) */
1286 list_del(&cs
->sibling
);
1292 static int cpuset_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
1294 struct cpuset
*c_parent
= dentry
->d_parent
->d_fsdata
;
1296 /* the vfs holds inode->i_sem already */
1297 return cpuset_create(c_parent
, dentry
->d_name
.name
, mode
| S_IFDIR
);
1300 static int cpuset_rmdir(struct inode
*unused_dir
, struct dentry
*dentry
)
1302 struct cpuset
*cs
= dentry
->d_fsdata
;
1304 struct cpuset
*parent
;
1306 /* the vfs holds both inode->i_sem already */
1310 if (atomic_read(&cs
->count
) > 0) {
1314 if (!list_empty(&cs
->children
)) {
1318 spin_lock(&cs
->dentry
->d_lock
);
1319 parent
= cs
->parent
;
1320 set_bit(CS_REMOVED
, &cs
->flags
);
1321 list_del(&cs
->sibling
); /* delete my sibling from parent->children */
1322 if (list_empty(&parent
->children
))
1323 check_for_release(parent
);
1324 d
= dget(cs
->dentry
);
1326 spin_unlock(&d
->d_lock
);
1327 cpuset_d_remove_dir(d
);
1334 * cpuset_init - initialize cpusets at system boot
1336 * Description: Initialize top_cpuset and the cpuset internal file system,
1339 int __init
cpuset_init(void)
1341 struct dentry
*root
;
1344 top_cpuset
.cpus_allowed
= CPU_MASK_ALL
;
1345 top_cpuset
.mems_allowed
= NODE_MASK_ALL
;
1347 atomic_inc(&cpuset_mems_generation
);
1348 top_cpuset
.mems_generation
= atomic_read(&cpuset_mems_generation
);
1350 init_task
.cpuset
= &top_cpuset
;
1352 err
= register_filesystem(&cpuset_fs_type
);
1355 cpuset_mount
= kern_mount(&cpuset_fs_type
);
1356 if (IS_ERR(cpuset_mount
)) {
1357 printk(KERN_ERR
"cpuset: could not mount!\n");
1358 err
= PTR_ERR(cpuset_mount
);
1359 cpuset_mount
= NULL
;
1362 root
= cpuset_mount
->mnt_sb
->s_root
;
1363 root
->d_fsdata
= &top_cpuset
;
1364 root
->d_inode
->i_nlink
++;
1365 top_cpuset
.dentry
= root
;
1366 root
->d_inode
->i_op
= &cpuset_dir_inode_operations
;
1367 err
= cpuset_populate_dir(root
);
1373 * cpuset_init_smp - initialize cpus_allowed
1375 * Description: Finish top cpuset after cpu, node maps are initialized
1378 void __init
cpuset_init_smp(void)
1380 top_cpuset
.cpus_allowed
= cpu_online_map
;
1381 top_cpuset
.mems_allowed
= node_online_map
;
1385 * cpuset_fork - attach newly forked task to its parents cpuset.
1386 * @p: pointer to task_struct of forking parent process.
1388 * Description: By default, on fork, a task inherits its
1389 * parents cpuset. The pointer to the shared cpuset is
1390 * automatically copied in fork.c by dup_task_struct().
1391 * This cpuset_fork() routine need only increment the usage
1392 * counter in that cpuset.
1395 void cpuset_fork(struct task_struct
*tsk
)
1397 atomic_inc(&tsk
->cpuset
->count
);
1401 * cpuset_exit - detach cpuset from exiting task
1402 * @tsk: pointer to task_struct of exiting process
1404 * Description: Detach cpuset from @tsk and release it.
1406 * Note that cpusets marked notify_on_release force every task
1407 * in them to take the global cpuset_sem semaphore when exiting.
1408 * This could impact scaling on very large systems. Be reluctant
1409 * to use notify_on_release cpusets where very high task exit
1410 * scaling is required on large systems.
1412 * Don't even think about derefencing 'cs' after the cpuset use
1413 * count goes to zero, except inside a critical section guarded
1414 * by the cpuset_sem semaphore. If you don't hold cpuset_sem,
1415 * then a zero cpuset use count is a license to any other task to
1416 * nuke the cpuset immediately.
1420 void cpuset_exit(struct task_struct
*tsk
)
1429 if (notify_on_release(cs
)) {
1431 if (atomic_dec_and_test(&cs
->count
))
1432 check_for_release(cs
);
1435 atomic_dec(&cs
->count
);
1440 * cpuset_cpus_allowed - return cpus_allowed mask from a tasks cpuset.
1441 * @tsk: pointer to task_struct from which to obtain cpuset->cpus_allowed.
1443 * Description: Returns the cpumask_t cpus_allowed of the cpuset
1444 * attached to the specified @tsk. Guaranteed to return some non-empty
1445 * subset of cpu_online_map, even if this means going outside the
1449 cpumask_t
cpuset_cpus_allowed(const struct task_struct
*tsk
)
1454 task_lock((struct task_struct
*)tsk
);
1455 guarantee_online_cpus(tsk
->cpuset
, &mask
);
1456 task_unlock((struct task_struct
*)tsk
);
1462 void cpuset_init_current_mems_allowed(void)
1464 current
->mems_allowed
= NODE_MASK_ALL
;
1468 * If the current tasks cpusets mems_allowed changed behind our backs,
1469 * update current->mems_allowed and mems_generation to the new value.
1470 * Do not call this routine if in_interrupt().
1473 void cpuset_update_current_mems_allowed(void)
1475 struct cpuset
*cs
= current
->cpuset
;
1478 return; /* task is exiting */
1479 if (current
->cpuset_mems_generation
!= cs
->mems_generation
) {
1486 void cpuset_restrict_to_mems_allowed(unsigned long *nodes
)
1488 bitmap_and(nodes
, nodes
, nodes_addr(current
->mems_allowed
),
1493 * Are any of the nodes on zonelist zl allowed in current->mems_allowed?
1495 int cpuset_zonelist_valid_mems_allowed(struct zonelist
*zl
)
1499 for (i
= 0; zl
->zones
[i
]; i
++) {
1500 int nid
= zl
->zones
[i
]->zone_pgdat
->node_id
;
1502 if (node_isset(nid
, current
->mems_allowed
))
1509 * Is 'current' valid, and is zone z allowed in current->mems_allowed?
1511 int cpuset_zone_allowed(struct zone
*z
)
1513 return in_interrupt() ||
1514 node_isset(z
->zone_pgdat
->node_id
, current
->mems_allowed
);
1518 * proc_cpuset_show()
1519 * - Print tasks cpuset path into seq_file.
1520 * - Used for /proc/<pid>/cpuset.
1523 static int proc_cpuset_show(struct seq_file
*m
, void *v
)
1526 struct task_struct
*tsk
;
1530 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1544 retval
= cpuset_path(cs
, buf
, PAGE_SIZE
);
1555 static int cpuset_open(struct inode
*inode
, struct file
*file
)
1557 struct task_struct
*tsk
= PROC_I(inode
)->task
;
1558 return single_open(file
, proc_cpuset_show
, tsk
);
1561 struct file_operations proc_cpuset_operations
= {
1562 .open
= cpuset_open
,
1564 .llseek
= seq_lseek
,
1565 .release
= single_release
,
1568 /* Display task cpus_allowed, mems_allowed in /proc/<pid>/status file. */
1569 char *cpuset_task_status_allowed(struct task_struct
*task
, char *buffer
)
1571 buffer
+= sprintf(buffer
, "Cpus_allowed:\t");
1572 buffer
+= cpumask_scnprintf(buffer
, PAGE_SIZE
, task
->cpus_allowed
);
1573 buffer
+= sprintf(buffer
, "\n");
1574 buffer
+= sprintf(buffer
, "Mems_allowed:\t");
1575 buffer
+= nodemask_scnprintf(buffer
, PAGE_SIZE
, task
->mems_allowed
);
1576 buffer
+= sprintf(buffer
, "\n");