On Mon, 2007-08-20 at 09:20 -0600, Matthew Wilcox wrote:
> Oops.  I fail to drive git-send-email properly again.
> James, when you're committing this, please use the
> Subject: [PATCH] scsi_scan: Cope with kthread_run failing
> 
> On Mon, Aug 20, 2007 at 09:18:48AM -0600, Matthew Wilcox wrote:
> > If kthread_run failed, we would fail to scan the host, and leak the
> > allocated async_scan_data.  Since using a separate thread is just an
> > optimisation, do the scan synchronously if we fail to spawn a thread.
> > 
> > Signed-off-by: Matthew Wilcox <[EMAIL PROTECTED]>
> > 
> > diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c
> > index 309b224..a001ca1 100644
> > --- a/drivers/scsi/scsi_scan.c
> > +++ b/drivers/scsi/scsi_scan.c
> > @@ -1799,6 +1799,7 @@ static int do_scan_async(void *_data)
> >   **/
> >  void scsi_scan_host(struct Scsi_Host *shost)
> >  {
> > +   struct task_struct *p;
> >     struct async_scan_data *data;
> >  
> >     if (strncmp(scsi_scan_type, "none", 4) == 0)
> > @@ -1810,7 +1811,9 @@ void scsi_scan_host(struct Scsi_Host *shost)
> >             return;
> >     }
> >  
> > -   kthread_run(do_scan_async, data, "scsi_scan_%d", shost->host_no);
> > +   p = kthread_run(do_scan_async, data, "scsi_scan_%d", shost->host_no);
> > +   if (IS_ERR(p))

I fixed this one up in situ, but for future reference, an error
condition that's so unlikely we weren't even checking it before needs
an 

if (unlikely(IS_ERR(p)))

to get the compiler to do the right thing if it can.

James


-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to