scsi: aacraid: Change wait time for fib completion
authorRaghava Aditya Renukunta <RaghavaAditya.Renukunta@microsemi.com>
Wed, 10 May 2017 16:39:40 +0000 (09:39 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 13 Jun 2017 00:47:59 +0000 (20:47 -0400)
Change the completion wait time for the fibs in the reset and abort
callback from 2 minutes to 15 seconds.

2 minutes is too long for waiting for completion.

Signed-off-by: Raghava Aditya Renukunta <RaghavaAditya.Renukunta@microsemi.com>
Reviewed-by: David Carroll <david.carroll@microsemi.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/aacraid/linit.c

index 9ef98e4..f6a11af 100644 (file)
@@ -684,8 +684,8 @@ static int aac_eh_abort(struct scsi_cmnd* cmd)
                                  (fib_callback) aac_hba_callback,
                                  (void *) cmd);
 
-               /* Wait up to 2 minutes for completion */
-               for (count = 0; count < 120; ++count) {
+               /* Wait up to 15 secs for completion */
+               for (count = 0; count < 15; ++count) {
                        if (cmd->SCp.sent_command) {
                                ret = SUCCESS;
                                break;
@@ -840,8 +840,8 @@ static int aac_eh_reset(struct scsi_cmnd* cmd)
                                  (fib_callback) aac_hba_callback,
                                  (void *) cmd);
 
-               /* Wait up to 2 minutes for completion */
-               for (count = 0; count < 120; ++count) {
+               /* Wait up to 15 seconds for completion */
+               for (count = 0; count < 15; ++count) {
                        if (cmd->SCp.sent_command) {
                                ret = SUCCESS;
                                break;