Skip to content

Commit

Permalink
[SCSI] iscsi: convert xmit path to iscsi chunks
Browse files Browse the repository at this point in the history
Convert xmit to iscsi chunks.

from michaelc@cs.wisc.edu:

Bug fixes, more digest integration, sg chaining conversion and other
sg wrapper changes, coding style sync up, and removal of io fields,
like pdu_sent, that are not needed.

Signed-off-by: Olaf Kirch <olaf.kirch@oracle.com>
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
  • Loading branch information
Olaf Kirch authored and James Bottomley committed Jan 12, 2008
1 parent 1040c99 commit a8ac631
Show file tree
Hide file tree
Showing 5 changed files with 563 additions and 887 deletions.
3 changes: 2 additions & 1 deletion drivers/infiniband/ulp/iser/iscsi_iser.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ iscsi_iser_recv(struct iscsi_conn *conn,
* iscsi_iser_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
*
**/
static void
static int
iscsi_iser_cmd_init(struct iscsi_cmd_task *ctask)
{
struct iscsi_iser_conn *iser_conn = ctask->conn->dd_data;
Expand All @@ -138,6 +138,7 @@ iscsi_iser_cmd_init(struct iscsi_cmd_task *ctask)
iser_ctask->command_sent = 0;
iser_ctask->iser_conn = iser_conn;
iser_ctask_rdma_init(iser_ctask);
return 0;
}

/**
Expand Down
Loading

0 comments on commit a8ac631

Please sign in to comment.