Task Control Groups: make cpusets a client of cgroups
[cascardo/linux.git] / Documentation / cpusets.txt
1                                 CPUSETS
2                                 -------
3
4 Copyright (C) 2004 BULL SA.
5 Written by Simon.Derr@bull.net
6
7 Portions Copyright (c) 2004-2006 Silicon Graphics, Inc.
8 Modified by Paul Jackson <pj@sgi.com>
9 Modified by Christoph Lameter <clameter@sgi.com>
10 Modified by Paul Menage <menage@google.com>
11
12 CONTENTS:
13 =========
14
15 1. Cpusets
16   1.1 What are cpusets ?
17   1.2 Why are cpusets needed ?
18   1.3 How are cpusets implemented ?
19   1.4 What are exclusive cpusets ?
20   1.5 What is memory_pressure ?
21   1.6 What is memory spread ?
22   1.7 How do I use cpusets ?
23 2. 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
28 3. Questions
29 4. Contact
30
31 1. Cpusets
32 ==========
33
34 1.1 What are cpusets ?
35 ----------------------
36
37 Cpusets provide a mechanism for assigning a set of CPUs and Memory
38 Nodes to a set of tasks.   In this document "Memory Node" refers to
39 an on-line node that contains memory.
40
41 Cpusets constrain the CPU and Memory placement of tasks to only
42 the resources within a tasks current cpuset.  They form a nested
43 hierarchy visible in a virtual file system.  These are the essential
44 hooks, beyond what is already present, required to manage dynamic
45 job placement on large systems.
46
47 Cpusets use the generic cgroup subsystem described in
48 Documentation/cgroup.txt.
49
50 Requests by a task, using the sched_setaffinity(2) system call to
51 include CPUs in its CPU affinity mask, and using the mbind(2) and
52 set_mempolicy(2) system calls to include Memory Nodes in its memory
53 policy, are both filtered through that tasks cpuset, filtering out any
54 CPUs or Memory Nodes not in that cpuset.  The scheduler will not
55 schedule a task on a CPU that is not allowed in its cpus_allowed
56 vector, and the kernel page allocator will not allocate a page on a
57 node that is not allowed in the requesting tasks mems_allowed vector.
58
59 User level code may create and destroy cpusets by name in the cgroup
60 virtual file system, manage the attributes and permissions of these
61 cpusets and which CPUs and Memory Nodes are assigned to each cpuset,
62 specify and query to which cpuset a task is assigned, and list the
63 task pids assigned to a cpuset.
64
65
66 1.2 Why are cpusets needed ?
67 ----------------------------
68
69 The management of large computer systems, with many processors (CPUs),
70 complex memory cache hierarchies and multiple Memory Nodes having
71 non-uniform access times (NUMA) presents additional challenges for
72 the efficient scheduling and memory placement of processes.
73
74 Frequently more modest sized systems can be operated with adequate
75 efficiency just by letting the operating system automatically share
76 the available CPU and Memory resources amongst the requesting tasks.
77
78 But larger systems, which benefit more from careful processor and
79 memory placement to reduce memory access times and contention,
80 and which typically represent a larger investment for the customer,
81 can benefit from explicitly placing jobs on properly sized subsets of
82 the system.
83
84 This 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
92 These subsets, or "soft partitions" must be able to be dynamically
93 adjusted, as the job mix changes, without impacting other concurrently
94 executing jobs. The location of the running jobs pages may also be moved
95 when the memory locations are changed.
96
97 The kernel cpuset patch provides the minimum essential kernel
98 mechanisms required to efficiently implement such subsets.  It
99 leverages existing CPU and Memory Placement facilities in the Linux
100 kernel to avoid any additional impact on the critical scheduler or
101 memory allocator code.
102
103
104 1.3 How are cpusets implemented ?
105 ---------------------------------
106
107 Cpusets provide a Linux kernel mechanism to constrain which CPUs and
108 Memory Nodes are used by a process or set of processes.
109
110 The Linux kernel already has a pair of mechanisms to specify on which
111 CPUs a task may be scheduled (sched_setaffinity) and on which Memory
112 Nodes it may obtain memory (mbind, set_mempolicy).
113
114 Cpusets 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
119    in the task structure to a reference counted cgroup structure.
120  - 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
135 The implementation of cpusets requires a few, simple hooks
136 into the rest of the kernel, none in performance critical paths:
137
138  - in init/main.c, to initialize the root cpuset at system boot.
139  - 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.
146  - in page_alloc.c, to restrict memory to allowed nodes.
147  - in vmscan.c, to restrict page recovery to the current cpuset.
148
149 You should mount the "cgroup" filesystem type in order to enable
150 browsing and modifying the cpusets presently known to the kernel.  No
151 new system calls are added for cpusets - all support for querying and
152 modifying cpusets is via this cpuset file system.
153
154 The /proc/<pid>/status file for each task has two added lines,
155 displaying the tasks cpus_allowed (on which CPUs it may be scheduled)
156 and mems_allowed (on which Memory Nodes it may obtain memory),
157 in the format seen in the following example:
158
159   Cpus_allowed:   ffffffff,ffffffff,ffffffff,ffffffff
160   Mems_allowed:   ffffffff,ffffffff
161
162 Each cpuset is represented by a directory in the cgroup file system
163 containing (on top of the standard cgroup files) the following
164 files describing that cpuset:
165
166  - cpus: list of CPUs in that cpuset
167  - mems: list of Memory Nodes in that cpuset
168  - memory_migrate flag: if set, move pages to cpusets nodes
169  - cpu_exclusive flag: is cpu placement exclusive?
170  - mem_exclusive flag: is memory placement exclusive?
171  - memory_pressure: measure of how much paging pressure in cpuset
172
173 In addition, the root cpuset only has the following file:
174  - memory_pressure_enabled flag: compute memory_pressure?
175
176 New cpusets are created using the mkdir system call or shell
177 command.  The properties of a cpuset, such as its flags, allowed
178 CPUs and Memory Nodes, and attached tasks, are modified by writing
179 to the appropriate file in that cpusets directory, as listed above.
180
181 The named hierarchical structure of nested cpusets allows partitioning
182 a large system into nested, dynamically changeable, "soft-partitions".
183
184 The attachment of each task, automatically inherited at fork by any
185 children of that task, to a cpuset allows organizing the work load
186 on a system into related sets of tasks such that each set is constrained
187 to using the CPUs and Memory Nodes of a particular cpuset.  A task
188 may be re-attached to any other cpuset, if allowed by the permissions
189 on the necessary cpuset file system directories.
190
191 Such management of a system "in the large" integrates smoothly with
192 the detailed placement done on individual tasks and memory regions
193 using the sched_setaffinity, mbind and set_mempolicy system calls.
194
195 The 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
201 These rules, and the natural hierarchy of cpusets, enable efficient
202 enforcement of the exclusive guarantee, without having to scan all
203 cpusets every time any of them change to ensure nothing overlaps a
204 exclusive cpuset.  Also, the use of a Linux virtual file system (vfs)
205 to represent the cpuset hierarchy provides for a familiar permission
206 and name space for cpusets, with a minimum of additional kernel code.
207
208 The cpus and mems files in the root (top_cpuset) cpuset are
209 read-only.  The cpus file automatically tracks the value of
210 cpu_online_map using a CPU hotplug notifier, and the mems file
211 automatically tracks the value of node_states[N_MEMORY]--i.e.,
212 nodes with memory--using the cpuset_track_online_nodes() hook.
213
214
215 1.4 What are exclusive cpusets ?
216 --------------------------------
217
218 If a cpuset is cpu or mem exclusive, no other cpuset, other than
219 a direct ancestor or descendent, may share any of the same CPUs or
220 Memory Nodes.
221
222 A cpuset that is mem_exclusive restricts kernel allocations for
223 page, buffer and other data commonly shared by the kernel across
224 multiple users.  All cpusets, whether mem_exclusive or not, restrict
225 allocations of memory for user space.  This enables configuring a
226 system so that several independent jobs can share common kernel data,
227 such as file system pages, while isolating each jobs user allocation in
228 its own cpuset.  To do this, construct a large mem_exclusive cpuset to
229 hold all the jobs, and construct child, non-mem_exclusive cpusets for
230 each individual job.  Only a small amount of typical kernel memory,
231 such as requests from interrupt handlers, is allowed to be taken
232 outside even a mem_exclusive cpuset.
233
234
235 1.5 What is memory_pressure ?
236 -----------------------------
237 The memory_pressure of a cpuset provides a simple per-cpuset metric
238 of the rate that the tasks in a cpuset are attempting to free up in
239 use memory on the nodes of the cpuset to satisfy additional memory
240 requests.
241
242 This enables batch managers monitoring jobs running in dedicated
243 cpusets to efficiently detect what level of memory pressure that job
244 is causing.
245
246 This is useful both on tightly managed systems running a wide mix of
247 submitted jobs, which may choose to terminate or re-prioritize jobs that
248 are trying to use more memory than allowed on the nodes assigned them,
249 and with tightly coupled, long running, massively parallel scientific
250 computing jobs that will dramatically fail to meet required performance
251 goals if they start to use more memory than allowed to them.
252
253 This mechanism provides a very economical way for the batch manager
254 to monitor a cpuset for signs of memory pressure.  It's up to the
255 batch manager or other user code to decide what to do about it and
256 take 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
264 Why 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
282 A per-cpuset simple digital filter (requires a spinlock and 3 words
283 of data per-cpuset) is kept, and updated by any task attached to that
284 cpuset, if it enters the synchronous (direct) page reclaim code.
285
286 A per-cpuset file provides an integer number representing the recent
287 (half-life of 10 seconds) rate of direct page reclaims caused by
288 the tasks in the cpuset, in units of reclaims attempted per second,
289 times 1000.
290
291
292 1.6 What is memory spread ?
293 ---------------------------
294 There are two boolean flag files per cpuset that control where the
295 kernel allocates pages for the file system buffers and related in
296 kernel data structures.  They are called 'memory_spread_page' and
297 'memory_spread_slab'.
298
299 If the per-cpuset boolean flag file 'memory_spread_page' is set, then
300 the kernel will spread the file system buffers (page cache) evenly
301 over all the nodes that the faulting task is allowed to use, instead
302 of preferring to put those pages on the node where the task is running.
303
304 If the per-cpuset boolean flag file 'memory_spread_slab' is set,
305 then the kernel will spread some file system related slab caches,
306 such as for inodes and dentries evenly over all the nodes that the
307 faulting task is allowed to use, instead of preferring to put those
308 pages on the node where the task is running.
309
310 The setting of these flags does not affect anonymous data segment or
311 stack segment pages of a task.
312
313 By default, both kinds of memory spreading are off, and memory
314 pages are allocated on the node local to where the task is running,
315 except perhaps as modified by the tasks NUMA mempolicy or cpuset
316 configuration, so long as sufficient free memory pages are available.
317
318 When new cpusets are created, they inherit the memory spread settings
319 of their parent.
320
321 Setting memory spreading causes allocations for the affected page
322 or slab caches to ignore the tasks NUMA mempolicy and be spread
323 instead.    Tasks using mbind() or set_mempolicy() calls to set NUMA
324 mempolicies will not notice any change in these calls as a result of
325 their containing tasks memory spread settings.  If memory spreading
326 is turned off, then the currently specified NUMA mempolicy once again
327 applies to memory page allocations.
328
329 Both 'memory_spread_page' and 'memory_spread_slab' are boolean flag
330 files.  By default they contain "0", meaning that the feature is off
331 for that cpuset.  If a "1" is written to that file, then that turns
332 the named feature on.
333
334 The implementation is simple.
335
336 Setting the flag 'memory_spread_page' turns on a per-process flag
337 PF_SPREAD_PAGE for each task that is in that cpuset or subsequently
338 joins that cpuset.  The page allocation calls for the page cache
339 is modified to perform an inline check for this PF_SPREAD_PAGE task
340 flag, and if set, a call to a new routine cpuset_mem_spread_node()
341 returns the node to prefer for the allocation.
342
343 Similarly, setting 'memory_spread_cache' turns on the flag
344 PF_SPREAD_SLAB, and appropriately marked slab caches will allocate
345 pages from the node returned by cpuset_mem_spread_node().
346
347 The cpuset_mem_spread_node() routine is also simple.  It uses the
348 value of a per-task rotor cpuset_mem_spread_rotor to select the next
349 node in the current tasks mems_allowed to prefer for the allocation.
350
351 This memory placement policy is also known (in other contexts) as
352 round-robin or interleave.
353
354 This policy can provide substantial improvements for jobs that need
355 to place thread local data on the corresponding node, but that need
356 to access large file system data sets that need to be spread across
357 the several nodes in the jobs cpuset in order to fit.  Without this
358 policy, especially for jobs that might have one thread reading in the
359 data set, the memory allocation across the nodes in the jobs cpuset
360 can become very uneven.
361
362
363 1.7 How do I use cpusets ?
364 --------------------------
365
366 In order to minimize the impact of cpusets on critical kernel
367 code, such as the scheduler, and due to the fact that the kernel
368 does not support one task updating the memory placement of another
369 task directly, the impact on a task of changing its cpuset CPU
370 or Memory Node placement, or of changing to which cpuset a task
371 is attached, is subtle.
372
373 If a cpuset has its Memory Nodes modified, then for each task attached
374 to that cpuset, the next time that the kernel attempts to allocate
375 a page of memory for that task, the kernel will notice the change
376 in the tasks cpuset, and update its per-task memory placement to
377 remain within the new cpusets memory placement.  If the task was using
378 mempolicy MPOL_BIND, and the nodes to which it was bound overlap with
379 its new cpuset, then the task will continue to use whatever subset
380 of MPOL_BIND nodes are still allowed in the new cpuset.  If the task
381 was using MPOL_BIND and now none of its MPOL_BIND nodes are allowed
382 in the new cpuset, then the task will be essentially treated as if it
383 was MPOL_BIND bound to the new cpuset (even though its numa placement,
384 as queried by get_mempolicy(), doesn't change).  If a task is moved
385 from one cpuset to another, then the kernel will adjust the tasks
386 memory placement, as above, the next time that the kernel attempts
387 to allocate a page of memory for that task.
388
389 If a cpuset has its CPUs modified, then each task using that
390 cpuset does _not_ change its behavior automatically.  In order to
391 minimize the impact on the critical scheduling code in the kernel,
392 tasks will continue to use their prior CPU placement until they
393 are rebound to their cpuset, by rewriting their pid to the 'tasks'
394 file of their cpuset.  If a task had been bound to some subset of its
395 cpuset using the sched_setaffinity() call, and if any of that subset
396 is still allowed in its new cpuset settings, then the task will be
397 restricted to the intersection of the CPUs it was allowed on before,
398 and its new cpuset CPU placement.  If, on the other hand, there is
399 no overlap between a tasks prior placement and its new cpuset CPU
400 placement, then the task will be allowed to run on any CPU allowed
401 in its new cpuset.  If a task is moved from one cpuset to another,
402 its CPU placement is updated in the same way as if the tasks pid is
403 rewritten to the 'tasks' file of its current cpuset.
404
405 In summary, the memory placement of a task whose cpuset is changed is
406 updated by the kernel, on the next allocation of a page for that task,
407 but the processor placement is not updated, until that tasks pid is
408 rewritten to the 'tasks' file of its cpuset.  This is done to avoid
409 impacting the scheduler code in the kernel with a check for changes
410 in a tasks processor placement.
411
412 Normally, once a page is allocated (given a physical page
413 of main memory) then that page stays on whatever node it
414 was allocated, so long as it remains allocated, even if the
415 cpusets memory placement policy 'mems' subsequently changes.
416 If the cpuset flag file 'memory_migrate' is set true, then when
417 tasks are attached to that cpuset, any pages that task had
418 allocated to it on nodes in its previous cpuset are migrated
419 to the tasks new cpuset. The relative placement of the page within
420 the cpuset is preserved during these migration operations if possible.
421 For example if the page was on the second valid node of the prior cpuset
422 then the page will be placed on the second valid node of the new cpuset.
423
424 Also if 'memory_migrate' is set true, then if that cpusets
425 'mems' file is modified, pages allocated to tasks in that
426 cpuset, that were on nodes in the previous setting of 'mems',
427 will be moved to nodes in the new setting of 'mems.'
428 Pages that were not in the tasks prior cpuset, or in the cpusets
429 prior 'mems' setting, will not be moved.
430
431 There is an exception to the above.  If hotplug functionality is used
432 to remove all the CPUs that are currently assigned to a cpuset,
433 then the kernel will automatically update the cpus_allowed of all
434 tasks attached to CPUs in that cpuset to allow all CPUs.  When memory
435 hotplug functionality for removing Memory Nodes is available, a
436 similar exception is expected to apply there as well.  In general,
437 the kernel prefers to violate cpuset placement, over starving a task
438 that has had all its allowed CPUs or Memory Nodes taken offline.  User
439 code should reconfigure cpusets to only refer to online CPUs and Memory
440 Nodes when using hotplug to add or remove such resources.
441
442 There is a second exception to the above.  GFP_ATOMIC requests are
443 kernel internal allocations that must be satisfied, immediately.
444 The kernel may drop some request, in rare cases even panic, if a
445 GFP_ATOMIC alloc fails.  If the request cannot be satisfied within
446 the current tasks cpuset, then we relax the cpuset, and look for
447 memory anywhere we can find it.  It's better to violate the cpuset
448 than stress the kernel.
449
450 To start a new job that is to be contained within a cpuset, the steps are:
451
452  1) mkdir /dev/cpuset
453  2) mount -t cgroup -ocpuset cpuset /dev/cpuset
454  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
461 For example, the following sequence of commands will setup a cpuset
462 named "Charlie", containing just CPUs 2 and 3, and Memory Node 1,
463 and then start a subshell 'sh' in that cpuset:
464
465   mount -t cgroup -ocpuset cpuset /dev/cpuset
466   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
477 In the future, a C library interface to cpusets will likely be
478 available.  For now, the only way to query or modify cpusets is
479 via the cpuset file system, using the various cd, mkdir, echo, cat,
480 rmdir commands from the shell, or their equivalent from C.
481
482 The sched_setaffinity calls can also be done at the shell prompt using
483 SGI's runon or Robert Love's taskset.  The mbind and set_mempolicy
484 calls can be done at the shell prompt using the numactl command
485 (part of Andi Kleen's numa package).
486
487 2. Usage Examples and Syntax
488 ============================
489
490 2.1 Basic Usage
491 ---------------
492
493 Creating, modifying, using the cpusets can be done through the cpuset
494 virtual filesystem.
495
496 To mount it, type:
497 # mount -t cgroup -o cpuset cpuset /dev/cpuset
498
499 Then under /dev/cpuset you can find a tree that corresponds to the
500 tree of the cpusets in the system. For instance, /dev/cpuset
501 is the cpuset that holds the whole system.
502
503 If you want to create a new cpuset under /dev/cpuset:
504 # cd /dev/cpuset
505 # mkdir my_cpuset
506
507 Now you want to do something with this cpuset.
508 # cd my_cpuset
509
510 In this directory you can find several files:
511 # ls
512 cpus  cpu_exclusive  mems  mem_exclusive  tasks
513
514 Reading them will give you information about the state of this cpuset:
515 the CPUs and Memory Nodes it can use, the processes that are using
516 it, its properties.  By writing to these files you can manipulate
517 the cpuset.
518
519 Set some flags:
520 # /bin/echo 1 > cpu_exclusive
521
522 Add some cpus:
523 # /bin/echo 0-7 > cpus
524
525 Add some mems:
526 # /bin/echo 0-7 > mems
527
528 Now attach your shell to this cpuset:
529 # /bin/echo $$ > tasks
530
531 You can also create cpusets inside your cpuset by using mkdir in this
532 directory.
533 # mkdir my_sub_cs
534
535 To remove a cpuset, just use rmdir:
536 # rmdir my_sub_cs
537 This will fail if the cpuset is in use (has cpusets inside, or has
538 processes attached).
539
540 Note that for legacy reasons, the "cpuset" filesystem exists as a
541 wrapper around the cgroup filesystem.
542
543 The command
544
545 mount -t cpuset X /dev/cpuset
546
547 is equivalent to
548
549 mount -t cgroup -ocpuset X /dev/cpuset
550 echo "/sbin/cpuset_release_agent" > /dev/cpuset/release_agent
551
552 2.2 Adding/removing cpus
553 ------------------------
554
555 This is the syntax to use when writing in the cpus or mems files
556 in 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
561 2.3 Setting flags
562 -----------------
563
564 The 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
569 2.4 Attaching processes
570 -----------------------
571
572 # /bin/echo PID > tasks
573
574 Note that it is PID, not PIDs. You can only attach ONE task at a time.
575 If 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
583 3. Questions
584 ============
585
586 Q: what's up with this '/bin/echo' ?
587 A: 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
591 Q: When I attach processes, only the first of the line gets really attached !
592 A: We can only return one error code per call to write(). So you should also
593    put only ONE pid.
594
595 4. Contact
596 ==========
597
598 Web: http://www.bullopensource.org/cpuset