Commit 3e5c28ad authored by Mike Christie's avatar Mike Christie Committed by James Bottomley

[SCSI] libiscsi: merge iscsi_mgmt_task and iscsi_cmd_task

There is no need to have the mgmt and cmd tasks separate
structs. It used to save a lot of memory when we overprealocated
memory for tasks, but the next patches will set up the
driver so in the future they can use a mempool or some other
common scsi command allocator and common tagging.
Signed-off-by: default avatarMike Christie <michaelc@cs.wisc.edu>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent 052d0144
...@@ -197,7 +197,7 @@ static int iscsi_prep_bidi_ahs(struct iscsi_cmd_task *ctask) ...@@ -197,7 +197,7 @@ static int iscsi_prep_bidi_ahs(struct iscsi_cmd_task *ctask)
/** /**
* iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
* @ctask: iscsi cmd task * @ctask: iscsi task
* *
* Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
* fields like dlength or final based on how much data it sends * fields like dlength or final based on how much data it sends
...@@ -300,31 +300,31 @@ static int iscsi_prep_scsi_cmd_pdu(struct iscsi_cmd_task *ctask) ...@@ -300,31 +300,31 @@ static int iscsi_prep_scsi_cmd_pdu(struct iscsi_cmd_task *ctask)
WARN_ON(hdrlength >= 256); WARN_ON(hdrlength >= 256);
hdr->hlength = hdrlength & 0xFF; hdr->hlength = hdrlength & 0xFF;
if (conn->session->tt->init_cmd_task && if (conn->session->tt->init_task &&
conn->session->tt->init_cmd_task(ctask)) conn->session->tt->init_task(ctask))
return -EIO; return -EIO;
ctask->state = ISCSI_TASK_RUNNING; ctask->state = ISCSI_TASK_RUNNING;
list_move_tail(&ctask->running, &conn->run_list); list_move_tail(&ctask->running, &conn->run_list);
conn->scsicmd_pdus_cnt++; conn->scsicmd_pdus_cnt++;
debug_scsi("iscsi prep [%s cid %d sc %p cdb 0x%x itt 0x%x " debug_scsi("iscsi prep [%s cid %d sc %p cdb 0x%x itt 0x%x len %d "
"len %d bidi_len %d cmdsn %d win %d]\n", "bidi_len %d cmdsn %d win %d]\n", scsi_bidi_cmnd(sc) ?
scsi_bidi_cmnd(sc) ? "bidirectional" : "bidirectional" : sc->sc_data_direction == DMA_TO_DEVICE ?
sc->sc_data_direction == DMA_TO_DEVICE ? "write" : "read", "write" : "read", conn->id, sc, sc->cmnd[0], ctask->itt,
conn->id, sc, sc->cmnd[0], ctask->itt, scsi_bufflen(sc),
scsi_bufflen(sc), scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0, scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
session->cmdsn, session->max_cmdsn - session->exp_cmdsn + 1); session->cmdsn, session->max_cmdsn - session->exp_cmdsn + 1);
return 0; return 0;
} }
/** /**
* iscsi_complete_command - return command back to scsi-ml * iscsi_complete_command - finish a task
* @ctask: iscsi cmd task * @ctask: iscsi cmd task
* *
* Must be called with session lock. * Must be called with session lock.
* This function returns the scsi command to scsi-ml and returns * This function returns the scsi command to scsi-ml or cleans
* the cmd task to the pool of available cmd tasks. * up mgmt tasks then returns the task to the pool.
*/ */
static void iscsi_complete_command(struct iscsi_cmd_task *ctask) static void iscsi_complete_command(struct iscsi_cmd_task *ctask)
{ {
...@@ -332,17 +332,34 @@ static void iscsi_complete_command(struct iscsi_cmd_task *ctask) ...@@ -332,17 +332,34 @@ static void iscsi_complete_command(struct iscsi_cmd_task *ctask)
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
struct scsi_cmnd *sc = ctask->sc; struct scsi_cmnd *sc = ctask->sc;
list_del_init(&ctask->running);
ctask->state = ISCSI_TASK_COMPLETED; ctask->state = ISCSI_TASK_COMPLETED;
ctask->sc = NULL; ctask->sc = NULL;
/* SCSI eh reuses commands to verify us */
sc->SCp.ptr = NULL;
if (conn->ctask == ctask) if (conn->ctask == ctask)
conn->ctask = NULL; conn->ctask = NULL;
list_del_init(&ctask->running); /*
* login ctask is preallocated so do not free
*/
if (conn->login_ctask == ctask)
return;
__kfifo_put(session->cmdpool.queue, (void*)&ctask, sizeof(void*)); __kfifo_put(session->cmdpool.queue, (void*)&ctask, sizeof(void*));
if (conn->ping_ctask == ctask)
conn->ping_ctask = NULL;
if (sc) {
ctask->sc = NULL;
/* SCSI eh reuses commands to verify us */
sc->SCp.ptr = NULL;
/*
* queue command may call this to free the task, but
* not have setup the sc callback
*/
if (sc->scsi_done) if (sc->scsi_done)
sc->scsi_done(sc); sc->scsi_done(sc);
}
} }
static void __iscsi_get_ctask(struct iscsi_cmd_task *ctask) static void __iscsi_get_ctask(struct iscsi_cmd_task *ctask)
...@@ -356,6 +373,16 @@ static void __iscsi_put_ctask(struct iscsi_cmd_task *ctask) ...@@ -356,6 +373,16 @@ static void __iscsi_put_ctask(struct iscsi_cmd_task *ctask)
iscsi_complete_command(ctask); iscsi_complete_command(ctask);
} }
void iscsi_put_ctask(struct iscsi_cmd_task *ctask)
{
struct iscsi_session *session = ctask->conn->session;
spin_lock_bh(&session->lock);
__iscsi_put_ctask(ctask);
spin_unlock_bh(&session->lock);
}
EXPORT_SYMBOL_GPL(iscsi_put_ctask);
/* /*
* session lock must be held * session lock must be held
*/ */
...@@ -375,47 +402,28 @@ static void fail_command(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask, ...@@ -375,47 +402,28 @@ static void fail_command(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask,
*/ */
conn->session->queued_cmdsn--; conn->session->queued_cmdsn--;
else else
conn->session->tt->cleanup_cmd_task(conn, ctask); conn->session->tt->cleanup_task(conn, ctask);
sc->result = err; sc->result = err;
if (!scsi_bidi_cmnd(sc)) if (!scsi_bidi_cmnd(sc))
scsi_set_resid(sc, scsi_bufflen(sc)); scsi_set_resid(sc, scsi_bufflen(sc));
else { else {
scsi_out(sc)->resid = scsi_out(sc)->length; scsi_out(sc)->resid = scsi_out(sc)->length;
scsi_in(sc)->resid = scsi_in(sc)->length; scsi_in(sc)->resid = scsi_in(sc)->length;
} }
if (conn->ctask == ctask) if (conn->ctask == ctask)
conn->ctask = NULL; conn->ctask = NULL;
/* release ref from queuecommand */ /* release ref from queuecommand */
__iscsi_put_ctask(ctask); __iscsi_put_ctask(ctask);
} }
/** static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
* iscsi_free_mgmt_task - return mgmt task back to pool struct iscsi_cmd_task *ctask)
* @conn: iscsi connection
* @mtask: mtask
*
* Must be called with session lock.
*/
void iscsi_free_mgmt_task(struct iscsi_conn *conn,
struct iscsi_mgmt_task *mtask)
{
list_del_init(&mtask->running);
if (conn->login_mtask == mtask)
return;
if (conn->ping_mtask == mtask)
conn->ping_mtask = NULL;
__kfifo_put(conn->session->mgmtpool.queue,
(void*)&mtask, sizeof(void*));
}
EXPORT_SYMBOL_GPL(iscsi_free_mgmt_task);
static int iscsi_prep_mtask(struct iscsi_conn *conn,
struct iscsi_mgmt_task *mtask)
{ {
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
struct iscsi_hdr *hdr = mtask->hdr; struct iscsi_hdr *hdr = (struct iscsi_hdr *)ctask->hdr;
struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr; struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
if (conn->session->state == ISCSI_STATE_LOGGING_OUT) if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
...@@ -429,7 +437,7 @@ static int iscsi_prep_mtask(struct iscsi_conn *conn, ...@@ -429,7 +437,7 @@ static int iscsi_prep_mtask(struct iscsi_conn *conn,
*/ */
nop->cmdsn = cpu_to_be32(session->cmdsn); nop->cmdsn = cpu_to_be32(session->cmdsn);
if (hdr->itt != RESERVED_ITT) { if (hdr->itt != RESERVED_ITT) {
hdr->itt = build_itt(mtask->itt, session->age); hdr->itt = build_itt(ctask->itt, session->age);
/* /*
* TODO: We always use immediate, so we never hit this. * TODO: We always use immediate, so we never hit this.
* If we start to send tmfs or nops as non-immediate then * If we start to send tmfs or nops as non-immediate then
...@@ -442,25 +450,25 @@ static int iscsi_prep_mtask(struct iscsi_conn *conn, ...@@ -442,25 +450,25 @@ static int iscsi_prep_mtask(struct iscsi_conn *conn,
} }
} }
if (session->tt->init_mgmt_task) if (session->tt->init_task)
session->tt->init_mgmt_task(conn, mtask); session->tt->init_task(ctask);
if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT) if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
session->state = ISCSI_STATE_LOGGING_OUT; session->state = ISCSI_STATE_LOGGING_OUT;
list_move_tail(&mtask->running, &conn->mgmt_run_list); list_move_tail(&ctask->running, &conn->mgmt_run_list);
debug_scsi("mgmtpdu [op 0x%x hdr->itt 0x%x datalen %d]\n", debug_scsi("mgmtpdu [op 0x%x hdr->itt 0x%x datalen %d]\n",
hdr->opcode & ISCSI_OPCODE_MASK, hdr->itt, hdr->opcode & ISCSI_OPCODE_MASK, hdr->itt,
mtask->data_count); ctask->data_count);
return 0; return 0;
} }
static struct iscsi_mgmt_task * static struct iscsi_cmd_task *
__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
char *data, uint32_t data_size) char *data, uint32_t data_size)
{ {
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
struct iscsi_mgmt_task *mtask; struct iscsi_cmd_task *ctask;
if (session->state == ISCSI_STATE_TERMINATE) if (session->state == ISCSI_STATE_TERMINATE)
return NULL; return NULL;
...@@ -470,48 +478,56 @@ __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, ...@@ -470,48 +478,56 @@ __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
/* /*
* Login and Text are sent serially, in * Login and Text are sent serially, in
* request-followed-by-response sequence. * request-followed-by-response sequence.
* Same mtask can be used. Same ITT must be used. * Same task can be used. Same ITT must be used.
* Note that login_mtask is preallocated at conn_create(). * Note that login_task is preallocated at conn_create().
*/ */
mtask = conn->login_mtask; ctask = conn->login_ctask;
else { else {
BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE); BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED); BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
if (!__kfifo_get(session->mgmtpool.queue, if (!__kfifo_get(session->cmdpool.queue,
(void*)&mtask, sizeof(void*))) (void*)&ctask, sizeof(void*)))
return NULL; return NULL;
if ((hdr->opcode == (ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE)) && if ((hdr->opcode == (ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE)) &&
hdr->ttt == RESERVED_ITT) { hdr->ttt == RESERVED_ITT) {
conn->ping_mtask = mtask; conn->ping_ctask = ctask;
conn->last_ping = jiffies; conn->last_ping = jiffies;
} }
} }
/*
* released in complete pdu for task we expect a response for, and
* released by the lld when it has transmitted the task for
* pdus we do not expect a response for.
*/
atomic_set(&ctask->refcount, 1);
ctask->conn = conn;
ctask->sc = NULL;
if (data_size) { if (data_size) {
memcpy(mtask->data, data, data_size); memcpy(ctask->data, data, data_size);
mtask->data_count = data_size; ctask->data_count = data_size;
} else } else
mtask->data_count = 0; ctask->data_count = 0;
memcpy(mtask->hdr, hdr, sizeof(struct iscsi_hdr)); memcpy(ctask->hdr, hdr, sizeof(struct iscsi_hdr));
INIT_LIST_HEAD(&mtask->running); INIT_LIST_HEAD(&ctask->running);
list_add_tail(&mtask->running, &conn->mgmtqueue); list_add_tail(&ctask->running, &conn->mgmtqueue);
if (session->tt->caps & CAP_DATA_PATH_OFFLOAD) { if (session->tt->caps & CAP_DATA_PATH_OFFLOAD) {
if (iscsi_prep_mtask(conn, mtask)) { if (iscsi_prep_mgmt_task(conn, ctask)) {
iscsi_free_mgmt_task(conn, mtask); __iscsi_put_ctask(ctask);
return NULL; return NULL;
} }
if (session->tt->xmit_mgmt_task(conn, mtask)) if (session->tt->xmit_task(ctask))
mtask = NULL; ctask = NULL;
} else } else
scsi_queue_work(conn->session->host, &conn->xmitwork); scsi_queue_work(conn->session->host, &conn->xmitwork);
return mtask; return ctask;
} }
int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr, int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
...@@ -538,7 +554,7 @@ EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu); ...@@ -538,7 +554,7 @@ EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
* @datalen: len of buffer * @datalen: len of buffer
* *
* iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
* then completes the command and task. * then completes the command and ctask.
**/ **/
static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr, static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
struct iscsi_cmd_task *ctask, char *data, struct iscsi_cmd_task *ctask, char *data,
...@@ -634,9 +650,9 @@ static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr) ...@@ -634,9 +650,9 @@ static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr) static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
{ {
struct iscsi_nopout hdr; struct iscsi_nopout hdr;
struct iscsi_mgmt_task *mtask; struct iscsi_cmd_task *ctask;
if (!rhdr && conn->ping_mtask) if (!rhdr && conn->ping_ctask)
return; return;
memset(&hdr, 0, sizeof(struct iscsi_nopout)); memset(&hdr, 0, sizeof(struct iscsi_nopout));
...@@ -650,8 +666,8 @@ static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr) ...@@ -650,8 +666,8 @@ static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
} else } else
hdr.ttt = RESERVED_ITT; hdr.ttt = RESERVED_ITT;
mtask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0); ctask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
if (!mtask) if (!ctask)
iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n"); iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
} }
...@@ -697,7 +713,6 @@ static int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, ...@@ -697,7 +713,6 @@ static int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0; int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
struct iscsi_cmd_task *ctask; struct iscsi_cmd_task *ctask;
struct iscsi_mgmt_task *mtask;
uint32_t itt; uint32_t itt;
conn->last_recv = jiffies; conn->last_recv = jiffies;
...@@ -710,122 +725,118 @@ static int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, ...@@ -710,122 +725,118 @@ static int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
else else
itt = ~0U; itt = ~0U;
if (itt < session->cmds_max) { debug_scsi("[op 0x%x cid %d itt 0x%x len %d]\n",
ctask = session->cmds[itt]; opcode, conn->id, itt, datalen);
debug_scsi("cmdrsp [op 0x%x cid %d itt 0x%x len %d]\n", if (itt == ~0U) {
opcode, conn->id, ctask->itt, datalen); iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
switch(opcode) {
case ISCSI_OP_NOOP_IN:
if (datalen) {
rc = ISCSI_ERR_PROTO;
break;
}
if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
break;
iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
break;
case ISCSI_OP_REJECT:
rc = iscsi_handle_reject(conn, hdr, data, datalen);
break;
case ISCSI_OP_ASYNC_EVENT:
conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
rc = ISCSI_ERR_CONN_FAILED;
break;
default:
rc = ISCSI_ERR_BAD_OPCODE;
break;
}
goto out;
}
ctask = session->cmds[itt];
switch(opcode) { switch(opcode) {
case ISCSI_OP_SCSI_CMD_RSP: case ISCSI_OP_SCSI_CMD_RSP:
if (!ctask->sc) {
rc = ISCSI_ERR_NO_SCSI_CMD;
break;
}
BUG_ON((void*)ctask != ctask->sc->SCp.ptr); BUG_ON((void*)ctask != ctask->sc->SCp.ptr);
iscsi_scsi_cmd_rsp(conn, hdr, ctask, data, iscsi_scsi_cmd_rsp(conn, hdr, ctask, data, datalen);
datalen);
break; break;
case ISCSI_OP_SCSI_DATA_IN: case ISCSI_OP_SCSI_DATA_IN:
if (!ctask->sc) {
rc = ISCSI_ERR_NO_SCSI_CMD;
break;
}
BUG_ON((void*)ctask != ctask->sc->SCp.ptr); BUG_ON((void*)ctask != ctask->sc->SCp.ptr);
if (hdr->flags & ISCSI_FLAG_DATA_STATUS) { if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
conn->scsirsp_pdus_cnt++; conn->scsirsp_pdus_cnt++;
iscsi_update_cmdsn(session,
(struct iscsi_nopin*) hdr);
__iscsi_put_ctask(ctask); __iscsi_put_ctask(ctask);
} }
break; break;
case ISCSI_OP_R2T: case ISCSI_OP_R2T:
/* LLD handles this for now */ /* LLD handles this for now */
break; break;
default:
rc = ISCSI_ERR_BAD_OPCODE;
break;
}
} else if (itt >= ISCSI_MGMT_ITT_OFFSET &&
itt < ISCSI_MGMT_ITT_OFFSET + session->mgmtpool_max) {
mtask = session->mgmt_cmds[itt - ISCSI_MGMT_ITT_OFFSET];
debug_scsi("immrsp [op 0x%x cid %d itt 0x%x len %d]\n",
opcode, conn->id, mtask->itt, datalen);
iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
switch(opcode) {
case ISCSI_OP_LOGOUT_RSP: case ISCSI_OP_LOGOUT_RSP:
iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
if (datalen) { if (datalen) {
rc = ISCSI_ERR_PROTO; rc = ISCSI_ERR_PROTO;
break; break;
} }
conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
/* fall through */ goto recv_pdu;
case ISCSI_OP_LOGIN_RSP: case ISCSI_OP_LOGIN_RSP:
case ISCSI_OP_TEXT_RSP: case ISCSI_OP_TEXT_RSP:
iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
/* /*
* login related PDU's exp_statsn is handled in * login related PDU's exp_statsn is handled in
* userspace * userspace
*/ */
if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen)) goto recv_pdu;
rc = ISCSI_ERR_CONN_FAILED;
iscsi_free_mgmt_task(conn, mtask);
break;
case ISCSI_OP_SCSI_TMFUNC_RSP: case ISCSI_OP_SCSI_TMFUNC_RSP:
iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
if (datalen) { if (datalen) {
rc = ISCSI_ERR_PROTO; rc = ISCSI_ERR_PROTO;
break; break;
} }
iscsi_tmf_rsp(conn, hdr); iscsi_tmf_rsp(conn, hdr);
iscsi_free_mgmt_task(conn, mtask); __iscsi_put_ctask(ctask);
break; break;
case ISCSI_OP_NOOP_IN: case ISCSI_OP_NOOP_IN:
if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
datalen) { if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
rc = ISCSI_ERR_PROTO; rc = ISCSI_ERR_PROTO;
break; break;
} }
conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
if (conn->ping_mtask != mtask) { if (conn->ping_ctask != ctask)
/* /*
* If this is not in response to one of our * If this is not in response to one of our
* nops then it must be from userspace. * nops then it must be from userspace.
*/ */
if (iscsi_recv_pdu(conn->cls_conn, hdr, data, goto recv_pdu;
datalen)) __iscsi_put_ctask(ctask);
rc = ISCSI_ERR_CONN_FAILED;
} else
mod_timer(&conn->transport_timer,
jiffies + conn->recv_timeout);
iscsi_free_mgmt_task(conn, mtask);
break; break;
default: default:
rc = ISCSI_ERR_BAD_OPCODE; rc = ISCSI_ERR_BAD_OPCODE;
break; break;
} }
} else if (itt == ~0U) {
iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
switch(opcode) { out:
case ISCSI_OP_NOOP_IN: return rc;
if (datalen) { recv_pdu:
rc = ISCSI_ERR_PROTO;
break;
}
if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
break;
iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
break;
case ISCSI_OP_REJECT:
rc = iscsi_handle_reject(conn, hdr, data, datalen);
break;
case ISCSI_OP_ASYNC_EVENT:
conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen)) if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
rc = ISCSI_ERR_CONN_FAILED; rc = ISCSI_ERR_CONN_FAILED;
break; __iscsi_put_ctask(ctask);
default:
rc = ISCSI_ERR_BAD_OPCODE;
break;
}
} else
rc = ISCSI_ERR_BAD_ITT;
return rc; return rc;
} }
...@@ -845,6 +856,7 @@ int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt) ...@@ -845,6 +856,7 @@ int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
{ {
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
struct iscsi_cmd_task *ctask; struct iscsi_cmd_task *ctask;
uint32_t i;
if (itt == RESERVED_ITT) if (itt == RESERVED_ITT)
return 0; return 0;
...@@ -858,25 +870,22 @@ int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt) ...@@ -858,25 +870,22 @@ int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
return ISCSI_ERR_BAD_ITT; return ISCSI_ERR_BAD_ITT;
} }
if (itt < session->cmds_max) { i = get_itt(itt);
ctask = session->cmds[itt]; if (i >= session->cmds_max) {
iscsi_conn_printk(KERN_ERR, conn,
if (!ctask->sc) { "received invalid itt index %u (max cmds "
iscsi_conn_printk(KERN_INFO, conn, "dropping ctask " "%u.\n", i, session->cmds_max);
"with itt 0x%x\n", ctask->itt); return ISCSI_ERR_BAD_ITT;
/* force drop */
return ISCSI_ERR_NO_SCSI_CMD;
} }
if (ctask->sc->SCp.phase != session->age) { ctask = session->cmds[i];
if (ctask->sc && ctask->sc->SCp.phase != session->age) {
iscsi_conn_printk(KERN_ERR, conn, iscsi_conn_printk(KERN_ERR, conn,
"iscsi: ctask's session age %d, " "iscsi: ctask's session age %d, "
"expected %d\n", ctask->sc->SCp.phase, "expected %d\n", ctask->sc->SCp.phase,
session->age); session->age);
return ISCSI_ERR_SESSION_FAILED; return ISCSI_ERR_SESSION_FAILED;
} }
}
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(iscsi_verify_itt); EXPORT_SYMBOL_GPL(iscsi_verify_itt);
...@@ -929,20 +938,6 @@ void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err) ...@@ -929,20 +938,6 @@ void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
} }
EXPORT_SYMBOL_GPL(iscsi_conn_failure); EXPORT_SYMBOL_GPL(iscsi_conn_failure);
static int iscsi_xmit_mtask(struct iscsi_conn *conn)
{
int rc;
spin_unlock_bh(&conn->session->lock);
rc = conn->session->tt->xmit_mgmt_task(conn, conn->mtask);
spin_lock_bh(&conn->session->lock);
if (rc)
return rc;
/* done with this in-progress mtask */
conn->mtask = NULL;
return 0;
}
static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn) static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
{ {
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
...@@ -967,7 +962,7 @@ static int iscsi_xmit_ctask(struct iscsi_conn *conn) ...@@ -967,7 +962,7 @@ static int iscsi_xmit_ctask(struct iscsi_conn *conn)
__iscsi_get_ctask(ctask); __iscsi_get_ctask(ctask);
spin_unlock_bh(&conn->session->lock); spin_unlock_bh(&conn->session->lock);
rc = conn->session->tt->xmit_cmd_task(conn, ctask); rc = conn->session->tt->xmit_task(ctask);
spin_lock_bh(&conn->session->lock); spin_lock_bh(&conn->session->lock);
__iscsi_put_ctask(ctask); __iscsi_put_ctask(ctask);
if (!rc) if (!rc)
...@@ -1019,12 +1014,6 @@ static int iscsi_data_xmit(struct iscsi_conn *conn) ...@@ -1019,12 +1014,6 @@ static int iscsi_data_xmit(struct iscsi_conn *conn)
goto again; goto again;
} }
if (conn->mtask) {
rc = iscsi_xmit_mtask(conn);
if (rc)
goto again;
}
/* /*
* process mgmt pdus like nops before commands since we should * process mgmt pdus like nops before commands since we should
* only have one nop-out as a ping from us and targets should not * only have one nop-out as a ping from us and targets should not
...@@ -1032,14 +1021,14 @@ static int iscsi_data_xmit(struct iscsi_conn *conn) ...@@ -1032,14 +1021,14 @@ static int iscsi_data_xmit(struct iscsi_conn *conn)
*/ */
check_mgmt: check_mgmt:
while (!list_empty(&conn->mgmtqueue)) { while (!list_empty(&conn->mgmtqueue)) {
conn->mtask = list_entry(conn->mgmtqueue.next, conn->ctask = list_entry(conn->mgmtqueue.next,
struct iscsi_mgmt_task, running); struct iscsi_cmd_task, running);
if (iscsi_prep_mtask(conn, conn->mtask)) { if (iscsi_prep_mgmt_task(conn, conn->ctask)) {
iscsi_free_mgmt_task(conn, conn->mtask); __iscsi_put_ctask(conn->ctask);
conn->mtask = NULL; conn->ctask = NULL;
continue; continue;
} }
rc = iscsi_xmit_mtask(conn); rc = iscsi_xmit_ctask(conn);
if (rc) if (rc)
goto again; goto again;
} }
...@@ -1224,7 +1213,7 @@ int iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *)) ...@@ -1224,7 +1213,7 @@ int iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
iscsi_complete_command(ctask); iscsi_complete_command(ctask);
goto fault; goto fault;
} }
if (session->tt->xmit_cmd_task(conn, ctask)) { if (session->tt->xmit_task(ctask)) {
sc->scsi_done = NULL; sc->scsi_done = NULL;
iscsi_complete_command(ctask); iscsi_complete_command(ctask);
reason = FAILURE_SESSION_NOT_READY; reason = FAILURE_SESSION_NOT_READY;
...@@ -1347,16 +1336,16 @@ static void iscsi_tmf_timedout(unsigned long data) ...@@ -1347,16 +1336,16 @@ static void iscsi_tmf_timedout(unsigned long data)
spin_unlock(&session->lock); spin_unlock(&session->lock);
} }
static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn, static int iscsi_exec_ctask_mgmt_fn(struct iscsi_conn *conn,
struct iscsi_tm *hdr, int age, struct iscsi_tm *hdr, int age,
int timeout) int timeout)
{ {
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
struct iscsi_mgmt_task *mtask; struct iscsi_cmd_task *ctask;
mtask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr, ctask = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
NULL, 0); NULL, 0);
if (!mtask) { if (!ctask) {
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
spin_lock_bh(&session->lock); spin_lock_bh(&session->lock);
...@@ -1390,7 +1379,7 @@ static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn, ...@@ -1390,7 +1379,7 @@ static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
mutex_lock(&session->eh_mutex); mutex_lock(&session->eh_mutex);
spin_lock_bh(&session->lock); spin_lock_bh(&session->lock);
/* if the session drops it will clean up the mtask */ /* if the session drops it will clean up the ctask */
if (age != session->age || if (age != session->age ||
session->state != ISCSI_STATE_LOGGED_IN) session->state != ISCSI_STATE_LOGGED_IN)
return -ENOTCONN; return -ENOTCONN;
...@@ -1497,7 +1486,7 @@ static enum scsi_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *scmd) ...@@ -1497,7 +1486,7 @@ static enum scsi_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *scmd)
jiffies)) jiffies))
rc = EH_RESET_TIMER; rc = EH_RESET_TIMER;
/* if in the middle of checking the transport then give us more time */ /* if in the middle of checking the transport then give us more time */
if (conn->ping_mtask) if (conn->ping_ctask)
rc = EH_RESET_TIMER; rc = EH_RESET_TIMER;
done: done:
spin_unlock(&session->lock); spin_unlock(&session->lock);
...@@ -1521,7 +1510,7 @@ static void iscsi_check_transport_timeouts(unsigned long data) ...@@ -1521,7 +1510,7 @@ static void iscsi_check_transport_timeouts(unsigned long data)
recv_timeout *= HZ; recv_timeout *= HZ;
last_recv = conn->last_recv; last_recv = conn->last_recv;
if (conn->ping_mtask && if (conn->ping_ctask &&
time_before_eq(conn->last_ping + (conn->ping_timeout * HZ), time_before_eq(conn->last_ping + (conn->ping_timeout * HZ),
jiffies)) { jiffies)) {
iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs " iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
...@@ -1547,7 +1536,7 @@ static void iscsi_check_transport_timeouts(unsigned long data) ...@@ -1547,7 +1536,7 @@ static void iscsi_check_transport_timeouts(unsigned long data)
spin_unlock(&session->lock); spin_unlock(&session->lock);
} }
static void iscsi_prep_abort_task_pdu(struct iscsi_cmd_task *ctask, static void iscsi_prep_abort_ctask_pdu(struct iscsi_cmd_task *ctask,
struct iscsi_tm *hdr) struct iscsi_tm *hdr)
{ {
memset(hdr, 0, sizeof(*hdr)); memset(hdr, 0, sizeof(*hdr));
...@@ -1619,9 +1608,9 @@ int iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -1619,9 +1608,9 @@ int iscsi_eh_abort(struct scsi_cmnd *sc)
conn->tmf_state = TMF_QUEUED; conn->tmf_state = TMF_QUEUED;
hdr = &conn->tmhdr; hdr = &conn->tmhdr;
iscsi_prep_abort_task_pdu(ctask, hdr); iscsi_prep_abort_ctask_pdu(ctask, hdr);
if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) { if (iscsi_exec_ctask_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
rc = FAILED; rc = FAILED;
goto failed; goto failed;
} }
...@@ -1631,7 +1620,7 @@ int iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -1631,7 +1620,7 @@ int iscsi_eh_abort(struct scsi_cmnd *sc)
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
iscsi_suspend_tx(conn); iscsi_suspend_tx(conn);
/* /*
* clean up task if aborted. grab the recv lock as a writer * clean up ctask if aborted. grab the recv lock as a writer
*/ */
write_lock_bh(conn->recv_lock); write_lock_bh(conn->recv_lock);
spin_lock(&session->lock); spin_lock(&session->lock);
...@@ -1716,7 +1705,7 @@ int iscsi_eh_device_reset(struct scsi_cmnd *sc) ...@@ -1716,7 +1705,7 @@ int iscsi_eh_device_reset(struct scsi_cmnd *sc)
hdr = &conn->tmhdr; hdr = &conn->tmhdr;
iscsi_prep_lun_reset_pdu(sc, hdr); iscsi_prep_lun_reset_pdu(sc, hdr);
if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age, if (iscsi_exec_ctask_mgmt_fn(conn, hdr, session->age,
session->lu_reset_timeout)) { session->lu_reset_timeout)) {
rc = FAILED; rc = FAILED;
goto unlock; goto unlock;
...@@ -1897,8 +1886,7 @@ EXPORT_SYMBOL_GPL(iscsi_host_free); ...@@ -1897,8 +1886,7 @@ EXPORT_SYMBOL_GPL(iscsi_host_free);
* @iscsit: iscsi transport template * @iscsit: iscsi transport template
* @shost: scsi host * @shost: scsi host
* @cmds_max: session can queue * @cmds_max: session can queue
* @cmd_task_size: LLD ctask private data size * @cmd_ctask_size: LLD ctask private data size
* @mgmt_task_size: LLD mtask private data size
* @initial_cmdsn: initial CmdSN * @initial_cmdsn: initial CmdSN
* *
* This can be used by software iscsi_transports that allocate * This can be used by software iscsi_transports that allocate
...@@ -1906,22 +1894,26 @@ EXPORT_SYMBOL_GPL(iscsi_host_free); ...@@ -1906,22 +1894,26 @@ EXPORT_SYMBOL_GPL(iscsi_host_free);
*/ */
struct iscsi_cls_session * struct iscsi_cls_session *
iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost, iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
uint16_t cmds_max, int cmd_task_size, int mgmt_task_size, uint16_t scsi_cmds_max, int cmd_ctask_size,
uint32_t initial_cmdsn) uint32_t initial_cmdsn)
{ {
struct iscsi_session *session; struct iscsi_session *session;
struct iscsi_cls_session *cls_session; struct iscsi_cls_session *cls_session;
int cmd_i; int cmd_i, cmds_max;
if (!is_power_of_2(cmds_max) || cmds_max >= ISCSI_MGMT_ITT_OFFSET || /*
cmds_max < 2) { * The iscsi layer needs some ctasks for nop handling and tmfs.
if (cmds_max != 0) */
if (scsi_cmds_max < 1)
scsi_cmds_max = ISCSI_MGMT_CMDS_MAX;
if ((scsi_cmds_max + ISCSI_MGMT_CMDS_MAX) >= ISCSI_MGMT_ITT_OFFSET) {
printk(KERN_ERR "iscsi: invalid can_queue of %d. " printk(KERN_ERR "iscsi: invalid can_queue of %d. "
"can_queue must be a power of 2 and between " "can_queue must be less than %d.\n",
"2 and %d - setting to %d.\n", cmds_max, scsi_cmds_max,
ISCSI_MGMT_ITT_OFFSET, ISCSI_DEF_XMIT_CMDS_MAX); ISCSI_MGMT_ITT_OFFSET - ISCSI_MGMT_CMDS_MAX);
cmds_max = ISCSI_DEF_XMIT_CMDS_MAX; scsi_cmds_max = ISCSI_DEF_XMIT_CMDS_MAX;
} }
cmds_max = roundup_pow_of_two(scsi_cmds_max + ISCSI_MGMT_CMDS_MAX);
cls_session = iscsi_alloc_session(shost, iscsit, cls_session = iscsi_alloc_session(shost, iscsit,
sizeof(struct iscsi_session)); sizeof(struct iscsi_session));
...@@ -1934,7 +1926,7 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost, ...@@ -1934,7 +1926,7 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
session->fast_abort = 1; session->fast_abort = 1;
session->lu_reset_timeout = 15; session->lu_reset_timeout = 15;
session->abort_timeout = 10; session->abort_timeout = 10;
session->mgmtpool_max = ISCSI_MGMT_CMDS_MAX; session->scsi_cmds_max = scsi_cmds_max;
session->cmds_max = cmds_max; session->cmds_max = cmds_max;
session->queued_cmdsn = session->cmdsn = initial_cmdsn; session->queued_cmdsn = session->cmdsn = initial_cmdsn;
session->exp_cmdsn = initial_cmdsn + 1; session->exp_cmdsn = initial_cmdsn + 1;
...@@ -1947,36 +1939,19 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost, ...@@ -1947,36 +1939,19 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
/* initialize SCSI PDU commands pool */ /* initialize SCSI PDU commands pool */
if (iscsi_pool_init(&session->cmdpool, session->cmds_max, if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
(void***)&session->cmds, (void***)&session->cmds,
cmd_task_size + sizeof(struct iscsi_cmd_task))) cmd_ctask_size + sizeof(struct iscsi_cmd_task)))
goto cmdpool_alloc_fail; goto cmdpool_alloc_fail;
/* pre-format cmds pool with ITT */ /* pre-format cmds pool with ITT */
for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) { for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
struct iscsi_cmd_task *ctask = session->cmds[cmd_i]; struct iscsi_cmd_task *ctask = session->cmds[cmd_i];
if (cmd_task_size) if (cmd_ctask_size)
ctask->dd_data = &ctask[1]; ctask->dd_data = &ctask[1];
ctask->itt = cmd_i; ctask->itt = cmd_i;
INIT_LIST_HEAD(&ctask->running); INIT_LIST_HEAD(&ctask->running);
} }
/* initialize immediate command pool */
if (iscsi_pool_init(&session->mgmtpool, session->mgmtpool_max,
(void***)&session->mgmt_cmds,
mgmt_task_size + sizeof(struct iscsi_mgmt_task)))
goto mgmtpool_alloc_fail;
/* pre-format immediate cmds pool with ITT */
for (cmd_i = 0; cmd_i < session->mgmtpool_max; cmd_i++) {
struct iscsi_mgmt_task *mtask = session->mgmt_cmds[cmd_i];
if (mgmt_task_size)
mtask->dd_data = &mtask[1];
mtask->itt = ISCSI_MGMT_ITT_OFFSET + cmd_i;
INIT_LIST_HEAD(&mtask->running);
}
if (!try_module_get(iscsit->owner)) if (!try_module_get(iscsit->owner))
goto module_get_fail; goto module_get_fail;
...@@ -1987,8 +1962,6 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost, ...@@ -1987,8 +1962,6 @@ iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
cls_session_fail: cls_session_fail:
module_put(iscsit->owner); module_put(iscsit->owner);
module_get_fail: module_get_fail:
iscsi_pool_free(&session->mgmtpool);
mgmtpool_alloc_fail:
iscsi_pool_free(&session->cmdpool); iscsi_pool_free(&session->cmdpool);
cmdpool_alloc_fail: cmdpool_alloc_fail:
iscsi_free_session(cls_session); iscsi_free_session(cls_session);
...@@ -2008,7 +1981,6 @@ void iscsi_session_teardown(struct iscsi_cls_session *cls_session) ...@@ -2008,7 +1981,6 @@ void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
struct iscsi_session *session = cls_session->dd_data; struct iscsi_session *session = cls_session->dd_data;
struct module *owner = cls_session->transport->owner; struct module *owner = cls_session->transport->owner;
iscsi_pool_free(&session->mgmtpool);
iscsi_pool_free(&session->cmdpool); iscsi_pool_free(&session->cmdpool);
kfree(session->password); kfree(session->password);
...@@ -2063,30 +2035,30 @@ iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size, ...@@ -2063,30 +2035,30 @@ iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
INIT_LIST_HEAD(&conn->requeue); INIT_LIST_HEAD(&conn->requeue);
INIT_WORK(&conn->xmitwork, iscsi_xmitworker); INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
/* allocate login_mtask used for the login/text sequences */ /* allocate login_ctask used for the login/text sequences */
spin_lock_bh(&session->lock); spin_lock_bh(&session->lock);
if (!__kfifo_get(session->mgmtpool.queue, if (!__kfifo_get(session->cmdpool.queue,
(void*)&conn->login_mtask, (void*)&conn->login_ctask,
sizeof(void*))) { sizeof(void*))) {
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
goto login_mtask_alloc_fail; goto login_ctask_alloc_fail;
} }
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
data = kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN, GFP_KERNEL); data = kmalloc(ISCSI_DEF_MAX_RECV_SEG_LEN, GFP_KERNEL);
if (!data) if (!data)
goto login_mtask_data_alloc_fail; goto login_ctask_data_alloc_fail;
conn->login_mtask->data = conn->data = data; conn->login_ctask->data = conn->data = data;
init_timer(&conn->tmf_timer); init_timer(&conn->tmf_timer);
init_waitqueue_head(&conn->ehwait); init_waitqueue_head(&conn->ehwait);
return cls_conn; return cls_conn;
login_mtask_data_alloc_fail: login_ctask_data_alloc_fail:
__kfifo_put(session->mgmtpool.queue, (void*)&conn->login_mtask, __kfifo_put(session->cmdpool.queue, (void*)&conn->login_ctask,
sizeof(void*)); sizeof(void*));
login_mtask_alloc_fail: login_ctask_alloc_fail:
iscsi_destroy_conn(cls_conn); iscsi_destroy_conn(cls_conn);
return NULL; return NULL;
} }
...@@ -2146,7 +2118,7 @@ void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn) ...@@ -2146,7 +2118,7 @@ void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
spin_lock_bh(&session->lock); spin_lock_bh(&session->lock);
kfree(conn->data); kfree(conn->data);
kfree(conn->persistent_address); kfree(conn->persistent_address);
__kfifo_put(session->mgmtpool.queue, (void*)&conn->login_mtask, __kfifo_put(session->cmdpool.queue, (void*)&conn->login_ctask,
sizeof(void*)); sizeof(void*));
if (session->leadconn == conn) if (session->leadconn == conn)
session->leadconn = NULL; session->leadconn = NULL;
...@@ -2227,21 +2199,23 @@ EXPORT_SYMBOL_GPL(iscsi_conn_start); ...@@ -2227,21 +2199,23 @@ EXPORT_SYMBOL_GPL(iscsi_conn_start);
static void static void
flush_control_queues(struct iscsi_session *session, struct iscsi_conn *conn) flush_control_queues(struct iscsi_session *session, struct iscsi_conn *conn)
{ {
struct iscsi_mgmt_task *mtask, *tmp; struct iscsi_cmd_task *ctask, *tmp;
/* handle pending */ /* handle pending */
list_for_each_entry_safe(mtask, tmp, &conn->mgmtqueue, running) { list_for_each_entry_safe(ctask, tmp, &conn->mgmtqueue, running) {
debug_scsi("flushing pending mgmt task itt 0x%x\n", mtask->itt); debug_scsi("flushing pending mgmt ctask itt 0x%x\n", ctask->itt);
iscsi_free_mgmt_task(conn, mtask); /* release ref from prep ctask */
__iscsi_put_ctask(ctask);
} }
/* handle running */ /* handle running */
list_for_each_entry_safe(mtask, tmp, &conn->mgmt_run_list, running) { list_for_each_entry_safe(ctask, tmp, &conn->mgmt_run_list, running) {
debug_scsi("flushing running mgmt task itt 0x%x\n", mtask->itt); debug_scsi("flushing running mgmt ctask itt 0x%x\n", ctask->itt);
iscsi_free_mgmt_task(conn, mtask); /* release ref from prep ctask */
__iscsi_put_ctask(ctask);
} }
conn->mtask = NULL; conn->ctask = NULL;
} }
static void iscsi_start_session_recovery(struct iscsi_session *session, static void iscsi_start_session_recovery(struct iscsi_session *session,
...@@ -2272,7 +2246,7 @@ static void iscsi_start_session_recovery(struct iscsi_session *session, ...@@ -2272,7 +2246,7 @@ static void iscsi_start_session_recovery(struct iscsi_session *session,
/* /*
* When this is called for the in_login state, we only want to clean * When this is called for the in_login state, we only want to clean
* up the login task and connection. We do not need to block and set * up the login ctask and connection. We do not need to block and set
* the recovery state again * the recovery state again
*/ */
if (flag == STOP_CONN_TERM) if (flag == STOP_CONN_TERM)
......
...@@ -85,18 +85,6 @@ enum { ...@@ -85,18 +85,6 @@ enum {
ISCSI_DIGEST_SIZE = sizeof(__u32), ISCSI_DIGEST_SIZE = sizeof(__u32),
}; };
struct iscsi_mgmt_task {
/*
* Becuae LLDs allocate their hdr differently, this is a pointer to
* that storage. It must be setup at session creation time.
*/
struct iscsi_hdr *hdr;
char *data; /* mgmt payload */
unsigned data_count; /* counts data to be sent */
uint32_t itt; /* this ITT */
void *dd_data; /* driver/transport data */
struct list_head running;
};
enum { enum {
ISCSI_TASK_COMPLETED, ISCSI_TASK_COMPLETED,
...@@ -121,6 +109,7 @@ struct iscsi_cmd_task { ...@@ -121,6 +109,7 @@ struct iscsi_cmd_task {
/* offset in unsolicited stream (bytes); */ /* offset in unsolicited stream (bytes); */
unsigned unsol_offset; unsigned unsol_offset;
unsigned data_count; /* remaining Data-Out */ unsigned data_count; /* remaining Data-Out */
char *data; /* mgmt payload */
struct scsi_cmnd *sc; /* associated SCSI cmd*/ struct scsi_cmnd *sc; /* associated SCSI cmd*/
struct iscsi_conn *conn; /* used connection */ struct iscsi_conn *conn; /* used connection */
...@@ -162,7 +151,7 @@ struct iscsi_conn { ...@@ -162,7 +151,7 @@ struct iscsi_conn {
unsigned long last_ping; unsigned long last_ping;
int ping_timeout; int ping_timeout;
int recv_timeout; int recv_timeout;
struct iscsi_mgmt_task *ping_mtask; struct iscsi_cmd_task *ping_ctask;
/* iSCSI connection-wide sequencing */ /* iSCSI connection-wide sequencing */
uint32_t exp_statsn; uint32_t exp_statsn;
...@@ -178,9 +167,8 @@ struct iscsi_conn { ...@@ -178,9 +167,8 @@ struct iscsi_conn {
* should always fit in this buffer * should always fit in this buffer
*/ */
char *data; char *data;
struct iscsi_mgmt_task *login_mtask; /* mtask used for login/text */ struct iscsi_cmd_task *login_ctask; /* mtask used for login/text */
struct iscsi_mgmt_task *mtask; /* xmit mtask in progress */ struct iscsi_cmd_task *ctask; /* xmit task in progress */
struct iscsi_cmd_task *ctask; /* xmit ctask in progress */
/* xmit */ /* xmit */
struct list_head mgmtqueue; /* mgmt (control) xmit queue */ struct list_head mgmtqueue; /* mgmt (control) xmit queue */
...@@ -295,12 +283,10 @@ struct iscsi_session { ...@@ -295,12 +283,10 @@ struct iscsi_session {
int state; /* session state */ int state; /* session state */
int age; /* counts session re-opens */ int age; /* counts session re-opens */
int scsi_cmds_max; /* max scsi commands */
int cmds_max; /* size of cmds array */ int cmds_max; /* size of cmds array */
struct iscsi_cmd_task **cmds; /* Original Cmds arr */ struct iscsi_cmd_task **cmds; /* Original Cmds arr */
struct iscsi_pool cmdpool; /* PDU's pool */ struct iscsi_pool cmdpool; /* PDU's pool */
int mgmtpool_max; /* size of mgmt array */
struct iscsi_mgmt_task **mgmt_cmds; /* Original mgmt arr */
struct iscsi_pool mgmtpool; /* Mgmt PDU's pool */
}; };
struct iscsi_host { struct iscsi_host {
...@@ -345,7 +331,7 @@ extern void iscsi_host_free(struct Scsi_Host *shost); ...@@ -345,7 +331,7 @@ extern void iscsi_host_free(struct Scsi_Host *shost);
*/ */
extern struct iscsi_cls_session * extern struct iscsi_cls_session *
iscsi_session_setup(struct iscsi_transport *, struct Scsi_Host *shost, iscsi_session_setup(struct iscsi_transport *, struct Scsi_Host *shost,
uint16_t, int, int, uint32_t); uint16_t, int, uint32_t);
extern void iscsi_session_teardown(struct iscsi_cls_session *); extern void iscsi_session_teardown(struct iscsi_cls_session *);
extern void iscsi_session_recovery_timedout(struct iscsi_cls_session *); extern void iscsi_session_recovery_timedout(struct iscsi_cls_session *);
extern int iscsi_set_param(struct iscsi_cls_conn *cls_conn, extern int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
...@@ -388,8 +374,7 @@ extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *, ...@@ -388,8 +374,7 @@ extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
extern int iscsi_verify_itt(struct iscsi_conn *, itt_t); extern int iscsi_verify_itt(struct iscsi_conn *, itt_t);
extern struct iscsi_cmd_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t); extern struct iscsi_cmd_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t);
extern void iscsi_requeue_ctask(struct iscsi_cmd_task *ctask); extern void iscsi_requeue_ctask(struct iscsi_cmd_task *ctask);
extern void iscsi_free_mgmt_task(struct iscsi_conn *conn, extern void iscsi_put_ctask(struct iscsi_cmd_task *ctask);
struct iscsi_mgmt_task *mtask);
/* /*
* generic helpers * generic helpers
......
...@@ -34,7 +34,6 @@ struct Scsi_Host; ...@@ -34,7 +34,6 @@ struct Scsi_Host;
struct iscsi_cls_conn; struct iscsi_cls_conn;
struct iscsi_conn; struct iscsi_conn;
struct iscsi_cmd_task; struct iscsi_cmd_task;
struct iscsi_mgmt_task;
struct sockaddr; struct sockaddr;
/** /**
...@@ -58,19 +57,22 @@ struct sockaddr; ...@@ -58,19 +57,22 @@ struct sockaddr;
* @stop_conn: suspend/recover/terminate connection * @stop_conn: suspend/recover/terminate connection
* @send_pdu: send iSCSI PDU, Login, Logout, NOP-Out, Reject, Text. * @send_pdu: send iSCSI PDU, Login, Logout, NOP-Out, Reject, Text.
* @session_recovery_timedout: notify LLD a block during recovery timed out * @session_recovery_timedout: notify LLD a block during recovery timed out
* @init_cmd_task: Initialize a iscsi_cmd_task and any internal structs. * @init_task: Initialize a iscsi_task and any internal structs.
* Called from queuecommand with session lock held. * When offloading the data path, this is called from
* @init_mgmt_task: Initialize a iscsi_mgmt_task and any internal structs. * queuecommand with the session lock, or from the
* Called from iscsi_conn_send_generic with xmitmutex. * iscsi_conn_send_pdu context with the session lock.
* @xmit_cmd_task: Requests LLD to transfer cmd task. Returns 0 or the * When not offloading the data path, this is called
* from the scsi work queue without the session lock.
* @xmit_task Requests LLD to transfer cmd task. Returns 0 or the
* the number of bytes transferred on success, and -Exyz * the number of bytes transferred on success, and -Exyz
* value on error. * value on error. When offloading the data path, this
* @xmit_mgmt_task: Requests LLD to transfer mgmt task. Returns 0 or the * is called from queuecommand with the session lock, or
* the number of bytes transferred on success, and -Exyz * from the iscsi_conn_send_pdu context with the session
* value on error. * lock. When not offloading the data path, this is called
* @cleanup_cmd_task: requests LLD to fail cmd task. Called with xmitmutex * from the scsi work queue without the session lock.
* and session->lock after the connection has been * @cleanup_task: requests LLD to fail task. Called with session lock
* suspended and terminated during recovery. If called * and after the connection has been suspended and
* terminated during recovery. If called
* from abort task then connection is not suspended * from abort task then connection is not suspended
* or terminated but sk_callback_lock is held * or terminated but sk_callback_lock is held
* *
...@@ -110,15 +112,10 @@ struct iscsi_transport { ...@@ -110,15 +112,10 @@ struct iscsi_transport {
char *data, uint32_t data_size); char *data, uint32_t data_size);
void (*get_stats) (struct iscsi_cls_conn *conn, void (*get_stats) (struct iscsi_cls_conn *conn,
struct iscsi_stats *stats); struct iscsi_stats *stats);
int (*init_cmd_task) (struct iscsi_cmd_task *ctask); int (*init_task) (struct iscsi_cmd_task *task);
void (*init_mgmt_task) (struct iscsi_conn *conn, int (*xmit_task) (struct iscsi_cmd_task *task);
struct iscsi_mgmt_task *mtask); void (*cleanup_task) (struct iscsi_conn *conn,
int (*xmit_cmd_task) (struct iscsi_conn *conn, struct iscsi_cmd_task *task);
struct iscsi_cmd_task *ctask);
void (*cleanup_cmd_task) (struct iscsi_conn *conn,
struct iscsi_cmd_task *ctask);
int (*xmit_mgmt_task) (struct iscsi_conn *conn,
struct iscsi_mgmt_task *mtask);
void (*session_recovery_timedout) (struct iscsi_cls_session *session); void (*session_recovery_timedout) (struct iscsi_cls_session *session);
int (*ep_connect) (struct sockaddr *dst_addr, int non_blocking, int (*ep_connect) (struct sockaddr *dst_addr, int non_blocking,
uint64_t *ep_handle); uint64_t *ep_handle);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment