[SCSI] libiscsi: Add local_ipaddr parameter in iscsi_conn struct
Add local_ipaddr param and support get/set operations on it. Signed-off-by: Adheer Chandravanshi <adheer.chandravanshi@qlogic.com> Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
5af62f240b
commit
ae56ff4084
2 changed files with 7 additions and 0 deletions
|
@ -2945,6 +2945,7 @@ void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
|
||||||
free_pages((unsigned long) conn->data,
|
free_pages((unsigned long) conn->data,
|
||||||
get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
|
get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
|
||||||
kfree(conn->persistent_address);
|
kfree(conn->persistent_address);
|
||||||
|
kfree(conn->local_ipaddr);
|
||||||
kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
|
kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
|
||||||
sizeof(void*));
|
sizeof(void*));
|
||||||
if (session->leadconn == conn)
|
if (session->leadconn == conn)
|
||||||
|
@ -3269,6 +3270,8 @@ int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
|
||||||
sscanf(buf, "%d", &val);
|
sscanf(buf, "%d", &val);
|
||||||
session->discovery_sess = !!val;
|
session->discovery_sess = !!val;
|
||||||
break;
|
break;
|
||||||
|
case ISCSI_PARAM_LOCAL_IPADDR:
|
||||||
|
return iscsi_switch_str_param(&conn->local_ipaddr, buf);
|
||||||
default:
|
default:
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
@ -3542,6 +3545,9 @@ int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
|
||||||
case ISCSI_PARAM_TCP_RECV_WSF:
|
case ISCSI_PARAM_TCP_RECV_WSF:
|
||||||
len = sprintf(buf, "%u\n", conn->tcp_recv_wsf);
|
len = sprintf(buf, "%u\n", conn->tcp_recv_wsf);
|
||||||
break;
|
break;
|
||||||
|
case ISCSI_PARAM_LOCAL_IPADDR:
|
||||||
|
len = sprintf(buf, "%s\n", conn->local_ipaddr);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,6 +231,7 @@ struct iscsi_conn {
|
||||||
uint8_t ipv6_traffic_class;
|
uint8_t ipv6_traffic_class;
|
||||||
uint8_t ipv6_flow_label;
|
uint8_t ipv6_flow_label;
|
||||||
uint8_t is_fw_assigned_ipv6;
|
uint8_t is_fw_assigned_ipv6;
|
||||||
|
char *local_ipaddr;
|
||||||
|
|
||||||
/* MIB-statistics */
|
/* MIB-statistics */
|
||||||
uint64_t txdata_octets;
|
uint64_t txdata_octets;
|
||||||
|
|
Loading…
Add table
Reference in a new issue