From: Wang, Rui Y Date: Sun, 29 Nov 2015 14:45:34 +0000 (+0800) Subject: crypto: cryptd - Assign statesize properly X-Git-Tag: v4.1.12-93~3^2~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7c9354073f6a325b1d3bc47c60a7d2bf73b8eac7;p=users%2Fjedix%2Flinux-maple.git crypto: cryptd - Assign statesize properly cryptd_create_hash() fails by returning -EINVAL. It is because after 8996eafdc ("crypto: ahash - ensure statesize is non-zero") all ahash drivers must have a non-zero statesize. This patch fixes the problem by properly assigning the statesize. Signed-off-by: Rui Wang Signed-off-by: Herbert Xu Orabug: 25202933 (cherry picked from commit 1a07834024dfca5c4bed5de8f8714306e0a11836) Signed-off-by: Todd Vierling --- diff --git a/crypto/cryptd.c b/crypto/cryptd.c index 4264c8d9c97d9..244097d869973 100644 --- a/crypto/cryptd.c +++ b/crypto/cryptd.c @@ -638,6 +638,7 @@ static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb, inst->alg.halg.base.cra_flags = type; inst->alg.halg.digestsize = salg->digestsize; + inst->alg.halg.statesize = salg->statesize; inst->alg.halg.base.cra_ctxsize = sizeof(struct cryptd_hash_ctx); inst->alg.halg.base.cra_init = cryptd_hash_init_tfm;