diff options
| author | Oleg Nesterov <oleg@tv-sign.ru> | 2006-03-28 19:11:25 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 21:36:44 -0500 |
| commit | 47e65328a7b1cdfc4e3102e50d60faf94ebba7d3 (patch) | |
| tree | 78e00a5321cca87767806a91e623e71b5c6637c7 /include/linux | |
| parent | 88531f725bd52e37a7be726860e4ff3f09031d89 (diff) | |
[PATCH] pids: kill PIDTYPE_TGID
This patch kills PIDTYPE_TGID pid_type thus saving one hash table in
kernel/pid.c and speeding up subthreads create/destroy a bit. It is also a
preparation for the further tref/pids rework.
This patch adds 'struct list_head thread_group' to 'struct task_struct'
instead.
We don't detach group leader from PIDTYPE_PID namespace until another
thread inherits it's ->pid == ->tgid, so we are safe wrt premature
free_pidmap(->tgid) call.
Currently there are no users of find_task_by_pid_type(PIDTYPE_TGID).
Should the need arise, we can use find_task_by_pid()->group_leader.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Acked-By: Eric Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pid.h | 1 | ||||
| -rw-r--r-- | include/linux/sched.h | 11 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/linux/pid.h b/include/linux/pid.h index 099e70ecf7c7..5b9082cc600f 100644 --- a/include/linux/pid.h +++ b/include/linux/pid.h | |||
| @@ -4,7 +4,6 @@ | |||
| 4 | enum pid_type | 4 | enum pid_type |
| 5 | { | 5 | { |
| 6 | PIDTYPE_PID, | 6 | PIDTYPE_PID, |
| 7 | PIDTYPE_TGID, | ||
| 8 | PIDTYPE_PGID, | 7 | PIDTYPE_PGID, |
| 9 | PIDTYPE_SID, | 8 | PIDTYPE_SID, |
| 10 | PIDTYPE_MAX | 9 | PIDTYPE_MAX |
diff --git a/include/linux/sched.h b/include/linux/sched.h index a913fca9e70d..99855f694ebd 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -752,6 +752,7 @@ struct task_struct { | |||
| 752 | 752 | ||
| 753 | /* PID/PID hash table linkage. */ | 753 | /* PID/PID hash table linkage. */ |
| 754 | struct pid pids[PIDTYPE_MAX]; | 754 | struct pid pids[PIDTYPE_MAX]; |
| 755 | struct list_head thread_group; | ||
| 755 | 756 | ||
| 756 | struct completion *vfork_done; /* for vfork() */ | 757 | struct completion *vfork_done; /* for vfork() */ |
| 757 | int __user *set_child_tid; /* CLONE_CHILD_SETTID */ | 758 | int __user *set_child_tid; /* CLONE_CHILD_SETTID */ |
| @@ -1192,13 +1193,17 @@ extern void wait_task_inactive(task_t * p); | |||
| 1192 | #define while_each_thread(g, t) \ | 1193 | #define while_each_thread(g, t) \ |
| 1193 | while ((t = next_thread(t)) != g) | 1194 | while ((t = next_thread(t)) != g) |
| 1194 | 1195 | ||
| 1195 | extern task_t * FASTCALL(next_thread(const task_t *p)); | ||
| 1196 | |||
| 1197 | #define thread_group_leader(p) (p->pid == p->tgid) | 1196 | #define thread_group_leader(p) (p->pid == p->tgid) |
| 1198 | 1197 | ||
| 1198 | static inline task_t *next_thread(task_t *p) | ||
| 1199 | { | ||
| 1200 | return list_entry(rcu_dereference(p->thread_group.next), | ||
| 1201 | task_t, thread_group); | ||
| 1202 | } | ||
| 1203 | |||
| 1199 | static inline int thread_group_empty(task_t *p) | 1204 | static inline int thread_group_empty(task_t *p) |
| 1200 | { | 1205 | { |
| 1201 | return list_empty(&p->pids[PIDTYPE_TGID].pid_list); | 1206 | return list_empty(&p->thread_group); |
| 1202 | } | 1207 | } |
| 1203 | 1208 | ||
| 1204 | #define delay_group_leader(p) \ | 1209 | #define delay_group_leader(p) \ |
