diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-18 23:40:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 11:53:39 -0700 |
commit | 198fe21b0a17fe9c68cb519ecc566534b04f122b (patch) | |
tree | 690825669858d0f458fc137e42adf77cdf370ea4 /fs | |
parent | 7af5729474b5b8ad385adadab78d6e723e7655a3 (diff) | |
download | linux-3.10-198fe21b0a17fe9c68cb519ecc566534b04f122b.tar.gz linux-3.10-198fe21b0a17fe9c68cb519ecc566534b04f122b.tar.bz2 linux-3.10-198fe21b0a17fe9c68cb519ecc566534b04f122b.zip |
pid namespaces: helpers to find the task by its numerical ids
When searching the task by numerical id on may need to find it using global
pid (as it is done now in kernel) or by its virtual id, e.g. when sending a
signal to a task from one namespace the sender will specify the task's virtual
id and we should find the task by this value.
[akpm@linux-foundation.org: fix gfs2 linkage]
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 36983e7bb2c..50e149e08d9 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -2333,7 +2333,7 @@ static struct task_struct *next_tgid(unsigned int tgid) rcu_read_lock(); retry: task = NULL; - pid = find_ge_pid(tgid); + pid = find_ge_pid(tgid, &init_pid_ns); if (pid) { tgid = pid->nr + 1; task = pid_task(pid, PIDTYPE_PID); |