diff options
author | James Smart <james.smart@emulex.com> | 2011-10-10 21:32:43 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-10-16 12:31:19 -0400 |
commit | a183a15f88a6803476abf4c7f097df33f6ca6f92 (patch) | |
tree | 98f4c78eec6d24b9032e1cf099ccda0c9e190212 /drivers/scsi/lpfc/lpfc_sli.h | |
parent | 73d91e503a60bd164b636258ae9f558b72010602 (diff) |
[SCSI] lpfc 8.3.27: Changed worst case mailbox timeout
Changed the timeout value for flash-based SLI_CONFIG (0x9B)
mailbox command to 300 seconds for worst case flash delays.
Signed-off-by: Alex Iannicelli <alex.iannicelli@emulex.com>
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_sli.h')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_sli.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/drivers/scsi/lpfc/lpfc_sli.h b/drivers/scsi/lpfc/lpfc_sli.h index a0075b0af142..29c13b63e323 100644 --- a/drivers/scsi/lpfc/lpfc_sli.h +++ b/drivers/scsi/lpfc/lpfc_sli.h | |||
@@ -293,13 +293,11 @@ struct lpfc_sli { | |||
293 | struct lpfc_lnk_stat lnk_stat_offsets; | 293 | struct lpfc_lnk_stat lnk_stat_offsets; |
294 | }; | 294 | }; |
295 | 295 | ||
296 | #define LPFC_MBOX_TMO 30 /* Sec tmo for outstanding mbox | 296 | /* Timeout for normal outstanding mbox command (Seconds) */ |
297 | command */ | 297 | #define LPFC_MBOX_TMO 30 |
298 | #define LPFC_MBOX_SLI4_CONFIG_TMO 60 /* Sec tmo for outstanding mbox | 298 | /* Timeout for non-flash-based outstanding sli_config mbox command (Seconds) */ |
299 | command */ | 299 | #define LPFC_MBOX_SLI4_CONFIG_TMO 60 |
300 | #define LPFC_MBOX_TMO_FLASH_CMD 300 /* Sec tmo for outstanding FLASH write | 300 | /* Timeout for flash-based outstanding sli_config mbox command (Seconds) */ |
301 | * or erase cmds. This is especially | 301 | #define LPFC_MBOX_SLI4_CONFIG_EXTENDED_TMO 300 |
302 | * long because of the potential of | 302 | /* Timeout for other flash-based outstanding mbox command (Seconds) */ |
303 | * multiple flash erases that can be | 303 | #define LPFC_MBOX_TMO_FLASH_CMD 300 |
304 | * spawned. | ||
305 | */ | ||