[Xenial][PATCH 2/2] crypto: mcryptd - Fix load failure

Marcelo Cerri marcelo.cerri at canonical.com
Thu Oct 27 12:25:26 UTC 2016


From: Wang, Rui Y <rui.y.wang at intel.com>

BugLink: https://bugs.launchpad.net/bugs/1637165

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 at intel.com>
Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au>
(cherry picked from commit ddef482420b1ba8ec45e6123a7e8d3f67b21e5e3)
Signed-off-by: Marcelo Cerri <marcelo.cerri at canonical.com>
---
 crypto/mcryptd.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/mcryptd.c b/crypto/mcryptd.c
index fe5b495a..cfb68a8 100644
--- a/crypto/mcryptd.c
+++ b/crypto/mcryptd.c
@@ -526,6 +526,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;
-- 
2.7.4





More information about the kernel-team mailing list