On 08/07/05 17:14 -0700, Nishanth Aravamudan wrote: > From: Nishanth Aravamudan <nacc@xxxxxxxxxx> > > Description: Replace schedule_timeout() with msleep() to guarantee the > task delays as expected. > > Patch is compile-tested. > > Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx> > > --- > > lpfc_scsi.c | 13 +++++-------- > 1 files changed, 5 insertions(+), 8 deletions(-) > > diff -urp 2.6.13-rc2-kj/drivers/scsi/lpfc/lpfc_scsi.c 2.6.13-rc2-kj-dev/drivers/scsi/lpfc/lpfc_scsi.c > --- 2.6.13-rc2-kj/drivers/scsi/lpfc/lpfc_scsi.c 2005-07-06 07:57:19.000000000 -0700 > +++ 2.6.13-rc2-kj-dev/drivers/scsi/lpfc/lpfc_scsi.c 2005-07-06 19:20:41.000000000 -0700 ... > @@ -1110,8 +1108,7 @@ __lpfc_reset_bus_handler(struct scsi_cmn > &phba->sli.ring[phba->sli.fcp_ring], > 0, 0, LPFC_CTX_HOST))) { > spin_unlock_irq(phba->host->host_lock); > - set_current_state(TASK_UNINTERRUPTIBLE); > - schedule_timeout(LPFC_RESET_WAIT*HZ); > + msleep(LPFC_RESET_WAIT * HZ); ^^ ?? I assume you meant 1000. > spin_lock_irq(phba->host->host_lock); > > if (++loopcnt > _______________________________________________ > Kernel-janitors mailing list > Kernel-janitors@xxxxxxxxxxxxxx > https://lists.osdl.org/mailman/listinfo/kernel-janitors - : send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html