Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45566
b: refs/heads/master
c: 59c17ec
h: refs/heads/master
v: v3
  • Loading branch information
Akinobu Mita authored and James Bottomley committed Jan 6, 2007
1 parent 934ddb0 commit 39b85dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c959e1c2a475e0ad0d24eff200de9b6dcb3710c6
refs/heads/master: 59c17ec1690fd76ce6ae586daac29b04601be3e0
4 changes: 2 additions & 2 deletions trunk/drivers/scsi/iscsi_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1777,13 +1777,13 @@ iscsi_tcp_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
tcp_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
CRYPTO_ALG_ASYNC);
tcp_conn->tx_hash.flags = 0;
if (!tcp_conn->tx_hash.tfm)
if (IS_ERR(tcp_conn->tx_hash.tfm))
goto free_tcp_conn;

tcp_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
CRYPTO_ALG_ASYNC);
tcp_conn->rx_hash.flags = 0;
if (!tcp_conn->rx_hash.tfm)
if (IS_ERR(tcp_conn->rx_hash.tfm))
goto free_tx_tfm;

return cls_conn;
Expand Down

0 comments on commit 39b85dc

Please sign in to comment.