aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-19 02:40:17 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-19 14:53:40 -0400
commit19b9b9b54e5f115907efd56be2c3799775a46561 (patch)
tree44340df34980166373f2a57c1283c26026682a95 /include
parent228ebcbe634a30aec35132ea4375721bcc41bec0 (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')
-rw-r--r--include/linux/init_task.h3
-rw-r--r--include/linux/pid.h3
2 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h
index 243e287304d0..5ac5945696a0 100644
--- a/include/linux/init_task.h
+++ b/include/linux/init_task.h
@@ -94,9 +94,6 @@ extern struct group_info init_groups;
94 94
95#define INIT_STRUCT_PID { \ 95#define INIT_STRUCT_PID { \
96 .count = ATOMIC_INIT(1), \ 96 .count = ATOMIC_INIT(1), \
97 .nr = 0, \
98 /* Don't put this struct pid in pid_hash */ \
99 .pid_chain = { .next = NULL, .pprev = NULL }, \
100 .tasks = { \ 97 .tasks = { \
101 { .first = &init_task.pids[PIDTYPE_PID].node }, \ 98 { .first = &init_task.pids[PIDTYPE_PID].node }, \
102 { .first = &init_task.pids[PIDTYPE_PGID].node }, \ 99 { .first = &init_task.pids[PIDTYPE_PGID].node }, \
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 {
57struct pid 57struct pid
58{ 58{
59 atomic_t count; 59 atomic_t count;
60 /* Try to keep pid_chain in the same cacheline as nr for find_pid */
61 int nr;
62 struct hlist_node pid_chain;
63 /* lists of tasks that use this pid */ 60 /* lists of tasks that use this pid */
64 struct hlist_head tasks[PIDTYPE_MAX]; 61 struct hlist_head tasks[PIDTYPE_MAX];
65 struct rcu_head rcu; 62 struct rcu_head rcu;