aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/testmgr.c
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@mbnet.fi>2012-09-19 02:42:49 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2012-09-27 01:32:16 -0400
commitf44d83d19d8fde77bc499131bc9c0bc8583785c8 (patch)
tree690b40a72aac42019e5f302abce46c0c54e35af8 /crypto/testmgr.c
parenta5bbf6fa79abe0cb64aaebc3455f9ba779d6a36f (diff)
crypto: testmgr - allow non-multi page and multi page skcipher tests from same test template
Allow non-multi page and multi page skcipher tests to be run on same test template, to avoid duplicating data. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r--crypto/testmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 575b57c3244b..8183777a49b6 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -804,7 +804,7 @@ static int test_skcipher(struct crypto_ablkcipher *tfm, int enc,
804 else 804 else
805 memset(iv, 0, MAX_IVLEN); 805 memset(iv, 0, MAX_IVLEN);
806 806
807 if (!(template[i].np)) { 807 if (!(template[i].np) || (template[i].also_non_np)) {
808 j++; 808 j++;
809 809
810 ret = -EINVAL; 810 ret = -EINVAL;