From patchwork Mon Nov 16 08:35:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corentin Labbe X-Patchwork-Id: 7621771 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D11569F6CD for ; Mon, 16 Nov 2015 08:38:25 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 041282053D for ; Mon, 16 Nov 2015 08:38:25 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 2B0E120592 for ; Mon, 16 Nov 2015 08:38:24 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZyFH9-0001Km-Cg; Mon, 16 Nov 2015 08:36:35 +0000 Received: from mail-wm0-x22b.google.com ([2a00:1450:400c:c09::22b]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZyFGx-0001Hb-Tm for linux-arm-kernel@lists.infradead.org; Mon, 16 Nov 2015 08:36:25 +0000 Received: by wmdw130 with SMTP id w130so100357551wmd.0 for ; Mon, 16 Nov 2015 00:36:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=vNUhSOsAH0Ad5Xf8EMEY7nc8BmoY8qQ0U45vbRO23KU=; b=DX5NrkR15yz/OfTfjIV7dYIZStR+ENE1bKEitKe8ca9HU2i90+qZb/Nk6WBVb+kxmq OLpPEK4vH0JOny/hjSOjG/xaPCbFYEQFwS00pIJhlVmjVf3ubRDWxZfDgu3gkA6kb91r GM8so+LJit/A5u/J9ruiLdgHaOBPd1wuk94K0tEku7k6ol8lwLtiEmB0DvfDVhP6RHC6 k3f1Tby2+XulAc0GFZSCHUv8upFmPANMKEHslqdfCEDeHSahcELihfnh9ySh6Gq6ok5Y wnAO2mf/sLEeQrZqf0Lz3vyOVna39l0R7VFlkw+ytVLh1YyVizhPCAU7hmjMq6WbYGL/ sb0g== X-Received: by 10.194.47.134 with SMTP id d6mr35561289wjn.27.1447662962395; Mon, 16 Nov 2015 00:36:02 -0800 (PST) Received: from Red.local (ANice-651-1-284-125.w83-201.abo.wanadoo.fr. [83.201.64.125]) by smtp.googlemail.com with ESMTPSA id 200sm6109646wmn.11.2015.11.16.00.36.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 16 Nov 2015 00:36:01 -0800 (PST) From: LABBE Corentin To: clabbe.montjoie@gmail.com, davem@davemloft.net, herbert@gondor.apana.org.au, linux-arm-kernel@lists.infradead.org, maxime.ripard@free-electrons.com, wens@csie.org Subject: [PATCH v2] crypto: sun4i-ss: add missing statesize Date: Mon, 16 Nov 2015 09:35:54 +0100 Message-Id: <1447662954-1788-2-git-send-email-clabbe.montjoie@gmail.com> X-Mailer: git-send-email 2.4.10 In-Reply-To: <1447662954-1788-1-git-send-email-clabbe.montjoie@gmail.com> References: <1447662954-1788-1-git-send-email-clabbe.montjoie@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20151116_003624_246242_5DBF8106 X-CRM114-Status: GOOD ( 10.44 ) X-Spam-Score: -2.7 (--) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-crypto@vger.kernel.org, stable@vger.kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP sun4i-ss implementaton of md5/sha1 is via ahash algorithms. Commit 8996eafdcbad ("crypto: ahash - ensure statesize is non-zero") made impossible to load them without giving statesize. This patch specifiy statesize for sha1 and md5. Fixes: 6298e948215f ("crypto: sunxi-ss - Add Allwinner Security System crypto accelerator") Cc: # v4.3+ Tested-by: Chen-Yu Tsai Signed-off-by: LABBE Corentin --- 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",