--- On Thu, 1/31/08, Luben Tuikov <ltuikov@xxxxxxxxx> wrote: > Negate original: > if (driver_byte(result) == DRIVER_SENSE || > (sense_valid && sense_defered)) > Inspect sense. > > Negate your proposed change "&&" -> > "||": > if (driver_byte(result) == DRIVER_SENSE && > (sense_valid || sense_deferred)) > Inspect sense. Should read: Negate original: if (driver_byte(result) == DRIVER_SENSE || (sense_valid && !sense_deferred)) Inspect sense. Negate your proposed change "&&" -> "||": if (driver_byte(result) == DRIVER_SENSE && (sense_valid || !sense_deferred)) Inspect sense. Luben - To unsubscribe from this list: 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