From: Wang, Rui Y Date: Wed, 27 Jan 2016 09:08:36 +0000 (+0800) Subject: crypto: mcryptd - Fix load failure X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ddef482420b1ba8ec45e6123a7e8d3f67b21e5e3;p=linux-beck.git crypto: mcryptd - Fix load failure mcryptd_create_hash() fails by returning -EINVAL, causing any driver using mcryptd to fail to load. It is because it needs to set its statesize properly. Signed-off-by: Rui Wang Signed-off-by: Herbert Xu --- diff --git a/crypto/mcryptd.c b/crypto/mcryptd.c index f78d4fc4e38a..c4eb9da49d4f 100644 --- a/crypto/mcryptd.c +++ b/crypto/mcryptd.c @@ -522,6 +522,7 @@ static int mcryptd_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 mcryptd_hash_ctx); inst->alg.halg.base.cra_init = mcryptd_hash_init_tfm;