mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
[PATCH] simplify exec from init's subthread
I think it is enough to take tasklist_lock for reading while changing child_reaper: Reparenting needs write_lock(tasklist_lock) Only one thread in a thread group can do exec() sighand->siglock garantees that get_signal_to_deliver() will not see a stale value of child_reaper. This means that we can change child_reaper earlier, without calling zap_other_threads() twice. "child_reaper = current" is a NOOP when init does exec from main thread, we don't care. Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
fef23e7fbb
commit
1434261c07
1 changed files with 10 additions and 12 deletions
22
fs/exec.c
22
fs/exec.c
|
@ -616,6 +616,15 @@ static int de_thread(struct task_struct *tsk)
|
||||||
kmem_cache_free(sighand_cachep, newsighand);
|
kmem_cache_free(sighand_cachep, newsighand);
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* child_reaper ignores SIGKILL, change it now.
|
||||||
|
* Reparenting needs write_lock on tasklist_lock,
|
||||||
|
* so it is safe to do it under read_lock.
|
||||||
|
*/
|
||||||
|
if (unlikely(current->group_leader == child_reaper))
|
||||||
|
child_reaper = current;
|
||||||
|
|
||||||
zap_other_threads(current);
|
zap_other_threads(current);
|
||||||
read_unlock(&tasklist_lock);
|
read_unlock(&tasklist_lock);
|
||||||
|
|
||||||
|
@ -660,23 +669,12 @@ static int de_thread(struct task_struct *tsk)
|
||||||
struct dentry *proc_dentry1, *proc_dentry2;
|
struct dentry *proc_dentry1, *proc_dentry2;
|
||||||
unsigned long ptrace;
|
unsigned long ptrace;
|
||||||
|
|
||||||
leader = current->group_leader;
|
|
||||||
/*
|
|
||||||
* If our leader is the child_reaper become
|
|
||||||
* the child_reaper and resend SIGKILL signal.
|
|
||||||
*/
|
|
||||||
if (unlikely(leader == child_reaper)) {
|
|
||||||
write_lock(&tasklist_lock);
|
|
||||||
child_reaper = current;
|
|
||||||
zap_other_threads(current);
|
|
||||||
write_unlock(&tasklist_lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Wait for the thread group leader to be a zombie.
|
* Wait for the thread group leader to be a zombie.
|
||||||
* It should already be zombie at this point, most
|
* It should already be zombie at this point, most
|
||||||
* of the time.
|
* of the time.
|
||||||
*/
|
*/
|
||||||
|
leader = current->group_leader;
|
||||||
while (leader->exit_state != EXIT_ZOMBIE)
|
while (leader->exit_state != EXIT_ZOMBIE)
|
||||||
yield();
|
yield();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue