Re: [PATCH -mm 1/2] wait_task_stopped: remove unneeded delay_group_leader check

2007-12-10 Thread Roland McGrath
Your change looks correct to me. Thanks, Roland -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH -mm 1/2] wait_task_stopped: remove unneeded delay_group_leader check

2007-11-24 Thread Mika Penttilä
wait_task_stopped() doesn't need the "delay_group_leader" parameter. If the child is not traced it must be a group leader. With or without subthreads What do you mean "has to be a group leader"? It could be a stopped thread. ->group_stop_count == 0 when the whole task is stopped. Signe

[PATCH -mm 1/2] wait_task_stopped: remove unneeded delay_group_leader check

2007-11-23 Thread Oleg Nesterov
wait_task_stopped() doesn't need the "delay_group_leader" parameter. If the child is not traced it must be a group leader. With or without subthreads ->group_stop_count == 0 when the whole task is stopped. Signed-off-by: Oleg Nesterov <[EMAIL PROTECTED]> --- PT/kernel/exit.c~5_ck_group_stop20