Re: [PATCH] ITIMER_REAL: convert to use struct pid

2007-12-10 Thread Roland McGrath
This looks fine 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] ITIMER_REAL: convert to use struct pid

2007-12-09 Thread Thomas Gleixner
On Fri, 7 Dec 2007, Oleg Nesterov wrote: > signal_struct->tsk points to the ->group_leader and thus we have the nasty > code > in de_thread() which has to change it and restart ->real_timer if the leader > is > changed. > > Use "struct pid *leader_pid" instead. This also allows us to kill now

Re: [PATCH] ITIMER_REAL: convert to use struct pid

2007-12-09 Thread Eric W. Biederman
Oleg Nesterov <[EMAIL PROTECTED]> writes: > signal_struct->tsk points to the ->group_leader and thus we have the nasty > code > in de_thread() which has to change it and restart ->real_timer if the leader > is > changed. > > Use "struct pid *leader_pid" instead. This also allows us to kill now u

[PATCH] ITIMER_REAL: convert to use struct pid

2007-12-07 Thread Oleg Nesterov
signal_struct->tsk points to the ->group_leader and thus we have the nasty code in de_thread() which has to change it and restart ->real_timer if the leader is changed. Use "struct pid *leader_pid" instead. This also allows us to kill now unneeded send_group_sig_info(). Signed-off-by: Oleg Nester