diff options
author | Lennart Sorensen <lsorense@csclub.uwaterloo.ca> | 2015-04-21 12:31:13 -0400 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-04-27 19:59:51 +0200 |
commit | 764dcf7b83098c83fd366eade51a59d1f54ce589 (patch) | |
tree | 73f72acf663ef981f29566573e695602d5271145 /crypto | |
parent | ca88808c9e3af223f4665a14166e6cf863831864 (diff) | |
download | lwn-764dcf7b83098c83fd366eade51a59d1f54ce589.tar.gz lwn-764dcf7b83098c83fd366eade51a59d1f54ce589.zip |
crypto: testmgr - fix 3.12.40 regression
commit ace3fc1e3f3a85ec705805146247231b11e1babe in 3.12.40 missed two
lines while pulling in commit 8a45ac12ec5b6ee67f8559c78ae11d9af8b821ee
from upstream. This causes the tests to fail in some cases.
With the two missing lines added in, the tests pass again.
Tested with omap-aes, omap-sham and talitos.
Signed-off-by: Len Sorensen <lsorense@csclub.uwaterloo.ca>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/testmgr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 317c31f0b262..93e508c39e3b 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -334,6 +334,7 @@ static int __test_hash(struct crypto_ahash *tfm, struct hash_testvec *template, case -EBUSY: wait_for_completion(&tresult.completion); INIT_COMPLETION(tresult.completion); + ret = tresult.err; if (!ret) break; /* fall through */ @@ -1079,6 +1080,7 @@ static int __test_skcipher(struct crypto_ablkcipher *tfm, int enc, case -EBUSY: wait_for_completion(&result.completion); INIT_COMPLETION(result.completion); + ret = result.err; if (!ret) break; /* fall through */ |