scsi: hpsa: remove timeout from TURs
authorDon Brace <don.brace@microsemi.com>
Tue, 12 Mar 2019 18:11:45 +0000 (13:11 -0500)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 18 Mar 2019 20:46:14 +0000 (16:46 -0400)
There are times when a TUR can take longer than the DEFAULT_TIMEOUT
value. The timeout code is not correct as the function exits with an
automatic as the completion variable...To be fixed later.

Remove the TUR timeout.

Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Reviewed-by: Scott Teel <scott.teel@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/hpsa.c

index bd98a96..ff0e3cc 100644 (file)
@@ -5824,7 +5824,7 @@ static int hpsa_send_test_unit_ready(struct ctlr_info *h,
        /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
        (void) fill_cmd(c, TEST_UNIT_READY, h,
                        NULL, 0, 0, lunaddr, TYPE_CMD);
-       rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, DEFAULT_TIMEOUT);
+       rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
        if (rc)
                return rc;
        /* no unmap needed here because no data xfer. */