[PATCH] pid: Since we aren't hashing pid 0 don't try

From: Eric W. Biederman
Date: Sun Jan 29 2006 - 16:42:56 EST



This is a tidbit i missed in my code to stop hashing pid 0.

Signed-off-by: Eric W. Biederman <ebiederm@xxxxxxxxxxxx>


---

kernel/pid.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)

d634915984d3e2d7ac13aaff1ee0e23406fe0e74
diff --git a/kernel/pid.c b/kernel/pid.c
index 7c40310..aea6775 100644
--- a/kernel/pid.c
+++ b/kernel/pid.c
@@ -363,11 +363,4 @@ void __init pidmap_init(void)
pidmap_array->page = (void *)get_zeroed_page(GFP_KERNEL);
set_bit(0, pidmap_array->page);
atomic_dec(&pidmap_array->nr_free);
-
- /*
- * Allocate PID 0, and hash it via all PID types:
- */
-
- for (i = 0; i < PIDTYPE_MAX; i++)
- attach_pid(current, i, 0);
}
--
1.1.5.g3480

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/