mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 20:24:12 +08:00
crypto: api - Include alignment in crypto_alg_extsize
This patch ensures that the tfm context always has enough extra memory to ensure that it is aligned according to cra_alignment. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
5c98d62059
commit
c2110f2834
@ -980,7 +980,8 @@ EXPORT_SYMBOL_GPL(crypto_xor);
|
|||||||
|
|
||||||
unsigned int crypto_alg_extsize(struct crypto_alg *alg)
|
unsigned int crypto_alg_extsize(struct crypto_alg *alg)
|
||||||
{
|
{
|
||||||
return alg->cra_ctxsize;
|
return alg->cra_ctxsize +
|
||||||
|
(alg->cra_alignmask & ~(crypto_tfm_ctx_alignment() - 1));
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(crypto_alg_extsize);
|
EXPORT_SYMBOL_GPL(crypto_alg_extsize);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user