summaryrefslogtreecommitdiff
path: root/crypto/mcryptd.c
diff options
context:
space:
mode:
authorWang, Rui Y <rui.y.wang@intel.com>2016-01-27 17:08:36 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-01-30 22:11:20 +0800
commitd8b591fe5bdf1f0413409d3d4c2fcea10808b437 (patch)
tree43e7b20477a3bcc4b3e41fb632f7474fe22427bb /crypto/mcryptd.c
parent7290ecf1a6cfa1bb041e3be420bf2cd68d7f3834 (diff)
downloadlinux-crypto-d8b591fe5bdf1f0413409d3d4c2fcea10808b437.tar.gz
linux-crypto-d8b591fe5bdf1f0413409d3d4c2fcea10808b437.zip
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 <rui.y.wang@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/mcryptd.c')
-rw-r--r--crypto/mcryptd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/mcryptd.c b/crypto/mcryptd.c
index f78d4fc4..c4eb9da4 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;