mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
crypto: atmel - only treat EBUSY as transient if backlog
commit 1606043f21 upstream.
The Atmel SHA driver was treating -EBUSY as indication of queueing
to backlog without checking that backlog is enabled for the request.
Fix it by checking request flags.
Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a7439186c9
commit
d7e274720a
@@ -1204,7 +1204,9 @@ static int atmel_sha_finup(struct ahash_request *req)
|
|||||||
ctx->flags |= SHA_FLAGS_FINUP;
|
ctx->flags |= SHA_FLAGS_FINUP;
|
||||||
|
|
||||||
err1 = atmel_sha_update(req);
|
err1 = atmel_sha_update(req);
|
||||||
if (err1 == -EINPROGRESS || err1 == -EBUSY)
|
if (err1 == -EINPROGRESS ||
|
||||||
|
(err1 == -EBUSY && (ahash_request_flags(req) &
|
||||||
|
CRYPTO_TFM_REQ_MAY_BACKLOG)))
|
||||||
return err1;
|
return err1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user