diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2011-08-02 01:14:09 +0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2011-08-17 20:45:07 +0400 |
commit | 200ae1a08bec8f3fedfcfe94c892d9a024db4e46 (patch) | |
tree | a5ea0224f3bb7998991a4c9e39f6f8aea7c70ba4 /drivers/infiniband/ulp/iser/iser_initiator.c | |
parent | 0ace64b85ea7b90e3bffe408b9d7c3364692bfa4 (diff) | |
download | linux-200ae1a08bec8f3fedfcfe94c892d9a024db4e46.tar.xz |
IB/iser: Support iSCSI PDU padding
RFC3270 mandates that iSCSI PDUs are padded to the closest integer
number of four byte words. Fix the iser code to support that on both
the TX/RX flows.
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.co.il>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/ulp/iser/iser_initiator.c')
-rw-r--r-- | drivers/infiniband/ulp/iser/iser_initiator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/iser/iser_initiator.c b/drivers/infiniband/ulp/iser/iser_initiator.c index 5745b7fe158c..f299de6b419b 100644 --- a/drivers/infiniband/ulp/iser/iser_initiator.c +++ b/drivers/infiniband/ulp/iser/iser_initiator.c @@ -412,7 +412,7 @@ int iser_send_control(struct iscsi_conn *conn, memcpy(iser_conn->ib_conn->login_buf, task->data, task->data_count); tx_dsg->addr = iser_conn->ib_conn->login_dma; - tx_dsg->length = data_seg_len; + tx_dsg->length = task->data_count; tx_dsg->lkey = device->mr->lkey; mdesc->num_sge = 2; } |