User Tools

Site Tools


linux:kernel:control_groups

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:kernel:control_groups [2019/12/15 21:49] peterlinux:kernel:control_groups [2020/07/15 09:30] (current) – external edit 127.0.0.1
Line 15: Line 15:
 User level code may create and destroy cgroups by name in an instance of the cgroup virtual file system, specify and query to which cgroup a task is assigned, and list the task pids assigned to a cgroup. Those creations and assignments only affect the hierarchy associated with that instance of the cgroup file system. User level code may create and destroy cgroups by name in an instance of the cgroup virtual file system, specify and query to which cgroup a task is assigned, and list the task pids assigned to a cgroup. Those creations and assignments only affect the hierarchy associated with that instance of the cgroup file system.
  
-On their own, the only use for cgroups is for simple job tracking. The intention is that other subsystems hook into the generic cgroup support to provide new attributes for cgroups, such as accounting/limiting the resources which processes in a cgroup can access.  For example, [[Kernel:CPU Sets|cpusets]] allow you to associate a set of CPUs and a set of memory nodes with the tasks in each cgroup.+On their own, the only use for cgroups is for simple job tracking. The intention is that other subsystems hook into the generic cgroup support to provide new attributes for cgroups, such as accounting/limiting the resources which processes in a cgroup can access.  For example, [[Linux:Kernel:CPU Sets|cpusets]] allow you to associate a set of CPUs and a set of memory nodes with the tasks in each cgroup.
  
 ---- ----
Line 21: Line 21:
 ===== Why are cgroups needed? ===== ===== Why are cgroups needed? =====
  
-There are multiple efforts to provide process aggregations in the Linux kernel, mainly for resource tracking purposes. Such efforts include [[Kernel:CPU Sets|cpusets]], CKRM/ResGroups, UserBeanCounters, and virtual server namespaces. These all require the basic notion of a grouping/partitioning of processes, with newly forked processes ending in the same group (cgroup) as their parent process.+There are multiple efforts to provide process aggregations in the Linux kernel, mainly for resource tracking purposes. Such efforts include [[Linux:Kernel:CPU Sets|cpusets]], CKRM/ResGroups, UserBeanCounters, and virtual server namespaces. These all require the basic notion of a grouping/partitioning of processes, with newly forked processes ending in the same group (cgroup) as their parent process.
  
-The kernel cgroup patch provides the minimum essential kernel mechanisms required to efficiently implement such groups.  It has minimal impact on the system fast paths, and provides hooks for specific subsystems such as [[Kernel:CPU Sets|cpusets]] to provide additional behaviour as desired.+The kernel cgroup patch provides the minimum essential kernel mechanisms required to efficiently implement such groups.  It has minimal impact on the system fast paths, and provides hooks for specific subsystems such as [[Linux:Kernel:CPU Sets|cpusets]] to provide additional behaviour as desired.
  
 Multiple hierarchy support is provided to allow for situations where the division of tasks into cgroups is distinctly different for different subsystems - having parallel hierarchies allows each hierarchy to be a natural division of tasks, without having to handle complex combinations of tasks that would be present if several unrelated subsystems needed to be forced into the same tree of cgroups. Multiple hierarchy support is provided to allow for situations where the division of tasks into cgroups is distinctly different for different subsystems - having parallel hierarchies allows each hierarchy to be a natural division of tasks, without having to handle complex combinations of tasks that would be present if several unrelated subsystems needed to be forced into the same tree of cgroups.
Line 115: Line 115:
   * **release_agent**: the path to use for release notifications (this file exists in the top cgroup only).   * **release_agent**: the path to use for release notifications (this file exists in the top cgroup only).
  
-Other subsystems such as [[Kernel:CPU Sets|cpusets]] may add additional files in each cgroup dir.+Other subsystems such as [[Linux:Kernel:CPU Sets|cpusets]] may add additional files in each cgroup dir.
  
 New cgroups are created using the mkdir system call or shell command.  The properties of a cgroup, such as its flags, are modified by writing to the appropriate file in that cgroups directory, as listed above. New cgroups are created using the mkdir system call or shell command.  The properties of a cgroup, such as its flags, are modified by writing to the appropriate file in that cgroups directory, as listed above.
Line 453: Line 453:
 </code> </code>
  
-Called at the end of **cgroup_clone()** to do any parameter initialization which might be required before a task could attach.  For example in [[Kernel:CPU Sets|cpusets]], no task may attach before 'cpus' and 'mems' are set up.+Called at the end of **cgroup_clone()** to do any parameter initialization which might be required before a task could attach.  For example in [[Linux:Kernel:CPU Sets|cpusets]], no task may attach before 'cpus' and 'mems' are set up.
  
 <code c> <code c>
linux/kernel/control_groups.1576446558.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki