Skip to content

Commit a7b6184

Browse files
avasquez01James Bottomley
authored andcommitted
[SCSI] qla2xxx: Honor NVRAM port-down-retry-count settings.
Hardcoding the qlport_down_retry module-parameter effectively disallowed any user-defined NVRAM setting to go into effect. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
1 parent 765140b commit a7b6184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/qla2xxx/qla_os.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
3636
MODULE_PARM_DESC(ql2xlogintimeout,
3737
"Login timeout value in seconds.");
3838

39-
int qlport_down_retry = 30;
39+
int qlport_down_retry;
4040
module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
4141
MODULE_PARM_DESC(qlport_down_retry,
4242
"Maximum number of command retries to a port that returns "

0 commit comments

Comments
 (0)