Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1032053AbbKEKem (ORCPT ); Thu, 5 Nov 2015 05:34:42 -0500 Received: from smtp.csie.ntu.edu.tw ([140.112.30.61]:39487 "EHLO smtp.csie.ntu.edu.tw" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1031084AbbKEKek (ORCPT ); Thu, 5 Nov 2015 05:34:40 -0500 MIME-Version: 1.0 In-Reply-To: <1446709737-11316-1-git-send-email-clabbe.montjoie@gmail.com> References: <1446709737-11316-1-git-send-email-clabbe.montjoie@gmail.com> From: Chen-Yu Tsai Date: Thu, 5 Nov 2015 18:34:14 +0800 Message-ID: Subject: Re: [PATCH] crypto: sun4i-ss: add missing statesize To: LABBE Corentin Cc: Herbert Xu , David Miller , Maxime Ripard , Chen-Yu Tsai , linux-crypto@vger.kernel.org, linux-arm-kernel , linux-kernel , linux-sunxi , stable@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1886 Lines: 45 On Thu, Nov 5, 2015 at 3:48 PM, LABBE Corentin wrote: > sun4i-ss implementaton of md5/sha1 is via ahash algorithms. > A recent change make impossible to load them without giving statesize. > This patch specifiy statesize for sha1 and md5. > > Signed-off-by: LABBE Corentin > Cc: stable@vger.kernel.org Confirmed the driver properly loads again. Tested-by: Chen-Yu Tsai > --- > drivers/crypto/sunxi-ss/sun4i-ss-core.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/crypto/sunxi-ss/sun4i-ss-core.c b/drivers/crypto/sunxi-ss/sun4i-ss-core.c > index eab6fe2..107cd2a 100644 > --- a/drivers/crypto/sunxi-ss/sun4i-ss-core.c > +++ b/drivers/crypto/sunxi-ss/sun4i-ss-core.c > @@ -39,6 +39,7 @@ static struct sun4i_ss_alg_template ss_algs[] = { > .import = sun4i_hash_import_md5, > .halg = { > .digestsize = MD5_DIGEST_SIZE, > + .statesize = sizeof(struct md5_state), > .base = { > .cra_name = "md5", > .cra_driver_name = "md5-sun4i-ss", > @@ -66,6 +67,7 @@ static struct sun4i_ss_alg_template ss_algs[] = { > .import = sun4i_hash_import_sha1, > .halg = { > .digestsize = SHA1_DIGEST_SIZE, > + .statesize = sizeof(struct sha1_state), > .base = { > .cra_name = "sha1", > .cra_driver_name = "sha1-sun4i-ss", > -- > 2.4.10 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/