crypto: inside-secure - wait for the request to complete if in the backlog
authorAntoine Tenart <antoine.tenart@bootlin.com>
Mon, 26 Feb 2018 13:45:12 +0000 (14:45 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 May 2018 14:17:44 +0000 (16:17 +0200)
[ Upstream commit 4dc5475ae0375ea4f9283dfd9b2ddc91b20d4c4b ]

This patch updates the safexcel_hmac_init_pad() function to also wait
for completion when the digest return code is -EBUSY, as it would mean
the request is in the backlog to be processed later.

Fixes: 1b44c5a60c13 ("crypto: inside-secure - add SafeXcel EIP197 crypto engine driver")
Suggested-by: Ofer Heifetz <oferh@marvell.com>
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/crypto/inside-secure/safexcel_hash.c

index d626aa4..cd41c76 100644 (file)
@@ -819,7 +819,7 @@ static int safexcel_hmac_init_pad(struct ahash_request *areq,
                init_completion(&result.completion);
 
                ret = crypto_ahash_digest(areq);
-               if (ret == -EINPROGRESS) {
+               if (ret == -EINPROGRESS || ret == -EBUSY) {
                        wait_for_completion_interruptible(&result.completion);
                        ret = result.error;
                }