diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2016-02-25 21:54:39 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2016-02-25 21:54:39 +0000 |
commit | 93b2c06e2f884e075a442f8cb92c6a4082a0f9a2 (patch) | |
tree | db0f84829c686fff7d7ad360755b4e79c226abc4 /target/linux/sunxi | |
parent | 2f0e835f370e3ac5c36ca7621f10b99694b2918d (diff) | |
download | master-187ad058-93b2c06e2f884e075a442f8cb92c6a4082a0f9a2.tar.gz master-187ad058-93b2c06e2f884e075a442f8cb92c6a4082a0f9a2.tar.bz2 master-187ad058-93b2c06e2f884e075a442f8cb92c6a4082a0f9a2.zip |
kernel: update kernel 4.4 to version 4.4.3
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48783 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/sunxi')
-rw-r--r-- | target/linux/sunxi/patches-4.4/116-crypto-add-missing-statesize.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/target/linux/sunxi/patches-4.4/116-crypto-add-missing-statesize.patch b/target/linux/sunxi/patches-4.4/116-crypto-add-missing-statesize.patch deleted file mode 100644 index 261a19d8d3..0000000000 --- a/target/linux/sunxi/patches-4.4/116-crypto-add-missing-statesize.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 4f9ea86604e3ba64edd2817795798168fbb3c1a6 Mon Sep 17 00:00:00 2001 -From: LABBE Corentin <clabbe.montjoie@gmail.com> -Date: Mon, 16 Nov 2015 09:35:54 +0100 -Subject: [PATCH] crypto: sun4i-ss - add missing statesize - -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: <stable@vger.kernel.org> # v4.3+ -Tested-by: Chen-Yu Tsai <wens@csie.org> -Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com> -Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> ---- - drivers/crypto/sunxi-ss/sun4i-ss-core.c | 2 ++ - 1 file changed, 2 insertions(+) - ---- 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_a - .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_a - .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", |