| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1 | CGROUPS | 
|  | 2 | ------- | 
|  | 3 |  | 
| Li Zefan | 45ce80f | 2009-01-15 13:50:59 -0800 | [diff] [blame] | 4 | Written by Paul Menage <menage@google.com> based on | 
|  | 5 | Documentation/cgroups/cpusets.txt | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 6 |  | 
|  | 7 | Original copyright statements from cpusets.txt: | 
|  | 8 | Portions Copyright (C) 2004 BULL SA. | 
|  | 9 | Portions Copyright (c) 2004-2006 Silicon Graphics, Inc. | 
|  | 10 | Modified by Paul Jackson <pj@sgi.com> | 
|  | 11 | Modified by Christoph Lameter <clameter@sgi.com> | 
|  | 12 |  | 
|  | 13 | CONTENTS: | 
|  | 14 | ========= | 
|  | 15 |  | 
|  | 16 | 1. Control Groups | 
|  | 17 | 1.1 What are cgroups ? | 
|  | 18 | 1.2 Why are cgroups needed ? | 
|  | 19 | 1.3 How are cgroups implemented ? | 
|  | 20 | 1.4 What does notify_on_release do ? | 
| Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 21 | 1.5 What does clone_children do ? | 
|  | 22 | 1.6 How do I use cgroups ? | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 23 | 2. Usage Examples and Syntax | 
|  | 24 | 2.1 Basic Usage | 
|  | 25 | 2.2 Attaching processes | 
| Kirill A. Shutemov | 8ca712e | 2010-03-10 15:22:10 -0800 | [diff] [blame] | 26 | 2.3 Mounting hierarchies by name | 
| Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 27 | 2.4 Notification API | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 28 | 3. Kernel API | 
|  | 29 | 3.1 Overview | 
|  | 30 | 3.2 Synchronization | 
|  | 31 | 3.3 Subsystem API | 
|  | 32 | 4. Questions | 
|  | 33 |  | 
|  | 34 | 1. Control Groups | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 35 | ================= | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 36 |  | 
|  | 37 | 1.1 What are cgroups ? | 
|  | 38 | ---------------------- | 
|  | 39 |  | 
|  | 40 | Control Groups provide a mechanism for aggregating/partitioning sets of | 
|  | 41 | tasks, and all their future children, into hierarchical groups with | 
|  | 42 | specialized behaviour. | 
|  | 43 |  | 
|  | 44 | Definitions: | 
|  | 45 |  | 
|  | 46 | A *cgroup* associates a set of tasks with a set of parameters for one | 
|  | 47 | or more subsystems. | 
|  | 48 |  | 
|  | 49 | A *subsystem* is a module that makes use of the task grouping | 
|  | 50 | facilities provided by cgroups to treat groups of tasks in | 
|  | 51 | particular ways. A subsystem is typically a "resource controller" that | 
|  | 52 | schedules a resource or applies per-cgroup limits, but it may be | 
|  | 53 | anything that wants to act on a group of processes, e.g. a | 
|  | 54 | virtualization subsystem. | 
|  | 55 |  | 
|  | 56 | A *hierarchy* is a set of cgroups arranged in a tree, such that | 
|  | 57 | every task in the system is in exactly one of the cgroups in the | 
|  | 58 | hierarchy, and a set of subsystems; each subsystem has system-specific | 
|  | 59 | state attached to each cgroup in the hierarchy.  Each hierarchy has | 
|  | 60 | an instance of the cgroup virtual filesystem associated with it. | 
|  | 61 |  | 
| Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 62 | At any one time there may be multiple active hierarchies of task | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 63 | cgroups. Each hierarchy is a partition of all tasks in the system. | 
|  | 64 |  | 
|  | 65 | User level code may create and destroy cgroups by name in an | 
|  | 66 | instance of the cgroup virtual file system, specify and query to | 
|  | 67 | which cgroup a task is assigned, and list the task pids assigned to | 
|  | 68 | a cgroup. Those creations and assignments only affect the hierarchy | 
|  | 69 | associated with that instance of the cgroup file system. | 
|  | 70 |  | 
|  | 71 | On their own, the only use for cgroups is for simple job | 
|  | 72 | tracking. The intention is that other subsystems hook into the generic | 
|  | 73 | cgroup support to provide new attributes for cgroups, such as | 
|  | 74 | accounting/limiting the resources which processes in a cgroup can | 
| Li Zefan | 45ce80f | 2009-01-15 13:50:59 -0800 | [diff] [blame] | 75 | access. For example, cpusets (see Documentation/cgroups/cpusets.txt) allows | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 76 | you to associate a set of CPUs and a set of memory nodes with the | 
|  | 77 | tasks in each cgroup. | 
|  | 78 |  | 
|  | 79 | 1.2 Why are cgroups needed ? | 
|  | 80 | ---------------------------- | 
|  | 81 |  | 
|  | 82 | There are multiple efforts to provide process aggregations in the | 
|  | 83 | Linux kernel, mainly for resource tracking purposes. Such efforts | 
|  | 84 | include cpusets, CKRM/ResGroups, UserBeanCounters, and virtual server | 
|  | 85 | namespaces. These all require the basic notion of a | 
|  | 86 | grouping/partitioning of processes, with newly forked processes ending | 
|  | 87 | in the same group (cgroup) as their parent process. | 
|  | 88 |  | 
|  | 89 | The kernel cgroup patch provides the minimum essential kernel | 
|  | 90 | mechanisms required to efficiently implement such groups. It has | 
|  | 91 | minimal impact on the system fast paths, and provides hooks for | 
|  | 92 | specific subsystems such as cpusets to provide additional behaviour as | 
|  | 93 | desired. | 
|  | 94 |  | 
|  | 95 | Multiple hierarchy support is provided to allow for situations where | 
|  | 96 | the division of tasks into cgroups is distinctly different for | 
|  | 97 | different subsystems - having parallel hierarchies allows each | 
|  | 98 | hierarchy to be a natural division of tasks, without having to handle | 
|  | 99 | complex combinations of tasks that would be present if several | 
|  | 100 | unrelated subsystems needed to be forced into the same tree of | 
|  | 101 | cgroups. | 
|  | 102 |  | 
|  | 103 | At one extreme, each resource controller or subsystem could be in a | 
|  | 104 | separate hierarchy; at the other extreme, all subsystems | 
|  | 105 | would be attached to the same hierarchy. | 
|  | 106 |  | 
|  | 107 | As an example of a scenario (originally proposed by vatsa@in.ibm.com) | 
|  | 108 | that can benefit from multiple hierarchies, consider a large | 
|  | 109 | university server with various users - students, professors, system | 
|  | 110 | tasks etc. The resource planning for this server could be along the | 
|  | 111 | following lines: | 
|  | 112 |  | 
|  | 113 | CPU :           Top cpuset | 
|  | 114 | /       \ | 
|  | 115 | CPUSet1         CPUSet2 | 
|  | 116 | |              | | 
|  | 117 | (Profs)         (Students) | 
|  | 118 |  | 
|  | 119 | In addition (system tasks) are attached to topcpuset (so | 
|  | 120 | that they can run anywhere) with a limit of 20% | 
|  | 121 |  | 
|  | 122 | Memory : Professors (50%), students (30%), system (20%) | 
|  | 123 |  | 
|  | 124 | Disk : Prof (50%), students (30%), system (20%) | 
|  | 125 |  | 
|  | 126 | Network : WWW browsing (20%), Network File System (60%), others (20%) | 
|  | 127 | / \ | 
|  | 128 | Prof (15%) students (5%) | 
|  | 129 |  | 
| Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 130 | Browsers like Firefox/Lynx go into the WWW network class, while (k)nfsd go | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 131 | into NFS network class. | 
|  | 132 |  | 
| Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 133 | At the same time Firefox/Lynx will share an appropriate CPU/Memory class | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 134 | depending on who launched it (prof/student). | 
|  | 135 |  | 
|  | 136 | With the ability to classify tasks differently for different resources | 
|  | 137 | (by putting those resource subsystems in different hierarchies) then | 
|  | 138 | the admin can easily set up a script which receives exec notifications | 
|  | 139 | and depending on who is launching the browser he can | 
|  | 140 |  | 
|  | 141 | # echo browser_pid > /mnt/<restype>/<userclass>/tasks | 
|  | 142 |  | 
|  | 143 | With only a single hierarchy, he now would potentially have to create | 
|  | 144 | a separate cgroup for every browser launched and associate it with | 
|  | 145 | approp network and other resource class.  This may lead to | 
|  | 146 | proliferation of such cgroups. | 
|  | 147 |  | 
|  | 148 | Also lets say that the administrator would like to give enhanced network | 
|  | 149 | access temporarily to a student's browser (since it is night and the user | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 150 | wants to do online gaming :))  OR give one of the students simulation | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 151 | apps enhanced CPU power, | 
|  | 152 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 153 | With ability to write pids directly to resource classes, it's just a | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 154 | matter of : | 
|  | 155 |  | 
|  | 156 | # echo pid > /mnt/network/<new_class>/tasks | 
|  | 157 | (after some time) | 
|  | 158 | # echo pid > /mnt/network/<orig_class>/tasks | 
|  | 159 |  | 
|  | 160 | Without this ability, he would have to split the cgroup into | 
|  | 161 | multiple separate ones and then associate the new cgroups with the | 
|  | 162 | new resource classes. | 
|  | 163 |  | 
|  | 164 |  | 
|  | 165 |  | 
|  | 166 | 1.3 How are cgroups implemented ? | 
|  | 167 | --------------------------------- | 
|  | 168 |  | 
|  | 169 | Control Groups extends the kernel as follows: | 
|  | 170 |  | 
|  | 171 | - Each task in the system has a reference-counted pointer to a | 
|  | 172 | css_set. | 
|  | 173 |  | 
|  | 174 | - A css_set contains a set of reference-counted pointers to | 
|  | 175 | cgroup_subsys_state objects, one for each cgroup subsystem | 
|  | 176 | registered in the system. There is no direct link from a task to | 
|  | 177 | the cgroup of which it's a member in each hierarchy, but this | 
|  | 178 | can be determined by following pointers through the | 
|  | 179 | cgroup_subsys_state objects. This is because accessing the | 
|  | 180 | subsystem state is something that's expected to happen frequently | 
|  | 181 | and in performance-critical code, whereas operations that require a | 
|  | 182 | task's actual cgroup assignments (in particular, moving between | 
| Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 183 | cgroups) are less common. A linked list runs through the cg_list | 
|  | 184 | field of each task_struct using the css_set, anchored at | 
|  | 185 | css_set->tasks. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 186 |  | 
|  | 187 | - A cgroup hierarchy filesystem can be mounted  for browsing and | 
|  | 188 | manipulation from user space. | 
|  | 189 |  | 
|  | 190 | - You can list all the tasks (by pid) attached to any cgroup. | 
|  | 191 |  | 
|  | 192 | The implementation of cgroups requires a few, simple hooks | 
|  | 193 | into the rest of the kernel, none in performance critical paths: | 
|  | 194 |  | 
|  | 195 | - in init/main.c, to initialize the root cgroups and initial | 
|  | 196 | css_set at system boot. | 
|  | 197 |  | 
|  | 198 | - in fork and exit, to attach and detach a task from its css_set. | 
|  | 199 |  | 
|  | 200 | In addition a new file system, of type "cgroup" may be mounted, to | 
|  | 201 | enable browsing and modifying the cgroups presently known to the | 
|  | 202 | kernel.  When mounting a cgroup hierarchy, you may specify a | 
|  | 203 | comma-separated list of subsystems to mount as the filesystem mount | 
|  | 204 | options.  By default, mounting the cgroup filesystem attempts to | 
|  | 205 | mount a hierarchy containing all registered subsystems. | 
|  | 206 |  | 
|  | 207 | If an active hierarchy with exactly the same set of subsystems already | 
|  | 208 | exists, it will be reused for the new mount. If no existing hierarchy | 
|  | 209 | matches, and any of the requested subsystems are in use in an existing | 
|  | 210 | hierarchy, the mount will fail with -EBUSY. Otherwise, a new hierarchy | 
|  | 211 | is activated, associated with the requested subsystems. | 
|  | 212 |  | 
|  | 213 | It's not currently possible to bind a new subsystem to an active | 
|  | 214 | cgroup hierarchy, or to unbind a subsystem from an active cgroup | 
|  | 215 | hierarchy. This may be possible in future, but is fraught with nasty | 
|  | 216 | error-recovery issues. | 
|  | 217 |  | 
|  | 218 | When a cgroup filesystem is unmounted, if there are any | 
|  | 219 | child cgroups created below the top-level cgroup, that hierarchy | 
|  | 220 | will remain active even though unmounted; if there are no | 
|  | 221 | child cgroups then the hierarchy will be deactivated. | 
|  | 222 |  | 
|  | 223 | No new system calls are added for cgroups - all support for | 
|  | 224 | querying and modifying cgroups is via this cgroup file system. | 
|  | 225 |  | 
|  | 226 | Each task under /proc has an added file named 'cgroup' displaying, | 
|  | 227 | for each active hierarchy, the subsystem names and the cgroup name | 
|  | 228 | as the path relative to the root of the cgroup file system. | 
|  | 229 |  | 
|  | 230 | Each cgroup is represented by a directory in the cgroup file system | 
|  | 231 | containing the following files describing that cgroup: | 
|  | 232 |  | 
| Paul Menage | 7823da3 | 2009-10-07 16:32:26 -0700 | [diff] [blame] | 233 | - tasks: list of tasks (by pid) attached to that cgroup.  This list | 
|  | 234 | is not guaranteed to be sorted.  Writing a thread id into this file | 
|  | 235 | moves the thread into this cgroup. | 
|  | 236 | - cgroup.procs: list of tgids in the cgroup.  This list is not | 
|  | 237 | guaranteed to be sorted or free of duplicate tgids, and userspace | 
|  | 238 | should sort/uniquify the list if this property is required. | 
| KAMEZAWA Hiroyuki | 7716fa6 | 2010-04-23 13:17:51 -0400 | [diff] [blame] | 239 | This is a read-only file, for now. | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 240 | - notify_on_release flag: run the release agent on exit? | 
|  | 241 | - release_agent: the path to use for release notifications (this file | 
|  | 242 | exists in the top cgroup only) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 243 |  | 
|  | 244 | Other subsystems such as cpusets may add additional files in each | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 245 | cgroup dir. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 246 |  | 
|  | 247 | New cgroups are created using the mkdir system call or shell | 
|  | 248 | command.  The properties of a cgroup, such as its flags, are | 
|  | 249 | modified by writing to the appropriate file in that cgroups | 
|  | 250 | directory, as listed above. | 
|  | 251 |  | 
|  | 252 | The named hierarchical structure of nested cgroups allows partitioning | 
|  | 253 | a large system into nested, dynamically changeable, "soft-partitions". | 
|  | 254 |  | 
|  | 255 | The attachment of each task, automatically inherited at fork by any | 
|  | 256 | children of that task, to a cgroup allows organizing the work load | 
|  | 257 | on a system into related sets of tasks.  A task may be re-attached to | 
|  | 258 | any other cgroup, if allowed by the permissions on the necessary | 
|  | 259 | cgroup file system directories. | 
|  | 260 |  | 
|  | 261 | When a task is moved from one cgroup to another, it gets a new | 
|  | 262 | css_set pointer - if there's an already existing css_set with the | 
|  | 263 | desired collection of cgroups then that group is reused, else a new | 
| Li Zefan | b851ee7 | 2009-02-18 14:48:14 -0800 | [diff] [blame] | 264 | css_set is allocated. The appropriate existing css_set is located by | 
|  | 265 | looking into a hash table. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 266 |  | 
| Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 267 | To allow access from a cgroup to the css_sets (and hence tasks) | 
|  | 268 | that comprise it, a set of cg_cgroup_link objects form a lattice; | 
|  | 269 | each cg_cgroup_link is linked into a list of cg_cgroup_links for | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 270 | a single cgroup on its cgrp_link_list field, and a list of | 
| Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 271 | cg_cgroup_links for a single css_set on its cg_link_list. | 
|  | 272 |  | 
|  | 273 | Thus the set of tasks in a cgroup can be listed by iterating over | 
|  | 274 | each css_set that references the cgroup, and sub-iterating over | 
|  | 275 | each css_set's task set. | 
|  | 276 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 277 | The use of a Linux virtual file system (vfs) to represent the | 
|  | 278 | cgroup hierarchy provides for a familiar permission and name space | 
|  | 279 | for cgroups, with a minimum of additional kernel code. | 
|  | 280 |  | 
|  | 281 | 1.4 What does notify_on_release do ? | 
|  | 282 | ------------------------------------ | 
|  | 283 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 284 | If the notify_on_release flag is enabled (1) in a cgroup, then | 
|  | 285 | whenever the last task in the cgroup leaves (exits or attaches to | 
|  | 286 | some other cgroup) and the last child cgroup of that cgroup | 
|  | 287 | is removed, then the kernel runs the command specified by the contents | 
|  | 288 | of the "release_agent" file in that hierarchy's root directory, | 
|  | 289 | supplying the pathname (relative to the mount point of the cgroup | 
|  | 290 | file system) of the abandoned cgroup.  This enables automatic | 
|  | 291 | removal of abandoned cgroups.  The default value of | 
|  | 292 | notify_on_release in the root cgroup at system boot is disabled | 
|  | 293 | (0).  The default value of other cgroups at creation is the current | 
|  | 294 | value of their parents notify_on_release setting. The default value of | 
|  | 295 | a cgroup hierarchy's release_agent path is empty. | 
|  | 296 |  | 
| Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 297 | 1.5 What does clone_children do ? | 
|  | 298 | --------------------------------- | 
|  | 299 |  | 
|  | 300 | If the clone_children flag is enabled (1) in a cgroup, then all | 
|  | 301 | cgroups created beneath will call the post_clone callbacks for each | 
|  | 302 | subsystem of the newly created cgroup. Usually when this callback is | 
|  | 303 | implemented for a subsystem, it copies the values of the parent | 
|  | 304 | subsystem, this is the case for the cpuset. | 
|  | 305 |  | 
|  | 306 | 1.6 How do I use cgroups ? | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 307 | -------------------------- | 
|  | 308 |  | 
|  | 309 | To start a new job that is to be contained within a cgroup, using | 
|  | 310 | the "cpuset" cgroup subsystem, the steps are something like: | 
|  | 311 |  | 
|  | 312 | 1) mkdir /dev/cgroup | 
|  | 313 | 2) mount -t cgroup -ocpuset cpuset /dev/cgroup | 
|  | 314 | 3) Create the new cgroup by doing mkdir's and write's (or echo's) in | 
|  | 315 | the /dev/cgroup virtual file system. | 
|  | 316 | 4) Start a task that will be the "founding father" of the new job. | 
|  | 317 | 5) Attach that task to the new cgroup by writing its pid to the | 
|  | 318 | /dev/cgroup tasks file for that cgroup. | 
|  | 319 | 6) fork, exec or clone the job tasks from this founding father task. | 
|  | 320 |  | 
|  | 321 | For example, the following sequence of commands will setup a cgroup | 
|  | 322 | named "Charlie", containing just CPUs 2 and 3, and Memory Node 1, | 
|  | 323 | and then start a subshell 'sh' in that cgroup: | 
|  | 324 |  | 
|  | 325 | mount -t cgroup cpuset -ocpuset /dev/cgroup | 
|  | 326 | cd /dev/cgroup | 
|  | 327 | mkdir Charlie | 
|  | 328 | cd Charlie | 
| Dhaval Giani | 0f146a7 | 2008-05-12 14:02:31 -0700 | [diff] [blame] | 329 | /bin/echo 2-3 > cpuset.cpus | 
|  | 330 | /bin/echo 1 > cpuset.mems | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 331 | /bin/echo $$ > tasks | 
|  | 332 | sh | 
|  | 333 | # The subshell 'sh' is now running in cgroup Charlie | 
|  | 334 | # The next line should display '/Charlie' | 
|  | 335 | cat /proc/self/cgroup | 
|  | 336 |  | 
|  | 337 | 2. Usage Examples and Syntax | 
|  | 338 | ============================ | 
|  | 339 |  | 
|  | 340 | 2.1 Basic Usage | 
|  | 341 | --------------- | 
|  | 342 |  | 
|  | 343 | Creating, modifying, using the cgroups can be done through the cgroup | 
|  | 344 | virtual filesystem. | 
|  | 345 |  | 
| Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 346 | To mount a cgroup hierarchy with all available subsystems, type: | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 347 | # mount -t cgroup xxx /dev/cgroup | 
|  | 348 |  | 
|  | 349 | The "xxx" is not interpreted by the cgroup code, but will appear in | 
|  | 350 | /proc/mounts so may be any useful identifying string that you like. | 
|  | 351 |  | 
| Eric B Munson | bb6405e | 2011-03-15 16:12:18 -0700 | [diff] [blame] | 352 | Note: Some subsystems do not work without some user input first.  For instance, | 
|  | 353 | if cpusets are enabled the user will have to populate the cpus and mems files | 
|  | 354 | for each new cgroup created before that group can be used. | 
|  | 355 |  | 
| Trevor Woerner | 595f4b6 | 2010-05-26 14:42:35 -0700 | [diff] [blame] | 356 | To mount a cgroup hierarchy with just the cpuset and memory | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 357 | subsystems, type: | 
| Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 358 | # mount -t cgroup -o cpuset,memory hier1 /dev/cgroup | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 359 |  | 
|  | 360 | To change the set of subsystems bound to a mounted hierarchy, just | 
|  | 361 | remount with different options: | 
| Trevor Woerner | 1bdcd78 | 2011-01-12 17:00:29 -0800 | [diff] [blame] | 362 | # mount -o remount,cpuset,blkio hier1 /dev/cgroup | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 363 |  | 
| Trevor Woerner | 1bdcd78 | 2011-01-12 17:00:29 -0800 | [diff] [blame] | 364 | Now memory is removed from the hierarchy and blkio is added. | 
| Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 365 |  | 
| Trevor Woerner | 1bdcd78 | 2011-01-12 17:00:29 -0800 | [diff] [blame] | 366 | Note this will add blkio to the hierarchy but won't remove memory or | 
| Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 367 | cpuset, because the new options are appended to the old ones: | 
| Trevor Woerner | 1bdcd78 | 2011-01-12 17:00:29 -0800 | [diff] [blame] | 368 | # mount -o remount,blkio /dev/cgroup | 
| Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 369 |  | 
|  | 370 | To Specify a hierarchy's release_agent: | 
|  | 371 | # mount -t cgroup -o cpuset,release_agent="/sbin/cpuset_release_agent" \ | 
|  | 372 | xxx /dev/cgroup | 
|  | 373 |  | 
|  | 374 | Note that specifying 'release_agent' more than once will return failure. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 375 |  | 
|  | 376 | Note that changing the set of subsystems is currently only supported | 
|  | 377 | when the hierarchy consists of a single (root) cgroup. Supporting | 
|  | 378 | the ability to arbitrarily bind/unbind subsystems from an existing | 
|  | 379 | cgroup hierarchy is intended to be implemented in the future. | 
|  | 380 |  | 
|  | 381 | Then under /dev/cgroup you can find a tree that corresponds to the | 
|  | 382 | tree of the cgroups in the system. For instance, /dev/cgroup | 
|  | 383 | is the cgroup that holds the whole system. | 
|  | 384 |  | 
| Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 385 | If you want to change the value of release_agent: | 
|  | 386 | # echo "/sbin/new_release_agent" > /dev/cgroup/release_agent | 
|  | 387 |  | 
|  | 388 | It can also be changed via remount. | 
|  | 389 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 390 | If you want to create a new cgroup under /dev/cgroup: | 
|  | 391 | # cd /dev/cgroup | 
|  | 392 | # mkdir my_cgroup | 
|  | 393 |  | 
|  | 394 | Now you want to do something with this cgroup. | 
|  | 395 | # cd my_cgroup | 
|  | 396 |  | 
|  | 397 | In this directory you can find several files: | 
|  | 398 | # ls | 
| Paul Menage | 7823da3 | 2009-10-07 16:32:26 -0700 | [diff] [blame] | 399 | cgroup.procs notify_on_release tasks | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 400 | (plus whatever files added by the attached subsystems) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 401 |  | 
|  | 402 | Now attach your shell to this cgroup: | 
|  | 403 | # /bin/echo $$ > tasks | 
|  | 404 |  | 
|  | 405 | You can also create cgroups inside your cgroup by using mkdir in this | 
|  | 406 | directory. | 
|  | 407 | # mkdir my_sub_cs | 
|  | 408 |  | 
|  | 409 | To remove a cgroup, just use rmdir: | 
|  | 410 | # rmdir my_sub_cs | 
|  | 411 |  | 
|  | 412 | This will fail if the cgroup is in use (has cgroups inside, or | 
|  | 413 | has processes attached, or is held alive by other subsystem-specific | 
|  | 414 | reference). | 
|  | 415 |  | 
|  | 416 | 2.2 Attaching processes | 
|  | 417 | ----------------------- | 
|  | 418 |  | 
|  | 419 | # /bin/echo PID > tasks | 
|  | 420 |  | 
|  | 421 | Note that it is PID, not PIDs. You can only attach ONE task at a time. | 
|  | 422 | If you have several tasks to attach, you have to do it one after another: | 
|  | 423 |  | 
|  | 424 | # /bin/echo PID1 > tasks | 
|  | 425 | # /bin/echo PID2 > tasks | 
|  | 426 | ... | 
|  | 427 | # /bin/echo PIDn > tasks | 
|  | 428 |  | 
| Li Zefan | bef67c5 | 2008-07-04 09:59:55 -0700 | [diff] [blame] | 429 | You can attach the current shell task by echoing 0: | 
|  | 430 |  | 
|  | 431 | # echo 0 > tasks | 
|  | 432 |  | 
| Eric B Munson | bb6405e | 2011-03-15 16:12:18 -0700 | [diff] [blame] | 433 | Note: Since every task is always a member of exactly one cgroup in each | 
|  | 434 | mounted hierarchy, to remove a task from its current cgroup you must | 
|  | 435 | move it into a new cgroup (possibly the root cgroup) by writing to the | 
|  | 436 | new cgroup's tasks file. | 
|  | 437 |  | 
|  | 438 | Note: If the ns cgroup is active, moving a process to another cgroup can | 
|  | 439 | fail. | 
|  | 440 |  | 
| Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 441 | 2.3 Mounting hierarchies by name | 
|  | 442 | -------------------------------- | 
|  | 443 |  | 
|  | 444 | Passing the name=<x> option when mounting a cgroups hierarchy | 
|  | 445 | associates the given name with the hierarchy.  This can be used when | 
|  | 446 | mounting a pre-existing hierarchy, in order to refer to it by name | 
|  | 447 | rather than by its set of active subsystems.  Each hierarchy is either | 
|  | 448 | nameless, or has a unique name. | 
|  | 449 |  | 
|  | 450 | The name should match [\w.-]+ | 
|  | 451 |  | 
|  | 452 | When passing a name=<x> option for a new hierarchy, you need to | 
|  | 453 | specify subsystems manually; the legacy behaviour of mounting all | 
|  | 454 | subsystems when none are explicitly specified is not supported when | 
|  | 455 | you give a subsystem a name. | 
|  | 456 |  | 
|  | 457 | The name of the subsystem appears as part of the hierarchy description | 
|  | 458 | in /proc/mounts and /proc/<pid>/cgroups. | 
|  | 459 |  | 
| Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 460 | 2.4 Notification API | 
|  | 461 | -------------------- | 
|  | 462 |  | 
|  | 463 | There is mechanism which allows to get notifications about changing | 
|  | 464 | status of a cgroup. | 
|  | 465 |  | 
|  | 466 | To register new notification handler you need: | 
|  | 467 | - create a file descriptor for event notification using eventfd(2); | 
|  | 468 | - open a control file to be monitored (e.g. memory.usage_in_bytes); | 
|  | 469 | - write "<event_fd> <control_fd> <args>" to cgroup.event_control. | 
|  | 470 | Interpretation of args is defined by control file implementation; | 
|  | 471 |  | 
|  | 472 | eventfd will be woken up by control file implementation or when the | 
|  | 473 | cgroup is removed. | 
|  | 474 |  | 
|  | 475 | To unregister notification handler just close eventfd. | 
|  | 476 |  | 
|  | 477 | NOTE: Support of notifications should be implemented for the control | 
|  | 478 | file. See documentation for the subsystem. | 
| Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 479 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 480 | 3. Kernel API | 
|  | 481 | ============= | 
|  | 482 |  | 
|  | 483 | 3.1 Overview | 
|  | 484 | ------------ | 
|  | 485 |  | 
|  | 486 | Each kernel subsystem that wants to hook into the generic cgroup | 
|  | 487 | system needs to create a cgroup_subsys object. This contains | 
|  | 488 | various methods, which are callbacks from the cgroup system, along | 
|  | 489 | with a subsystem id which will be assigned by the cgroup system. | 
|  | 490 |  | 
|  | 491 | Other fields in the cgroup_subsys object include: | 
|  | 492 |  | 
|  | 493 | - subsys_id: a unique array index for the subsystem, indicating which | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 494 | entry in cgroup->subsys[] this subsystem should be managing. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 495 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 496 | - name: should be initialized to a unique subsystem name. Should be | 
|  | 497 | no longer than MAX_CGROUP_TYPE_NAMELEN. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 498 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 499 | - early_init: indicate if the subsystem needs early initialization | 
|  | 500 | at system boot. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 501 |  | 
|  | 502 | Each cgroup object created by the system has an array of pointers, | 
|  | 503 | indexed by subsystem id; this pointer is entirely managed by the | 
|  | 504 | subsystem; the generic cgroup code will never touch this pointer. | 
|  | 505 |  | 
|  | 506 | 3.2 Synchronization | 
|  | 507 | ------------------- | 
|  | 508 |  | 
|  | 509 | There is a global mutex, cgroup_mutex, used by the cgroup | 
|  | 510 | system. This should be taken by anything that wants to modify a | 
|  | 511 | cgroup. It may also be taken to prevent cgroups from being | 
|  | 512 | modified, but more specific locks may be more appropriate in that | 
|  | 513 | situation. | 
|  | 514 |  | 
|  | 515 | See kernel/cgroup.c for more details. | 
|  | 516 |  | 
|  | 517 | Subsystems can take/release the cgroup_mutex via the functions | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 518 | cgroup_lock()/cgroup_unlock(). | 
|  | 519 |  | 
|  | 520 | Accessing a task's cgroup pointer may be done in the following ways: | 
|  | 521 | - while holding cgroup_mutex | 
|  | 522 | - while holding the task's alloc_lock (via task_lock()) | 
|  | 523 | - inside an rcu_read_lock() section via rcu_dereference() | 
|  | 524 |  | 
|  | 525 | 3.3 Subsystem API | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 526 | ----------------- | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 527 |  | 
|  | 528 | Each subsystem should: | 
|  | 529 |  | 
|  | 530 | - add an entry in linux/cgroup_subsys.h | 
|  | 531 | - define a cgroup_subsys object called <name>_subsys | 
|  | 532 |  | 
| Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 533 | If a subsystem can be compiled as a module, it should also have in its | 
| Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 534 | module initcall a call to cgroup_load_subsys(), and in its exitcall a | 
|  | 535 | call to cgroup_unload_subsys(). It should also set its_subsys.module = | 
|  | 536 | THIS_MODULE in its .c file. | 
| Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 537 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 538 | Each subsystem may export the following methods. The only mandatory | 
|  | 539 | methods are create/destroy. Any others that are null are presumed to | 
|  | 540 | be successful no-ops. | 
|  | 541 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 542 | struct cgroup_subsys_state *create(struct cgroup_subsys *ss, | 
|  | 543 | struct cgroup *cgrp) | 
| Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 544 | (cgroup_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 545 |  | 
|  | 546 | Called to create a subsystem state object for a cgroup. The | 
|  | 547 | subsystem should allocate its subsystem state object for the passed | 
|  | 548 | cgroup, returning a pointer to the new object on success or a | 
|  | 549 | negative error code. On success, the subsystem pointer should point to | 
|  | 550 | a structure of type cgroup_subsys_state (typically embedded in a | 
|  | 551 | larger subsystem-specific object), which will be initialized by the | 
|  | 552 | cgroup system. Note that this will be called at initialization to | 
|  | 553 | create the root subsystem state for this subsystem; this case can be | 
|  | 554 | identified by the passed cgroup object having a NULL parent (since | 
|  | 555 | it's the root of the hierarchy) and may be an appropriate place for | 
|  | 556 | initialization code. | 
|  | 557 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 558 | void destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) | 
| Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 559 | (cgroup_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 560 |  | 
| Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 561 | The cgroup system is about to destroy the passed cgroup; the subsystem | 
|  | 562 | should do any necessary cleanup and free its subsystem state | 
|  | 563 | object. By the time this method is called, the cgroup has already been | 
|  | 564 | unlinked from the file system and from the child list of its parent; | 
|  | 565 | cgroup->parent is still valid. (Note - can also be called for a | 
|  | 566 | newly-created cgroup if an error occurs after this subsystem's | 
|  | 567 | create() method has been called for the new cgroup). | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 568 |  | 
| KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 569 | int pre_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp); | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 570 |  | 
|  | 571 | Called before checking the reference count on each subsystem. This may | 
|  | 572 | be useful for subsystems which have some extra references even if | 
| KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 573 | there are not tasks in the cgroup. If pre_destroy() returns error code, | 
|  | 574 | rmdir() will fail with it. From this behavior, pre_destroy() can be | 
|  | 575 | called multiple times against a cgroup. | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 576 |  | 
|  | 577 | int can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, | 
| Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 578 | struct task_struct *task, bool threadgroup) | 
| Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 579 | (cgroup_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 580 |  | 
|  | 581 | Called prior to moving a task into a cgroup; if the subsystem | 
|  | 582 | returns an error, this will abort the attach operation.  If a NULL | 
|  | 583 | task is passed, then a successful result indicates that *any* | 
|  | 584 | unspecified task can be moved into the cgroup. Note that this isn't | 
|  | 585 | called on a fork. If this method returns 0 (success) then this should | 
| Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 586 | remain valid while the caller holds cgroup_mutex and it is ensured that either | 
|  | 587 | attach() or cancel_attach() will be called in future. If threadgroup is | 
| Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 588 | true, then a successful result indicates that all threads in the given | 
|  | 589 | thread's threadgroup can be moved together. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 590 |  | 
| Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 591 | void cancel_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, | 
|  | 592 | struct task_struct *task, bool threadgroup) | 
|  | 593 | (cgroup_mutex held by caller) | 
|  | 594 |  | 
|  | 595 | Called when a task attach operation has failed after can_attach() has succeeded. | 
|  | 596 | A subsystem whose can_attach() has some side-effects should provide this | 
| Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 597 | function, so that the subsystem can implement a rollback. If not, not necessary. | 
| Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 598 | This will be called only about subsystems whose can_attach() operation have | 
|  | 599 | succeeded. | 
|  | 600 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 601 | void attach(struct cgroup_subsys *ss, struct cgroup *cgrp, | 
| Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 602 | struct cgroup *old_cgrp, struct task_struct *task, | 
|  | 603 | bool threadgroup) | 
| Li Zefan | 18e7f1f | 2009-01-07 18:07:32 -0800 | [diff] [blame] | 604 | (cgroup_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 605 |  | 
|  | 606 | Called after the task has been attached to the cgroup, to allow any | 
|  | 607 | post-attachment activity that requires memory allocations or blocking. | 
| Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 608 | If threadgroup is true, the subsystem should take care of all threads | 
|  | 609 | in the specified thread's threadgroup. Currently does not support any | 
|  | 610 | subsystem that might need the old_cgrp for every thread in the group. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 611 |  | 
|  | 612 | void fork(struct cgroup_subsy *ss, struct task_struct *task) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 613 |  | 
| Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 614 | Called when a task is forked into a cgroup. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 615 |  | 
|  | 616 | void exit(struct cgroup_subsys *ss, struct task_struct *task) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 617 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 618 | Called during task exit. | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 619 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 620 | int populate(struct cgroup_subsys *ss, struct cgroup *cgrp) | 
| Li Zefan | 18e7f1f | 2009-01-07 18:07:32 -0800 | [diff] [blame] | 621 | (cgroup_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 622 |  | 
|  | 623 | Called after creation of a cgroup to allow a subsystem to populate | 
|  | 624 | the cgroup directory with file entries.  The subsystem should make | 
|  | 625 | calls to cgroup_add_file() with objects of type cftype (see | 
|  | 626 | include/linux/cgroup.h for details).  Note that although this | 
|  | 627 | method can return an error code, the error code is currently not | 
|  | 628 | always handled well. | 
|  | 629 |  | 
| Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 630 | void post_clone(struct cgroup_subsys *ss, struct cgroup *cgrp) | 
| Li Zefan | 18e7f1f | 2009-01-07 18:07:32 -0800 | [diff] [blame] | 631 | (cgroup_mutex held by caller) | 
| Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 632 |  | 
| Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 633 | Called at the end of cgroup_clone() to do any parameter | 
| Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 634 | initialization which might be required before a task could attach.  For | 
|  | 635 | example in cpusets, no task may attach before 'cpus' and 'mems' are set | 
|  | 636 | up. | 
|  | 637 |  | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 638 | void bind(struct cgroup_subsys *ss, struct cgroup *root) | 
| Paul Menage | 999cd8a | 2009-01-07 18:08:36 -0800 | [diff] [blame] | 639 | (cgroup_mutex and ss->hierarchy_mutex held by caller) | 
| Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 640 |  | 
|  | 641 | Called when a cgroup subsystem is rebound to a different hierarchy | 
|  | 642 | and root cgroup. Currently this will only involve movement between | 
|  | 643 | the default hierarchy (which never has sub-cgroups) and a hierarchy | 
|  | 644 | that is being created/destroyed (and hence has no sub-cgroups). | 
|  | 645 |  | 
|  | 646 | 4. Questions | 
|  | 647 | ============ | 
|  | 648 |  | 
|  | 649 | Q: what's up with this '/bin/echo' ? | 
|  | 650 | A: bash's builtin 'echo' command does not check calls to write() against | 
|  | 651 | errors. If you use it in the cgroup file system, you won't be | 
|  | 652 | able to tell whether a command succeeded or failed. | 
|  | 653 |  | 
|  | 654 | Q: When I attach processes, only the first of the line gets really attached ! | 
|  | 655 | A: We can only return one error code per call to write(). So you should also | 
|  | 656 | put only ONE pid. | 
|  | 657 |  |