scsi: be2iscsi: Fix to use correct configuration values
Following configuration is created with what driver exports: iface.vlan_id = 65535 iface.vlan_priority = 255 iface.vlan_state = <empty> vlan_state is empty as iscsiadm doesn't process "Disabled". When applying this configuration, iscsiadm checks for if vlan_state is "disable" if not it enables with value in vlan_id. 65535 not being valid value, 0 is applied. Use "enable" or "disable" for ISCSI_NET_PARAM. Signed-off-by: Jitendra Bhivare <jitendra.bhivare@broadcom.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
0b924e5505
commit
ea89604f3d
@@ -567,8 +567,8 @@ static int be2iscsi_get_if_param(struct beiscsi_hba *phba,
|
|||||||
break;
|
break;
|
||||||
case ISCSI_NET_PARAM_VLAN_ENABLED:
|
case ISCSI_NET_PARAM_VLAN_ENABLED:
|
||||||
len = sprintf(buf, "%s\n",
|
len = sprintf(buf, "%s\n",
|
||||||
(if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
|
(if_info->vlan_priority == BEISCSI_VLAN_DISABLE) ?
|
||||||
? "Disabled\n" : "Enabled\n");
|
"disable" : "enable");
|
||||||
break;
|
break;
|
||||||
case ISCSI_NET_PARAM_VLAN_ID:
|
case ISCSI_NET_PARAM_VLAN_ID:
|
||||||
if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
|
if (if_info->vlan_priority == BEISCSI_VLAN_DISABLE)
|
||||||
@@ -620,7 +620,7 @@ int be2iscsi_iface_get_param(struct iscsi_iface *iface,
|
|||||||
len = be2iscsi_get_if_param(phba, iface, param, buf);
|
len = be2iscsi_get_if_param(phba, iface, param, buf);
|
||||||
break;
|
break;
|
||||||
case ISCSI_NET_PARAM_IFACE_ENABLE:
|
case ISCSI_NET_PARAM_IFACE_ENABLE:
|
||||||
len = sprintf(buf, "enabled\n");
|
len = sprintf(buf, "enable\n");
|
||||||
break;
|
break;
|
||||||
case ISCSI_NET_PARAM_IPV4_GW:
|
case ISCSI_NET_PARAM_IPV4_GW:
|
||||||
memset(&gateway, 0, sizeof(gateway));
|
memset(&gateway, 0, sizeof(gateway));
|
||||||
|
|||||||
Reference in New Issue
Block a user