summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorWang, Rui Y <rui.y.wang@intel.com>2016-01-27 17:08:36 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-04-18 07:55:52 +0200
commite2022e6c66bcdc981ceca270a9d884d8d71d7837 (patch)
tree6210e8ef0949e00ef3af01f538b73c7f2557ff10 /crypto
parent30306b101f68b0efbbfefb2fd3d8e08f4afd88fb (diff)
crypto: mcryptd - Fix load failure
commit ddef482420b1ba8ec45e6123a7e8d3f67b21e5e3 upstream. 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 <rui.y.wang@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/mcryptd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/mcryptd.c b/crypto/mcryptd.c
index a8e870444ea9..02a1c10fa909 100644
--- a/crypto/mcryptd.c
+++ b/crypto/mcryptd.c
@@ -505,6 +505,7 @@ static int mcryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb,
inst->alg.halg.base.cra_flags = CRYPTO_ALG_ASYNC;
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;