blob: 85eeab5e7e32593bcdbe9b7da316ce1e9f9bc836 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 CPUSETS
2 -------
3
4Copyright (C) 2004 BULL SA.
5Written by Simon.Derr@bull.net
6
Christoph Lameterb4fb3762006-03-14 19:50:20 -08007Portions Copyright (c) 2004-2006 Silicon Graphics, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008Modified by Paul Jackson <pj@sgi.com>
Christoph Lameterb4fb3762006-03-14 19:50:20 -08009Modified by Christoph Lameter <clameter@sgi.com>
Paul Menage8793d852007-10-18 23:39:39 -070010Modified by Paul Menage <menage@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12CONTENTS:
13=========
14
151. Cpusets
16 1.1 What are cpusets ?
17 1.2 Why are cpusets needed ?
18 1.3 How are cpusets implemented ?
Paul Jacksonbd5e09c2006-01-08 01:01:50 -080019 1.4 What are exclusive cpusets ?
Paul Menage8793d852007-10-18 23:39:39 -070020 1.5 What is memory_pressure ?
21 1.6 What is memory spread ?
22 1.7 How do I use cpusets ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232. Usage Examples and Syntax
24 2.1 Basic Usage
25 2.2 Adding/removing cpus
26 2.3 Setting flags
27 2.4 Attaching processes
283. Questions
294. Contact
30
311. Cpusets
32==========
33
341.1 What are cpusets ?
35----------------------
36
37Cpusets provide a mechanism for assigning a set of CPUs and Memory
Christoph Lameter0e1e7c72007-10-16 01:25:38 -070038Nodes to a set of tasks. In this document "Memory Node" refers to
39an on-line node that contains memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41Cpusets constrain the CPU and Memory placement of tasks to only
42the resources within a tasks current cpuset. They form a nested
43hierarchy visible in a virtual file system. These are the essential
44hooks, beyond what is already present, required to manage dynamic
45job placement on large systems.
46
Paul Menage8793d852007-10-18 23:39:39 -070047Cpusets use the generic cgroup subsystem described in
48Documentation/cgroup.txt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Paul Menage8793d852007-10-18 23:39:39 -070050Requests by a task, using the sched_setaffinity(2) system call to
51include CPUs in its CPU affinity mask, and using the mbind(2) and
52set_mempolicy(2) system calls to include Memory Nodes in its memory
53policy, are both filtered through that tasks cpuset, filtering out any
54CPUs or Memory Nodes not in that cpuset. The scheduler will not
55schedule a task on a CPU that is not allowed in its cpus_allowed
56vector, and the kernel page allocator will not allocate a page on a
57node that is not allowed in the requesting tasks mems_allowed vector.
58
59User level code may create and destroy cpusets by name in the cgroup
Linus Torvalds1da177e2005-04-16 15:20:36 -070060virtual file system, manage the attributes and permissions of these
61cpusets and which CPUs and Memory Nodes are assigned to each cpuset,
62specify and query to which cpuset a task is assigned, and list the
63task pids assigned to a cpuset.
64
65
661.2 Why are cpusets needed ?
67----------------------------
68
69The management of large computer systems, with many processors (CPUs),
70complex memory cache hierarchies and multiple Memory Nodes having
71non-uniform access times (NUMA) presents additional challenges for
72the efficient scheduling and memory placement of processes.
73
74Frequently more modest sized systems can be operated with adequate
75efficiency just by letting the operating system automatically share
76the available CPU and Memory resources amongst the requesting tasks.
77
78But larger systems, which benefit more from careful processor and
79memory placement to reduce memory access times and contention,
80and which typically represent a larger investment for the customer,
Jean Delvare33430dc2005-10-30 15:02:20 -080081can benefit from explicitly placing jobs on properly sized subsets of
Linus Torvalds1da177e2005-04-16 15:20:36 -070082the system.
83
84This can be especially valuable on:
85
86 * Web Servers running multiple instances of the same web application,
87 * Servers running different applications (for instance, a web server
88 and a database), or
89 * NUMA systems running large HPC applications with demanding
90 performance characteristics.
91
92These subsets, or "soft partitions" must be able to be dynamically
93adjusted, as the job mix changes, without impacting other concurrently
Christoph Lameterb4fb3762006-03-14 19:50:20 -080094executing jobs. The location of the running jobs pages may also be moved
95when the memory locations are changed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97The kernel cpuset patch provides the minimum essential kernel
98mechanisms required to efficiently implement such subsets. It
99leverages existing CPU and Memory Placement facilities in the Linux
100kernel to avoid any additional impact on the critical scheduler or
101memory allocator code.
102
103
1041.3 How are cpusets implemented ?
105---------------------------------
106
Christoph Lameterb4fb3762006-03-14 19:50:20 -0800107Cpusets provide a Linux kernel mechanism to constrain which CPUs and
108Memory Nodes are used by a process or set of processes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110The Linux kernel already has a pair of mechanisms to specify on which
111CPUs a task may be scheduled (sched_setaffinity) and on which Memory
112Nodes it may obtain memory (mbind, set_mempolicy).
113
114Cpusets extends these two mechanisms as follows:
115
116 - Cpusets are sets of allowed CPUs and Memory Nodes, known to the
117 kernel.
118 - Each task in the system is attached to a cpuset, via a pointer
Paul Menage8793d852007-10-18 23:39:39 -0700119 in the task structure to a reference counted cgroup structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 - Calls to sched_setaffinity are filtered to just those CPUs
121 allowed in that tasks cpuset.
122 - Calls to mbind and set_mempolicy are filtered to just
123 those Memory Nodes allowed in that tasks cpuset.
124 - The root cpuset contains all the systems CPUs and Memory
125 Nodes.
126 - For any cpuset, one can define child cpusets containing a subset
127 of the parents CPU and Memory Node resources.
128 - The hierarchy of cpusets can be mounted at /dev/cpuset, for
129 browsing and manipulation from user space.
130 - A cpuset may be marked exclusive, which ensures that no other
131 cpuset (except direct ancestors and descendents) may contain
132 any overlapping CPUs or Memory Nodes.
133 - You can list all the tasks (by pid) attached to any cpuset.
134
135The implementation of cpusets requires a few, simple hooks
136into the rest of the kernel, none in performance critical paths:
137
Paul Jackson864913f2006-01-11 02:01:38 +0100138 - in init/main.c, to initialize the root cpuset at system boot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 - in fork and exit, to attach and detach a task from its cpuset.
140 - in sched_setaffinity, to mask the requested CPUs by what's
141 allowed in that tasks cpuset.
142 - in sched.c migrate_all_tasks(), to keep migrating tasks within
143 the CPUs allowed by their cpuset, if possible.
144 - in the mbind and set_mempolicy system calls, to mask the requested
145 Memory Nodes by what's allowed in that tasks cpuset.
Paul Jackson864913f2006-01-11 02:01:38 +0100146 - in page_alloc.c, to restrict memory to allowed nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 - in vmscan.c, to restrict page recovery to the current cpuset.
148
Paul Menage8793d852007-10-18 23:39:39 -0700149You should mount the "cgroup" filesystem type in order to enable
150browsing and modifying the cpusets presently known to the kernel. No
151new system calls are added for cpusets - all support for querying and
152modifying cpusets is via this cpuset file system.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154The /proc/<pid>/status file for each task has two added lines,
155displaying the tasks cpus_allowed (on which CPUs it may be scheduled)
156and mems_allowed (on which Memory Nodes it may obtain memory),
157in the format seen in the following example:
158
159 Cpus_allowed: ffffffff,ffffffff,ffffffff,ffffffff
160 Mems_allowed: ffffffff,ffffffff
161
Paul Menage8793d852007-10-18 23:39:39 -0700162Each cpuset is represented by a directory in the cgroup file system
163containing (on top of the standard cgroup files) the following
164files describing that cpuset:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 - cpus: list of CPUs in that cpuset
167 - mems: list of Memory Nodes in that cpuset
Paul Jackson45b07ef2006-01-08 01:00:56 -0800168 - memory_migrate flag: if set, move pages to cpusets nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 - cpu_exclusive flag: is cpu placement exclusive?
170 - mem_exclusive flag: is memory placement exclusive?
Paul Jacksonbd5e09c2006-01-08 01:01:50 -0800171 - memory_pressure: measure of how much paging pressure in cpuset
172
173In addition, the root cpuset only has the following file:
174 - memory_pressure_enabled flag: compute memory_pressure?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176New cpusets are created using the mkdir system call or shell
177command. The properties of a cpuset, such as its flags, allowed
178CPUs and Memory Nodes, and attached tasks, are modified by writing
179to the appropriate file in that cpusets directory, as listed above.
180
181The named hierarchical structure of nested cpusets allows partitioning
182a large system into nested, dynamically changeable, "soft-partitions".
183
184The attachment of each task, automatically inherited at fork by any
185children of that task, to a cpuset allows organizing the work load
186on a system into related sets of tasks such that each set is constrained
187to using the CPUs and Memory Nodes of a particular cpuset. A task
188may be re-attached to any other cpuset, if allowed by the permissions
189on the necessary cpuset file system directories.
190
191Such management of a system "in the large" integrates smoothly with
192the detailed placement done on individual tasks and memory regions
193using the sched_setaffinity, mbind and set_mempolicy system calls.
194
195The following rules apply to each cpuset:
196
197 - Its CPUs and Memory Nodes must be a subset of its parents.
198 - It can only be marked exclusive if its parent is.
199 - If its cpu or memory is exclusive, they may not overlap any sibling.
200
201These rules, and the natural hierarchy of cpusets, enable efficient
202enforcement of the exclusive guarantee, without having to scan all
203cpusets every time any of them change to ensure nothing overlaps a
204exclusive cpuset. Also, the use of a Linux virtual file system (vfs)
205to represent the cpuset hierarchy provides for a familiar permission
206and name space for cpusets, with a minimum of additional kernel code.
207
Paul Jackson38837fc2006-09-29 02:01:16 -0700208The cpus and mems files in the root (top_cpuset) cpuset are
209read-only. The cpus file automatically tracks the value of
210cpu_online_map using a CPU hotplug notifier, and the mems file
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700211automatically tracks the value of node_states[N_MEMORY]--i.e.,
212nodes with memory--using the cpuset_track_online_nodes() hook.
Paul Jackson4c4d50f2006-08-27 01:23:51 -0700213
Paul Jacksonbd5e09c2006-01-08 01:01:50 -0800214
2151.4 What are exclusive cpusets ?
216--------------------------------
217
218If a cpuset is cpu or mem exclusive, no other cpuset, other than
219a direct ancestor or descendent, may share any of the same CPUs or
220Memory Nodes.
221
Paul Jacksonbd5e09c2006-01-08 01:01:50 -0800222A cpuset that is mem_exclusive restricts kernel allocations for
223page, buffer and other data commonly shared by the kernel across
224multiple users. All cpusets, whether mem_exclusive or not, restrict
225allocations of memory for user space. This enables configuring a
226system so that several independent jobs can share common kernel data,
227such as file system pages, while isolating each jobs user allocation in
228its own cpuset. To do this, construct a large mem_exclusive cpuset to
229hold all the jobs, and construct child, non-mem_exclusive cpusets for
230each individual job. Only a small amount of typical kernel memory,
231such as requests from interrupt handlers, is allowed to be taken
232outside even a mem_exclusive cpuset.
233
234
Paul Menage8793d852007-10-18 23:39:39 -07002351.5 What is memory_pressure ?
Paul Jacksonbd5e09c2006-01-08 01:01:50 -0800236-----------------------------
237The memory_pressure of a cpuset provides a simple per-cpuset metric
238of the rate that the tasks in a cpuset are attempting to free up in
239use memory on the nodes of the cpuset to satisfy additional memory
240requests.
241
242This enables batch managers monitoring jobs running in dedicated
243cpusets to efficiently detect what level of memory pressure that job
244is causing.
245
246This is useful both on tightly managed systems running a wide mix of
247submitted jobs, which may choose to terminate or re-prioritize jobs that
248are trying to use more memory than allowed on the nodes assigned them,
249and with tightly coupled, long running, massively parallel scientific
250computing jobs that will dramatically fail to meet required performance
251goals if they start to use more memory than allowed to them.
252
253This mechanism provides a very economical way for the batch manager
254to monitor a cpuset for signs of memory pressure. It's up to the
255batch manager or other user code to decide what to do about it and
256take action.
257
258==> Unless this feature is enabled by writing "1" to the special file
259 /dev/cpuset/memory_pressure_enabled, the hook in the rebalance
260 code of __alloc_pages() for this metric reduces to simply noticing
261 that the cpuset_memory_pressure_enabled flag is zero. So only
262 systems that enable this feature will compute the metric.
263
264Why a per-cpuset, running average:
265
266 Because this meter is per-cpuset, rather than per-task or mm,
267 the system load imposed by a batch scheduler monitoring this
268 metric is sharply reduced on large systems, because a scan of
269 the tasklist can be avoided on each set of queries.
270
271 Because this meter is a running average, instead of an accumulating
272 counter, a batch scheduler can detect memory pressure with a
273 single read, instead of having to read and accumulate results
274 for a period of time.
275
276 Because this meter is per-cpuset rather than per-task or mm,
277 the batch scheduler can obtain the key information, memory
278 pressure in a cpuset, with a single read, rather than having to
279 query and accumulate results over all the (dynamically changing)
280 set of tasks in the cpuset.
281
282A per-cpuset simple digital filter (requires a spinlock and 3 words
283of data per-cpuset) is kept, and updated by any task attached to that
284cpuset, if it enters the synchronous (direct) page reclaim code.
285
286A per-cpuset file provides an integer number representing the recent
287(half-life of 10 seconds) rate of direct page reclaims caused by
288the tasks in the cpuset, in units of reclaims attempted per second,
289times 1000.
290
291
Paul Menage8793d852007-10-18 23:39:39 -07002921.6 What is memory spread ?
Paul Jackson825a46a2006-03-24 03:16:03 -0800293---------------------------
294There are two boolean flag files per cpuset that control where the
295kernel allocates pages for the file system buffers and related in
296kernel data structures. They are called 'memory_spread_page' and
297'memory_spread_slab'.
298
299If the per-cpuset boolean flag file 'memory_spread_page' is set, then
300the kernel will spread the file system buffers (page cache) evenly
301over all the nodes that the faulting task is allowed to use, instead
302of preferring to put those pages on the node where the task is running.
303
304If the per-cpuset boolean flag file 'memory_spread_slab' is set,
305then the kernel will spread some file system related slab caches,
306such as for inodes and dentries evenly over all the nodes that the
307faulting task is allowed to use, instead of preferring to put those
308pages on the node where the task is running.
309
310The setting of these flags does not affect anonymous data segment or
311stack segment pages of a task.
312
313By default, both kinds of memory spreading are off, and memory
314pages are allocated on the node local to where the task is running,
315except perhaps as modified by the tasks NUMA mempolicy or cpuset
316configuration, so long as sufficient free memory pages are available.
317
318When new cpusets are created, they inherit the memory spread settings
319of their parent.
320
321Setting memory spreading causes allocations for the affected page
322or slab caches to ignore the tasks NUMA mempolicy and be spread
323instead. Tasks using mbind() or set_mempolicy() calls to set NUMA
324mempolicies will not notice any change in these calls as a result of
325their containing tasks memory spread settings. If memory spreading
326is turned off, then the currently specified NUMA mempolicy once again
327applies to memory page allocations.
328
329Both 'memory_spread_page' and 'memory_spread_slab' are boolean flag
330files. By default they contain "0", meaning that the feature is off
331for that cpuset. If a "1" is written to that file, then that turns
332the named feature on.
333
334The implementation is simple.
335
336Setting the flag 'memory_spread_page' turns on a per-process flag
337PF_SPREAD_PAGE for each task that is in that cpuset or subsequently
338joins that cpuset. The page allocation calls for the page cache
339is modified to perform an inline check for this PF_SPREAD_PAGE task
340flag, and if set, a call to a new routine cpuset_mem_spread_node()
341returns the node to prefer for the allocation.
342
343Similarly, setting 'memory_spread_cache' turns on the flag
344PF_SPREAD_SLAB, and appropriately marked slab caches will allocate
345pages from the node returned by cpuset_mem_spread_node().
346
347The cpuset_mem_spread_node() routine is also simple. It uses the
348value of a per-task rotor cpuset_mem_spread_rotor to select the next
349node in the current tasks mems_allowed to prefer for the allocation.
350
351This memory placement policy is also known (in other contexts) as
352round-robin or interleave.
353
354This policy can provide substantial improvements for jobs that need
355to place thread local data on the corresponding node, but that need
356to access large file system data sets that need to be spread across
357the several nodes in the jobs cpuset in order to fit. Without this
358policy, especially for jobs that might have one thread reading in the
359data set, the memory allocation across the nodes in the jobs cpuset
360can become very uneven.
361
362
Paul Menage8793d852007-10-18 23:39:39 -07003631.7 How do I use cpusets ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364--------------------------
365
366In order to minimize the impact of cpusets on critical kernel
367code, such as the scheduler, and due to the fact that the kernel
368does not support one task updating the memory placement of another
369task directly, the impact on a task of changing its cpuset CPU
370or Memory Node placement, or of changing to which cpuset a task
371is attached, is subtle.
372
373If a cpuset has its Memory Nodes modified, then for each task attached
374to that cpuset, the next time that the kernel attempts to allocate
375a page of memory for that task, the kernel will notice the change
376in the tasks cpuset, and update its per-task memory placement to
377remain within the new cpusets memory placement. If the task was using
378mempolicy MPOL_BIND, and the nodes to which it was bound overlap with
379its new cpuset, then the task will continue to use whatever subset
380of MPOL_BIND nodes are still allowed in the new cpuset. If the task
381was using MPOL_BIND and now none of its MPOL_BIND nodes are allowed
382in the new cpuset, then the task will be essentially treated as if it
383was MPOL_BIND bound to the new cpuset (even though its numa placement,
384as queried by get_mempolicy(), doesn't change). If a task is moved
385from one cpuset to another, then the kernel will adjust the tasks
386memory placement, as above, the next time that the kernel attempts
387to allocate a page of memory for that task.
388
389If a cpuset has its CPUs modified, then each task using that
390cpuset does _not_ change its behavior automatically. In order to
391minimize the impact on the critical scheduling code in the kernel,
392tasks will continue to use their prior CPU placement until they
393are rebound to their cpuset, by rewriting their pid to the 'tasks'
394file of their cpuset. If a task had been bound to some subset of its
395cpuset using the sched_setaffinity() call, and if any of that subset
396is still allowed in its new cpuset settings, then the task will be
397restricted to the intersection of the CPUs it was allowed on before,
398and its new cpuset CPU placement. If, on the other hand, there is
399no overlap between a tasks prior placement and its new cpuset CPU
400placement, then the task will be allowed to run on any CPU allowed
401in its new cpuset. If a task is moved from one cpuset to another,
402its CPU placement is updated in the same way as if the tasks pid is
403rewritten to the 'tasks' file of its current cpuset.
404
405In summary, the memory placement of a task whose cpuset is changed is
406updated by the kernel, on the next allocation of a page for that task,
407but the processor placement is not updated, until that tasks pid is
408rewritten to the 'tasks' file of its cpuset. This is done to avoid
409impacting the scheduler code in the kernel with a check for changes
410in a tasks processor placement.
411
Paul Jackson45b07ef2006-01-08 01:00:56 -0800412Normally, once a page is allocated (given a physical page
413of main memory) then that page stays on whatever node it
414was allocated, so long as it remains allocated, even if the
415cpusets memory placement policy 'mems' subsequently changes.
416If the cpuset flag file 'memory_migrate' is set true, then when
417tasks are attached to that cpuset, any pages that task had
418allocated to it on nodes in its previous cpuset are migrated
Christoph Lameterb4fb3762006-03-14 19:50:20 -0800419to the tasks new cpuset. The relative placement of the page within
420the cpuset is preserved during these migration operations if possible.
421For example if the page was on the second valid node of the prior cpuset
422then the page will be placed on the second valid node of the new cpuset.
423
Paul Jackson45b07ef2006-01-08 01:00:56 -0800424Also if 'memory_migrate' is set true, then if that cpusets
425'mems' file is modified, pages allocated to tasks in that
426cpuset, that were on nodes in the previous setting of 'mems',
Christoph Lameterb4fb3762006-03-14 19:50:20 -0800427will be moved to nodes in the new setting of 'mems.'
428Pages that were not in the tasks prior cpuset, or in the cpusets
429prior 'mems' setting, will not be moved.
Paul Jackson45b07ef2006-01-08 01:00:56 -0800430
Tobias Klauserd533f672005-09-10 00:26:46 -0700431There is an exception to the above. If hotplug functionality is used
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432to remove all the CPUs that are currently assigned to a cpuset,
433then the kernel will automatically update the cpus_allowed of all
Paul Jacksonb39c4fa2005-05-20 13:59:15 -0700434tasks attached to CPUs in that cpuset to allow all CPUs. When memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435hotplug functionality for removing Memory Nodes is available, a
436similar exception is expected to apply there as well. In general,
437the kernel prefers to violate cpuset placement, over starving a task
438that has had all its allowed CPUs or Memory Nodes taken offline. User
439code should reconfigure cpusets to only refer to online CPUs and Memory
440Nodes when using hotplug to add or remove such resources.
441
442There is a second exception to the above. GFP_ATOMIC requests are
443kernel internal allocations that must be satisfied, immediately.
444The kernel may drop some request, in rare cases even panic, if a
445GFP_ATOMIC alloc fails. If the request cannot be satisfied within
446the current tasks cpuset, then we relax the cpuset, and look for
447memory anywhere we can find it. It's better to violate the cpuset
448than stress the kernel.
449
450To start a new job that is to be contained within a cpuset, the steps are:
451
452 1) mkdir /dev/cpuset
Paul Menage8793d852007-10-18 23:39:39 -0700453 2) mount -t cgroup -ocpuset cpuset /dev/cpuset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 3) Create the new cpuset by doing mkdir's and write's (or echo's) in
455 the /dev/cpuset virtual file system.
456 4) Start a task that will be the "founding father" of the new job.
457 5) Attach that task to the new cpuset by writing its pid to the
458 /dev/cpuset tasks file for that cpuset.
459 6) fork, exec or clone the job tasks from this founding father task.
460
461For example, the following sequence of commands will setup a cpuset
462named "Charlie", containing just CPUs 2 and 3, and Memory Node 1,
463and then start a subshell 'sh' in that cpuset:
464
Paul Menage8793d852007-10-18 23:39:39 -0700465 mount -t cgroup -ocpuset cpuset /dev/cpuset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 cd /dev/cpuset
467 mkdir Charlie
468 cd Charlie
469 /bin/echo 2-3 > cpus
470 /bin/echo 1 > mems
471 /bin/echo $$ > tasks
472 sh
473 # The subshell 'sh' is now running in cpuset Charlie
474 # The next line should display '/Charlie'
475 cat /proc/self/cpuset
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477In the future, a C library interface to cpusets will likely be
478available. For now, the only way to query or modify cpusets is
479via the cpuset file system, using the various cd, mkdir, echo, cat,
480rmdir commands from the shell, or their equivalent from C.
481
482The sched_setaffinity calls can also be done at the shell prompt using
483SGI's runon or Robert Love's taskset. The mbind and set_mempolicy
484calls can be done at the shell prompt using the numactl command
485(part of Andi Kleen's numa package).
486
4872. Usage Examples and Syntax
488============================
489
4902.1 Basic Usage
491---------------
492
493Creating, modifying, using the cpusets can be done through the cpuset
494virtual filesystem.
495
496To mount it, type:
Paul Menage8793d852007-10-18 23:39:39 -0700497# mount -t cgroup -o cpuset cpuset /dev/cpuset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499Then under /dev/cpuset you can find a tree that corresponds to the
500tree of the cpusets in the system. For instance, /dev/cpuset
501is the cpuset that holds the whole system.
502
503If you want to create a new cpuset under /dev/cpuset:
504# cd /dev/cpuset
505# mkdir my_cpuset
506
507Now you want to do something with this cpuset.
508# cd my_cpuset
509
510In this directory you can find several files:
511# ls
512cpus cpu_exclusive mems mem_exclusive tasks
513
514Reading them will give you information about the state of this cpuset:
515the CPUs and Memory Nodes it can use, the processes that are using
516it, its properties. By writing to these files you can manipulate
517the cpuset.
518
519Set some flags:
520# /bin/echo 1 > cpu_exclusive
521
522Add some cpus:
523# /bin/echo 0-7 > cpus
524
Simon Horman2400ff72007-04-01 23:49:40 -0700525Add some mems:
526# /bin/echo 0-7 > mems
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528Now attach your shell to this cpuset:
529# /bin/echo $$ > tasks
530
531You can also create cpusets inside your cpuset by using mkdir in this
532directory.
533# mkdir my_sub_cs
534
535To remove a cpuset, just use rmdir:
536# rmdir my_sub_cs
537This will fail if the cpuset is in use (has cpusets inside, or has
538processes attached).
539
Paul Menage8793d852007-10-18 23:39:39 -0700540Note that for legacy reasons, the "cpuset" filesystem exists as a
541wrapper around the cgroup filesystem.
542
543The command
544
545mount -t cpuset X /dev/cpuset
546
547is equivalent to
548
549mount -t cgroup -ocpuset X /dev/cpuset
550echo "/sbin/cpuset_release_agent" > /dev/cpuset/release_agent
551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522.2 Adding/removing cpus
553------------------------
554
555This is the syntax to use when writing in the cpus or mems files
556in cpuset directories:
557
558# /bin/echo 1-4 > cpus -> set cpus list to cpus 1,2,3,4
559# /bin/echo 1,2,3,4 > cpus -> set cpus list to cpus 1,2,3,4
560
5612.3 Setting flags
562-----------------
563
564The syntax is very simple:
565
566# /bin/echo 1 > cpu_exclusive -> set flag 'cpu_exclusive'
567# /bin/echo 0 > cpu_exclusive -> unset flag 'cpu_exclusive'
568
5692.4 Attaching processes
570-----------------------
571
572# /bin/echo PID > tasks
573
574Note that it is PID, not PIDs. You can only attach ONE task at a time.
575If you have several tasks to attach, you have to do it one after another:
576
577# /bin/echo PID1 > tasks
578# /bin/echo PID2 > tasks
579 ...
580# /bin/echo PIDn > tasks
581
582
5833. Questions
584============
585
586Q: what's up with this '/bin/echo' ?
587A: bash's builtin 'echo' command does not check calls to write() against
588 errors. If you use it in the cpuset file system, you won't be
589 able to tell whether a command succeeded or failed.
590
591Q: When I attach processes, only the first of the line gets really attached !
592A: We can only return one error code per call to write(). So you should also
593 put only ONE pid.
594
5954. Contact
596==========
597
598Web: http://www.bullopensource.org/cpuset