From: Eric W. Biederman Date: Wed, 27 Sep 2006 08:51:11 +0000 (-0700) Subject: [PATCH] pid: remove temporary debug code in attach_pid X-Git-Tag: v2.6.19-rc1~909 X-Git-Url: http://pilppa.org/gitweb/?a=commitdiff_plain;h=65800ac77e080cf159d6c1207b6886e18f22bc08;p=linux-2.6-omap-h63xx.git [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 Cc: Oleg Nesterov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/pid.c b/kernel/pid.c index 6db82b68e2f..8387e8c6819 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) struct pid_link *link; struct pid *pid; - WARN_ON(!task->pid); /* to be removed soon */ - WARN_ON(!nr); /* to be removed soon */ - link = &task->pids[type]; link->pid = pid = find_pid(nr); hlist_add_head_rcu(&link->node, &pid->tasks[type]);