[SCSI] iscsi_tcp: hook iscsi_tcp into iscsi_endpoint code
iscsi_tcp creates its ep in userspace using sockets because it is virtual, so we just check if we are sent a ep and fail if we are. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
Родитель
412eeafa0a
Коммит
06520edea0
|
@ -1838,17 +1838,17 @@ iscsi_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
|
|||
}
|
||||
|
||||
static struct iscsi_cls_session *
|
||||
iscsi_tcp_session_create(struct Scsi_Host *shost, uint16_t cmds_max,
|
||||
iscsi_tcp_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max,
|
||||
uint16_t qdepth, uint32_t initial_cmdsn,
|
||||
uint32_t *hostno)
|
||||
{
|
||||
struct iscsi_cls_session *cls_session;
|
||||
struct iscsi_session *session;
|
||||
struct Scsi_Host *shost;
|
||||
int cmd_i;
|
||||
|
||||
if (shost) {
|
||||
printk(KERN_ERR "iscsi_tcp: invalid shost %d.\n",
|
||||
shost->host_no);
|
||||
if (ep) {
|
||||
printk(KERN_ERR "iscsi_tcp: invalid ep %p.\n", ep);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче