diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2006-08-31 18:09:29 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-09-02 14:37:21 -0400 |
commit | 753e7d3866748799e4a8769cd27ea7202654211b (patch) | |
tree | 1abee266dc83b269495133ce53ab463569e231d2 /drivers/scsi | |
parent | dd8c0d958621e3137f3e3302f7b8952041a4a1d7 (diff) |
[SCSI] iscsi_tcp: fix header resend
This patch built over the last ones fixes a bug in the partial header
resend code, where we add on another 4 bytes to the send length on the resend.
We want just the header plus digest.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/iscsi_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/iscsi_tcp.c b/drivers/scsi/iscsi_tcp.c index 82399f71028d..541912a5b886 100644 --- a/drivers/scsi/iscsi_tcp.c +++ b/drivers/scsi/iscsi_tcp.c | |||
@@ -109,7 +109,7 @@ iscsi_hdr_digest(struct iscsi_conn *conn, struct iscsi_buf *buf, | |||
109 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; | 109 | struct iscsi_tcp_conn *tcp_conn = conn->dd_data; |
110 | 110 | ||
111 | crypto_digest_digest(tcp_conn->tx_tfm, &buf->sg, 1, crc); | 111 | crypto_digest_digest(tcp_conn->tx_tfm, &buf->sg, 1, crc); |
112 | buf->sg.length += sizeof(uint32_t); | 112 | buf->sg.length = tcp_conn->hdr_size; |
113 | } | 113 | } |
114 | 114 | ||
115 | static inline int | 115 | static inline int |