aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libiscsi.c
diff options
context:
space:
mode:
authorMike Christie <michaelc@cs.wisc.edu>2008-12-02 01:32:14 -0500
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-12-29 12:24:23 -0500
commit2ff79d52d56eebcffd83e9327b89d7daedf1e897 (patch)
tree66746804ba4965f7ffdc9ed32ce2f8c29e8dbac9 /drivers/scsi/libiscsi.c
parent262ef63627977acb7d8dd38c4f0f290bf49fbbfd (diff)
[SCSI] libiscsi: pass opcode into alloc_pdu callout
We do not need to allocate a itt for data_out, so this passes the opcode to the alloc_pdu callout. Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/libiscsi.c')
-rw-r--r--drivers/scsi/libiscsi.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/scsi/libiscsi.c b/drivers/scsi/libiscsi.c
index 6c4034b1561..ddf53978f0b 100644
--- a/drivers/scsi/libiscsi.c
+++ b/drivers/scsi/libiscsi.c
@@ -225,13 +225,18 @@ static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
225 itt_t itt; 225 itt_t itt;
226 int rc; 226 int rc;
227 227
228 rc = conn->session->tt->alloc_pdu(task); 228 rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
229 if (rc) 229 if (rc)
230 return rc; 230 return rc;
231 hdr = (struct iscsi_cmd *) task->hdr; 231 hdr = (struct iscsi_cmd *) task->hdr;
232 itt = hdr->itt; 232 itt = hdr->itt;
233 memset(hdr, 0, sizeof(*hdr)); 233 memset(hdr, 0, sizeof(*hdr));
234 234
235 if (session->tt->parse_pdu_itt)
236 hdr->itt = task->hdr_itt = itt;
237 else
238 hdr->itt = task->hdr_itt = build_itt(task->itt,
239 task->conn->session->age);
235 task->hdr_len = 0; 240 task->hdr_len = 0;
236 rc = iscsi_add_hdr(task, sizeof(*hdr)); 241 rc = iscsi_add_hdr(task, sizeof(*hdr));
237 if (rc) 242 if (rc)
@@ -240,11 +245,6 @@ static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
240 hdr->flags = ISCSI_ATTR_SIMPLE; 245 hdr->flags = ISCSI_ATTR_SIMPLE;
241 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun); 246 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
242 memcpy(task->lun, hdr->lun, sizeof(task->lun)); 247 memcpy(task->lun, hdr->lun, sizeof(task->lun));
243 if (session->tt->parse_pdu_itt)
244 hdr->itt = task->hdr_itt = itt;
245 else
246 hdr->itt = task->hdr_itt = build_itt(task->itt,
247 task->conn->session->age);
248 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn); 248 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
249 session->cmdsn++; 249 session->cmdsn++;
250 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn); 250 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
@@ -532,7 +532,7 @@ __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
532 } else 532 } else
533 task->data_count = 0; 533 task->data_count = 0;
534 534
535 if (conn->session->tt->alloc_pdu(task)) { 535 if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
536 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate " 536 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
537 "pdu for mgmt task.\n"); 537 "pdu for mgmt task.\n");
538 goto requeue_task; 538 goto requeue_task;