aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/pid.c
diff options
context:
space:
mode:
authorCedric Le Goater <clg@fr.ibm.com>2006-12-08 05:37:59 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-08 11:28:52 -0500
commit9a575a92db3312a40cdf0b0406d88de88ad9741e (patch)
tree0b789528da13cd31f7fb206f184cfa123cc0ba42 /kernel/pid.c
parent61a58c6c238cc81f7742b8cc84212cc55fb57747 (diff)
[PATCH] to nsproxy
Add the pid namespace framework to the nsproxy object. The copy of the pid namespace only increases the refcount on the global pid namespace, init_pid_ns, and unshare is not implemented. There is no configuration option to activate or deactivate this feature because this not relevant for the moment. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Cc: Kirill Korotaev <dev@openvz.org> Cc: Eric W. Biederman <ebiederm@xmission.com> Cc: Herbert Poetzl <herbert@13thfloor.at> Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/pid.c')
-rw-r--r--kernel/pid.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/kernel/pid.c b/kernel/pid.c
index 25807e1b98dd..5319b9f2fc5e 100644
--- a/kernel/pid.c
+++ b/kernel/pid.c
@@ -59,6 +59,9 @@ static inline int mk_pid(struct pid_namespace *pid_ns,
59 * the scheme scales to up to 4 million PIDs, runtime. 59 * the scheme scales to up to 4 million PIDs, runtime.
60 */ 60 */
61struct pid_namespace init_pid_ns = { 61struct pid_namespace init_pid_ns = {
62 .kref = {
63 .refcount = ATOMIC_INIT(2),
64 },
62 .pidmap = { 65 .pidmap = {
63 [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PER_PAGE), NULL } 66 [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PER_PAGE), NULL }
64 }, 67 },
@@ -356,6 +359,26 @@ struct pid *find_ge_pid(int nr)
356} 359}
357EXPORT_SYMBOL_GPL(find_get_pid); 360EXPORT_SYMBOL_GPL(find_get_pid);
358 361
362int copy_pid_ns(int flags, struct task_struct *tsk)
363{
364 struct pid_namespace *old_ns = tsk->nsproxy->pid_ns;
365 int err = 0;
366
367 if (!old_ns)
368 return 0;
369
370 get_pid_ns(old_ns);
371 return err;
372}
373
374void free_pid_ns(struct kref *kref)
375{
376 struct pid_namespace *ns;
377
378 ns = container_of(kref, struct pid_namespace, kref);
379 kfree(ns);
380}
381
359/* 382/*
360 * The pid hash table is scaled according to the amount of memory in the 383 * The pid hash table is scaled according to the amount of memory in the
361 * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or 384 * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or