Commit c3fa410e authored by Eric Biggers's avatar Eric Biggers Committed by Greg Kroah-Hartman

crypto: testmgr - add some more preemption points

[ Upstream commit e63e1b0d ]

Call cond_resched() after each fuzz test iteration.  This avoids stall
warnings if fuzz_iterations is set very high for testing purposes.

While we're at it, also call cond_resched() after finishing testing each
test vector.
Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Acked-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 005fa17c
...@@ -1050,6 +1050,7 @@ static int test_hash_vec(const char *driver, const struct hash_testvec *vec, ...@@ -1050,6 +1050,7 @@ static int test_hash_vec(const char *driver, const struct hash_testvec *vec,
req, tsgl, hashstate); req, tsgl, hashstate);
if (err) if (err)
return err; return err;
cond_resched();
} }
} }
#endif #endif
...@@ -1105,6 +1106,7 @@ static int __alg_test_hash(const struct hash_testvec *vecs, ...@@ -1105,6 +1106,7 @@ static int __alg_test_hash(const struct hash_testvec *vecs,
err = test_hash_vec(driver, &vecs[i], i, req, tsgl, hashstate); err = test_hash_vec(driver, &vecs[i], i, req, tsgl, hashstate);
if (err) if (err)
goto out; goto out;
cond_resched();
} }
err = 0; err = 0;
out: out:
...@@ -1346,6 +1348,7 @@ static int test_aead_vec(const char *driver, int enc, ...@@ -1346,6 +1348,7 @@ static int test_aead_vec(const char *driver, int enc,
&cfg, req, tsgls); &cfg, req, tsgls);
if (err) if (err)
return err; return err;
cond_resched();
} }
} }
#endif #endif
...@@ -1365,6 +1368,7 @@ static int test_aead(const char *driver, int enc, ...@@ -1365,6 +1368,7 @@ static int test_aead(const char *driver, int enc,
tsgls); tsgls);
if (err) if (err)
return err; return err;
cond_resched();
} }
return 0; return 0;
} }
...@@ -1679,6 +1683,7 @@ static int test_skcipher_vec(const char *driver, int enc, ...@@ -1679,6 +1683,7 @@ static int test_skcipher_vec(const char *driver, int enc,
&cfg, req, tsgls); &cfg, req, tsgls);
if (err) if (err)
return err; return err;
cond_resched();
} }
} }
#endif #endif
...@@ -1698,6 +1703,7 @@ static int test_skcipher(const char *driver, int enc, ...@@ -1698,6 +1703,7 @@ static int test_skcipher(const char *driver, int enc,
tsgls); tsgls);
if (err) if (err)
return err; return err;
cond_resched();
} }
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment