diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-09-27 04:51:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:19 -0400 |
commit | 65800ac77e080cf159d6c1207b6886e18f22bc08 (patch) | |
tree | e18a27daff0f97139afa1ff731ac47f054285ee6 /kernel | |
parent | c18258c6f0848f97e85287f6271c511a092bb784 (diff) |
[PATCH] pid: remove temporary debug code in attach_pid
With the patches flying between Oleg and myself somehow this temporary
debug code got left in pid.c. It was never intended to make it to the
stable kernel.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/pid.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/pid.c b/kernel/pid.c index 6db82b68e2f8..8387e8c68193 100644 --- a/kernel/pid.c +++ b/kernel/pid.c | |||
@@ -223,9 +223,6 @@ int fastcall attach_pid(struct task_struct *task, enum pid_type type, int nr) | |||
223 | struct pid_link *link; | 223 | struct pid_link *link; |
224 | struct pid *pid; | 224 | struct pid *pid; |
225 | 225 | ||
226 | WARN_ON(!task->pid); /* to be removed soon */ | ||
227 | WARN_ON(!nr); /* to be removed soon */ | ||
228 | |||
229 | link = &task->pids[type]; | 226 | link = &task->pids[type]; |
230 | link->pid = pid = find_pid(nr); | 227 | link->pid = pid = find_pid(nr); |
231 | hlist_add_head_rcu(&link->node, &pid->tasks[type]); | 228 | hlist_add_head_rcu(&link->node, &pid->tasks[type]); |