mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
crypto: qat - fix some timeout tests
Change the timeout condition since the times value would be -1 after running MAX_RETRY_TIMES. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Yang Pingchao <pingchao.yang@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
46621e6f84
commit
51d77dddff
@ -186,7 +186,7 @@ static int qat_hal_wait_cycles(struct icp_qat_fw_loader_handle *handle,
|
||||
if (elapsed_cycles >= 8 && !(csr & (1 << ACS_ABO_BITPOS)))
|
||||
return 0;
|
||||
}
|
||||
if (!times) {
|
||||
if (times < 0) {
|
||||
pr_err("QAT: wait_num_cycles time out\n");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user