mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
Bump up the default timeouts for move commands in the ch(4) driver
to 15 minutes, and 5 minutes for things like READ ELEMENT STATUS. This is needed to account for the worst case scenarios on at least some Spectra Logic tape libraries. Sponsored by: Spectra Logic MFC after: 3 days
This commit is contained in:
parent
33e00c6789
commit
ee5bd4fc5a
1 changed files with 4 additions and 4 deletions
|
|
@ -99,10 +99,10 @@ __FBSDID("$FreeBSD$");
|
|||
*/
|
||||
|
||||
static const u_int32_t CH_TIMEOUT_MODE_SENSE = 6000;
|
||||
static const u_int32_t CH_TIMEOUT_MOVE_MEDIUM = 100000;
|
||||
static const u_int32_t CH_TIMEOUT_EXCHANGE_MEDIUM = 100000;
|
||||
static const u_int32_t CH_TIMEOUT_POSITION_TO_ELEMENT = 100000;
|
||||
static const u_int32_t CH_TIMEOUT_READ_ELEMENT_STATUS = 60000;
|
||||
static const u_int32_t CH_TIMEOUT_MOVE_MEDIUM = 15 * 60 * 1000;
|
||||
static const u_int32_t CH_TIMEOUT_EXCHANGE_MEDIUM = 15 * 60 * 1000;
|
||||
static const u_int32_t CH_TIMEOUT_POSITION_TO_ELEMENT = 15 * 60 * 1000;
|
||||
static const u_int32_t CH_TIMEOUT_READ_ELEMENT_STATUS = 5 * 60 * 1000;
|
||||
static const u_int32_t CH_TIMEOUT_SEND_VOLTAG = 10000;
|
||||
static const u_int32_t CH_TIMEOUT_INITIALIZE_ELEMENT_STATUS = 500000;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue