scsi: qedf: Increase the number of default FIP VLAN request retries to 60
Some configurations need more than 30 seconds to respond to a FIP VLAN request so increase the default to 60 seconds. Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
44c7c85911
commit
c3ef86f3ec
|
@ -44,10 +44,10 @@ module_param_named(debug, qedf_debug, uint, S_IRUGO);
|
|||
MODULE_PARM_DESC(debug, " Debug mask. Pass '1' to enable default debugging"
|
||||
" mask");
|
||||
|
||||
static uint qedf_fipvlan_retries = 30;
|
||||
static uint qedf_fipvlan_retries = 60;
|
||||
module_param_named(fipvlan_retries, qedf_fipvlan_retries, int, S_IRUGO);
|
||||
MODULE_PARM_DESC(fipvlan_retries, " Number of FIP VLAN requests to attempt "
|
||||
"before giving up (default 30)");
|
||||
"before giving up (default 60)");
|
||||
|
||||
static uint qedf_fallback_vlan = QEDF_FALLBACK_VLAN;
|
||||
module_param_named(fallback_vlan, qedf_fallback_vlan, int, S_IRUGO);
|
||||
|
|
Loading…
Reference in New Issue