Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-12-05 Thread Sébastien Dugué
On Mon, 4 Dec 2006 22:43:13 +0530 Bharata B Rao <[EMAIL PROTECTED]> wrote: > On Wed, Nov 29, 2006 at 11:32:34AM +0100, Sébastien Dugué wrote: > > > > > > +/*** > > + * good_sigevent - check and get target task from a sigevent. > > + * @event: the sigevent to be checked > > + * > > + * This func

Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-12-04 Thread Bharata B Rao
On Wed, Nov 29, 2006 at 11:32:34AM +0100, Sébastien Dugué wrote: > > > +/*** > + * good_sigevent - check and get target task from a sigevent. > + * @event: the sigevent to be checked > + * > + * This function must be called with tasklist_lock held for reading. > + */ > +struct task_struct * good

Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-11-29 Thread Sébastien Dugué
On Wed, 29 Nov 2006 14:54:25 +, Christoph Hellwig <[EMAIL PROTECTED]> wrote: > > +/*** > > + * good_sigevent - check and get target task from a sigevent. > > + * @event: the sigevent to be checked > > + * > > + * This function must be called with tasklist_lock held for reading. > > + */ > > +s

Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-11-29 Thread Christoph Hellwig
> +/*** > + * good_sigevent - check and get target task from a sigevent. > + * @event: the sigevent to be checked > + * > + * This function must be called with tasklist_lock held for reading. > + */ > +struct task_struct * good_sigevent(sigevent_t * event) > +{ > + struct task_struct *rtn = cur

Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-11-29 Thread Sébastien Dugué
On Wed, 29 Nov 2006 10:38:25 + Christoph Hellwig <[EMAIL PROTECTED]> wrote: > On Wed, Nov 29, 2006 at 11:32:34AM +0100, S?bastien Dugu? wrote: > > > > Export good_sigevent() > > > > > > Move good_sigevent() from posix-timers.c to signal.c where it belongs, > > and ex

Re: [PATCH -mm 3/5][AIO] - export good_sigevent()

2006-11-29 Thread Christoph Hellwig
On Wed, Nov 29, 2006 at 11:32:34AM +0100, S?bastien Dugu? wrote: > > Export good_sigevent() > > > Move good_sigevent() from posix-timers.c to signal.c where it belongs, > and export it so that it can be used by other subsystems. A little nitpick about the subject: we usu

[PATCH -mm 3/5][AIO] - export good_sigevent()

2006-11-29 Thread Sébastien Dugué
Export good_sigevent() Move good_sigevent() from posix-timers.c to signal.c where it belongs, and export it so that it can be used by other subsystems. include/linux/signal.h |1 + kernel/posix-timers.c | 17 - kernel/signal.c| 23 +