diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-18 23:40:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 11:53:40 -0700 |
commit | 19b9b9b54e5f115907efd56be2c3799775a46561 (patch) | |
tree | 44340df34980166373f2a57c1283c26026682a95 /include/linux/pid.h | |
parent | 228ebcbe634a30aec35132ea4375721bcc41bec0 (diff) |
pid namespaces: remove the struct pid unneeded fields
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 <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 'include/linux/pid.h')
-rw-r--r-- | include/linux/pid.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/pid.h b/include/linux/pid.h index 16644cceb946..4817c6671e77 100644 --- a/include/linux/pid.h +++ b/include/linux/pid.h @@ -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; |