|
@@ -141,7 +141,7 @@ int public_key_verify_signature(const struct public_key *pkey,
|
|
* signature and returns that to us.
|
|
* signature and returns that to us.
|
|
*/
|
|
*/
|
|
ret = crypto_akcipher_verify(req);
|
|
ret = crypto_akcipher_verify(req);
|
|
- if (ret == -EINPROGRESS) {
|
|
|
|
|
|
+ if ((ret == -EINPROGRESS) || (ret == -EBUSY)) {
|
|
wait_for_completion(&compl.completion);
|
|
wait_for_completion(&compl.completion);
|
|
ret = compl.err;
|
|
ret = compl.err;
|
|
}
|
|
}
|