Re: 2.5.63/64 do not boot: loop in scsi_error

Zwane Mwaikambo (zwane@linuxpower.ca)
Thu, 6 Mar 2003 12:39:39 -0500 (EST)


On Thu, 6 Mar 2003, James Bottomley wrote:

> Actually, all three if's need nots in front:
>
> diff -Nru a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
> --- a/drivers/scsi/scsi_error.c Thu Mar 6 11:21:22 2003
> +++ b/drivers/scsi/scsi_error.c Thu Mar 6 11:21:22 2003
> @@ -1490,9 +1490,9 @@
> struct list_head *work_q,
> struct list_head *done_q)
> {
> - if (scsi_eh_bus_device_reset(shost, work_q, done_q))
> - if (scsi_eh_bus_reset(shost, work_q, done_q))
> - if (scsi_eh_host_reset(work_q, done_q))
> + if (!scsi_eh_bus_device_reset(shost, work_q, done_q))
> + if (!scsi_eh_bus_reset(shost, work_q, done_q))
> + if (!scsi_eh_host_reset(work_q, done_q))
> scsi_eh_offline_sdevs(work_q, done_q);
> }

Ok patched 2.5.63 is back to booting as 2.5.62, would you like any more
information?

Thanks,
Zwane

-- 
function.linuxpower.ca
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/