]> Git Repo - linux.git/commitdiff
pid namespaces: remove the struct pid unneeded fields
authorPavel Emelyanov <[email protected]>
Fri, 19 Oct 2007 06:40:17 +0000 (23:40 -0700)
committerLinus Torvalds <[email protected]>
Fri, 19 Oct 2007 18:53:40 +0000 (11:53 -0700)
Since we've switched from using pid->nr to pid->upids->nr some
fields on struct pid are no longer needed

Signed-off-by: Pavel Emelyanov <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Sukadev Bhattiprolu <[email protected]>
Cc: Paul Menage <[email protected]>
Cc: "Eric W. Biederman" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
include/linux/init_task.h
include/linux/pid.h
kernel/pid.c

index 243e287304d089fff691167a35fb88e71d99a832..5ac5945696a03742f0a526530334107f96452796 100644 (file)
@@ -94,9 +94,6 @@ extern struct group_info init_groups;
 
 #define INIT_STRUCT_PID {                                              \
        .count          = ATOMIC_INIT(1),                               \
-       .nr             = 0,                                            \
-       /* Don't put this struct pid in pid_hash */                     \
-       .pid_chain      = { .next = NULL, .pprev = NULL },              \
        .tasks          = {                                             \
                { .first = &init_task.pids[PIDTYPE_PID].node },         \
                { .first = &init_task.pids[PIDTYPE_PGID].node },        \
index 16644cceb94662bb7d006f45780c0e7560b5cdd8..4817c6671e772560b4f715cdb695de24c68ad937 100644 (file)
@@ -57,9 +57,6 @@ struct upid {
 struct pid
 {
        atomic_t count;
-       /* Try to keep pid_chain in the same cacheline as nr for find_pid */
-       int nr;
-       struct hlist_node pid_chain;
        /* lists of tasks that use this pid */
        struct hlist_head tasks[PIDTYPE_MAX];
        struct rcu_head rcu;
index 73a60e265f524772c49614b58dc58b09f68eccb2..bed9e7f80a50cee36e09c630c02688edd6b97624 100644 (file)
@@ -263,7 +263,6 @@ struct pid *alloc_pid(struct pid_namespace *ns)
 
        get_pid_ns(ns);
        pid->level = ns->level;
-       pid->nr = pid->numbers[0].nr;
        atomic_set(&pid->count, 1);
        for (type = 0; type < PIDTYPE_MAX; ++type)
                INIT_HLIST_HEAD(&pid->tasks[type]);
This page took 0.061551 seconds and 4 git commands to generate.