mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
libceph: stop checking crypto_shash_alignmask
Now that the shash algorithm type does not support nonzero alignmasks, crypto_shash_alignmask() always returns 0 and will be removed. In preparation for this, stop checking crypto_shash_alignmask() in net/ceph/messenger_v2.c. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
345bfa3c10
commit
69dde0a1fa
@ -733,8 +733,6 @@ static int setup_crypto(struct ceph_connection *con,
|
||||
return ret;
|
||||
}
|
||||
|
||||
WARN_ON((unsigned long)session_key &
|
||||
crypto_shash_alignmask(con->v2.hmac_tfm));
|
||||
ret = crypto_shash_setkey(con->v2.hmac_tfm, session_key,
|
||||
session_key_len);
|
||||
if (ret) {
|
||||
@ -816,8 +814,6 @@ static int hmac_sha256(struct ceph_connection *con, const struct kvec *kvecs,
|
||||
goto out;
|
||||
|
||||
for (i = 0; i < kvec_cnt; i++) {
|
||||
WARN_ON((unsigned long)kvecs[i].iov_base &
|
||||
crypto_shash_alignmask(con->v2.hmac_tfm));
|
||||
ret = crypto_shash_update(desc, kvecs[i].iov_base,
|
||||
kvecs[i].iov_len);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user