crypto: aesni - Use crypto_aead_set_reqsize helper
This patch uses the crypto_aead_set_reqsize helper to avoid directly touching the internals of aead. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
ba6d8e3958
commit
a5a2b4da01
arch/x86/crypto
|
@ -807,8 +807,9 @@ static int rfc4106_init(struct crypto_tfm *tfm)
|
||||||
child_ctx = aesni_rfc4106_gcm_ctx_get(cryptd_child);
|
child_ctx = aesni_rfc4106_gcm_ctx_get(cryptd_child);
|
||||||
memcpy(child_ctx, ctx, sizeof(*ctx));
|
memcpy(child_ctx, ctx, sizeof(*ctx));
|
||||||
ctx->cryptd_tfm = cryptd_tfm;
|
ctx->cryptd_tfm = cryptd_tfm;
|
||||||
tfm->crt_aead.reqsize = sizeof(struct aead_request)
|
crypto_aead_set_reqsize(__crypto_aead_cast(tfm),
|
||||||
+ crypto_aead_reqsize(&cryptd_tfm->base);
|
sizeof(struct aead_request) +
|
||||||
|
crypto_aead_reqsize(&cryptd_tfm->base));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue