Commit 76d9871e authored by Al Viro's avatar Al Viro

wait_task_zombie: consolidate info logics

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent bb380ec3
...@@ -1074,28 +1074,14 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p) ...@@ -1074,28 +1074,14 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
return 0; return 0;
if (unlikely(wo->wo_flags & WNOWAIT)) { if (unlikely(wo->wo_flags & WNOWAIT)) {
int exit_code = p->exit_code; status = p->exit_code;
get_task_struct(p); get_task_struct(p);
read_unlock(&tasklist_lock); read_unlock(&tasklist_lock);
sched_annotate_sleep(); sched_annotate_sleep();
if (wo->wo_rusage) if (wo->wo_rusage)
getrusage(p, RUSAGE_BOTH, wo->wo_rusage); getrusage(p, RUSAGE_BOTH, wo->wo_rusage);
put_task_struct(p); put_task_struct(p);
goto out_info;
infop = wo->wo_info;
if (infop) {
if ((exit_code & 0x7f) == 0) {
infop->cause = CLD_EXITED;
infop->status = exit_code >> 8;
} else {
infop->cause = (exit_code & 0x80) ? CLD_DUMPED : CLD_KILLED;
infop->status = exit_code & 0x7f;
}
infop->pid = pid;
infop->uid = uid;
}
return pid;
} }
/* /*
* Move the task's state to DEAD/TRACE, only one thread can do this. * Move the task's state to DEAD/TRACE, only one thread can do this.
...@@ -1174,19 +1160,6 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p) ...@@ -1174,19 +1160,6 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
? p->signal->group_exit_code : p->exit_code; ? p->signal->group_exit_code : p->exit_code;
wo->wo_stat = status; wo->wo_stat = status;
infop = wo->wo_info;
if (infop) {
if ((status & 0x7f) == 0) {
infop->cause = CLD_EXITED;
infop->status = status >> 8;
} else {
infop->cause = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
infop->status = status & 0x7f;
}
infop->pid = pid;
infop->uid = uid;
}
if (state == EXIT_TRACE) { if (state == EXIT_TRACE) {
write_lock_irq(&tasklist_lock); write_lock_irq(&tasklist_lock);
/* We dropped tasklist, ptracer could die and untrace */ /* We dropped tasklist, ptracer could die and untrace */
...@@ -1202,6 +1175,20 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p) ...@@ -1202,6 +1175,20 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
if (state == EXIT_DEAD) if (state == EXIT_DEAD)
release_task(p); release_task(p);
out_info:
infop = wo->wo_info;
if (infop) {
if ((status & 0x7f) == 0) {
infop->cause = CLD_EXITED;
infop->status = status >> 8;
} else {
infop->cause = (status & 0x80) ? CLD_DUMPED : CLD_KILLED;
infop->status = status & 0x7f;
}
infop->pid = pid;
infop->uid = uid;
}
return pid; return pid;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment