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 /kernel/fork.c | |
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 'kernel/fork.c')
-rw-r--r-- | kernel/fork.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index 12cdd9fc9d02..bc551efb5fd4 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -1112,6 +1112,7 @@ static task_t *copy_process(unsigned long clone_flags, | |||
1112 | * We dont wake it up yet. | 1112 | * We dont wake it up yet. |
1113 | */ | 1113 | */ |
1114 | p->group_leader = p; | 1114 | p->group_leader = p; |
1115 | INIT_LIST_HEAD(&p->thread_group); | ||
1115 | INIT_LIST_HEAD(&p->ptrace_children); | 1116 | INIT_LIST_HEAD(&p->ptrace_children); |
1116 | INIT_LIST_HEAD(&p->ptrace_list); | 1117 | INIT_LIST_HEAD(&p->ptrace_list); |
1117 | 1118 | ||
@@ -1165,7 +1166,9 @@ static task_t *copy_process(unsigned long clone_flags, | |||
1165 | retval = -EAGAIN; | 1166 | retval = -EAGAIN; |
1166 | goto bad_fork_cleanup_namespace; | 1167 | goto bad_fork_cleanup_namespace; |
1167 | } | 1168 | } |
1169 | |||
1168 | p->group_leader = current->group_leader; | 1170 | p->group_leader = current->group_leader; |
1171 | list_add_tail_rcu(&p->thread_group, &p->group_leader->thread_group); | ||
1169 | 1172 | ||
1170 | if (current->signal->group_stop_count > 0) { | 1173 | if (current->signal->group_stop_count > 0) { |
1171 | /* | 1174 | /* |
@@ -1213,7 +1216,6 @@ static task_t *copy_process(unsigned long clone_flags, | |||
1213 | list_add_tail(&p->tasks, &init_task.tasks); | 1216 | list_add_tail(&p->tasks, &init_task.tasks); |
1214 | __get_cpu_var(process_counts)++; | 1217 | __get_cpu_var(process_counts)++; |
1215 | } | 1218 | } |
1216 | attach_pid(p, PIDTYPE_TGID, p->tgid); | ||
1217 | attach_pid(p, PIDTYPE_PID, p->pid); | 1219 | attach_pid(p, PIDTYPE_PID, p->pid); |
1218 | nr_threads++; | 1220 | nr_threads++; |
1219 | } | 1221 | } |