cgroups.txt 24 KB

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