diff options
author | Serge E. Hallyn <serue@us.ibm.com> | 2007-10-19 02:39:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 14:53:37 -0400 |
commit | 858d72ead4864da0fb0b89b919524125ce998e27 (patch) | |
tree | 19ea321ca3b505efecb2053a829daf89a6a22529 /kernel/Makefile | |
parent | 846c7bb055747989891f5cd2bb6e8d56243ba1e7 (diff) |
cgroups: implement namespace tracking subsystem
When a task enters a new namespace via a clone() or unshare(), a new cgroup
is created and the task moves into it.
This version names cgroups which are automatically created using
cgroup_clone() as "node_<pid>" where pid is the pid of the unsharing or
cloned process. (Thanks Pavel for the idea) This is safe because if the
process unshares again, it will create
/cgroups/(...)/node_<pid>/node_<pid>
The only possibilities (AFAICT) for a -EEXIST on unshare are
1. pid wraparound
2. a process fails an unshare, then tries again.
Case 1 is unlikely enough that I ignore it (at least for now). In case 2, the
node_<pid> will be empty and can be rmdir'ed to make the subsequent unshare()
succeed.
Changelog:
Name cloned cgroups as "node_<pid>".
[clg@fr.ibm.com: fix order of cgroup subsystems in init/Kconfig]
Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Cc: Paul Menage <menage@google.com>
Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index a50a6debe5fc..32b2d8bdc9f5 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -40,6 +40,7 @@ obj-$(CONFIG_CGROUPS) += cgroup.o | |||
40 | obj-$(CONFIG_CGROUP_DEBUG) += cgroup_debug.o | 40 | obj-$(CONFIG_CGROUP_DEBUG) += cgroup_debug.o |
41 | obj-$(CONFIG_CPUSETS) += cpuset.o | 41 | obj-$(CONFIG_CPUSETS) += cpuset.o |
42 | obj-$(CONFIG_CGROUP_CPUACCT) += cpu_acct.o | 42 | obj-$(CONFIG_CGROUP_CPUACCT) += cpu_acct.o |
43 | obj-$(CONFIG_CGROUP_NS) += ns_cgroup.o | ||
43 | obj-$(CONFIG_IKCONFIG) += configs.o | 44 | obj-$(CONFIG_IKCONFIG) += configs.o |
44 | obj-$(CONFIG_STOP_MACHINE) += stop_machine.o | 45 | obj-$(CONFIG_STOP_MACHINE) += stop_machine.o |
45 | obj-$(CONFIG_AUDIT) += audit.o auditfilter.o | 46 | obj-$(CONFIG_AUDIT) += audit.o auditfilter.o |