|
@@ -54,8 +54,9 @@ static void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha);
|
|
|
/*
|
|
|
* iSCSI template entry points
|
|
|
*/
|
|
|
-static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
|
|
|
- uint32_t enable, struct sockaddr *dst_addr);
|
|
|
+static int qla4xxx_tgt_dscvr(struct Scsi_Host *shost,
|
|
|
+ enum iscsi_tgt_dscvr type, uint32_t enable,
|
|
|
+ struct sockaddr *dst_addr);
|
|
|
static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
|
|
|
enum iscsi_param param, char *buf);
|
|
|
static int qla4xxx_sess_get_param(struct iscsi_cls_session *sess,
|
|
@@ -243,21 +244,15 @@ static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
|
|
|
return len;
|
|
|
}
|
|
|
|
|
|
-static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
|
|
|
- uint32_t enable, struct sockaddr *dst_addr)
|
|
|
+static int qla4xxx_tgt_dscvr(struct Scsi_Host *shost,
|
|
|
+ enum iscsi_tgt_dscvr type, uint32_t enable,
|
|
|
+ struct sockaddr *dst_addr)
|
|
|
{
|
|
|
struct scsi_qla_host *ha;
|
|
|
- struct Scsi_Host *shost;
|
|
|
struct sockaddr_in *addr;
|
|
|
struct sockaddr_in6 *addr6;
|
|
|
int ret = 0;
|
|
|
|
|
|
- shost = scsi_host_lookup(host_no);
|
|
|
- if (IS_ERR(shost)) {
|
|
|
- printk(KERN_ERR "Could not find host no %u\n", host_no);
|
|
|
- return -ENODEV;
|
|
|
- }
|
|
|
-
|
|
|
ha = (struct scsi_qla_host *) shost->hostdata;
|
|
|
|
|
|
switch (type) {
|
|
@@ -281,8 +276,6 @@ static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
|
|
|
default:
|
|
|
ret = -ENOSYS;
|
|
|
}
|
|
|
-
|
|
|
- scsi_host_put(shost);
|
|
|
return ret;
|
|
|
}
|
|
|
|