]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: testmgr - dynamically allocate testvec_config
authorArnd Bergmann <arnd@arndb.de>
Tue, 18 Jun 2019 09:21:52 +0000 (11:21 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 27 Jun 2019 06:28:01 +0000 (14:28 +0800)
commit195d4dc9e83c763a99974d35d8f22f1510221b36
tree3c8c9a93558e4ed654e530c65a351fb4884850e6
parent583bcd785c5296f52570b9f2925a0febc749fd83
crypto: testmgr - dynamically allocate testvec_config

On arm32, we get warnings about high stack usage in some of the functions:

crypto/testmgr.c:2269:12: error: stack frame size of 1032 bytes in function 'alg_test_aead' [-Werror,-Wframe-larger-than=]
static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
           ^
crypto/testmgr.c:1693:12: error: stack frame size of 1312 bytes in function '__alg_test_hash' [-Werror,-Wframe-larger-than=]
static int __alg_test_hash(const struct hash_testvec *vecs,
           ^

On of the larger objects on the stack here is struct testvec_config, so
change that to dynamic allocation.

Fixes: 848a0652f865 ("crypto: testmgr - fuzz AEADs against their generic implementation")
Fixes: 1ffbbe2d42ce ("crypto: testmgr - fuzz skciphers against their generic implementation")
Fixes: 57222eba7368 ("crypto: testmgr - fuzz hashes against their generic implementation")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Eric Biggers <ebiggers@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/testmgr.c