mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
crypto: pcrypt - call the complete function on error
This fixes three forgotten calls to the complete function in the error case. Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
e054f16471
commit
5a1436beec
@ -114,7 +114,7 @@ static void pcrypt_aead_enc(struct padata_priv *padata)
|
||||
|
||||
padata->info = crypto_aead_encrypt(req);
|
||||
|
||||
if (padata->info)
|
||||
if (padata->info == -EINPROGRESS)
|
||||
return;
|
||||
|
||||
padata_do_serial(padata);
|
||||
@ -158,7 +158,7 @@ static void pcrypt_aead_dec(struct padata_priv *padata)
|
||||
|
||||
padata->info = crypto_aead_decrypt(req);
|
||||
|
||||
if (padata->info)
|
||||
if (padata->info == -EINPROGRESS)
|
||||
return;
|
||||
|
||||
padata_do_serial(padata);
|
||||
@ -202,7 +202,7 @@ static void pcrypt_aead_givenc(struct padata_priv *padata)
|
||||
|
||||
padata->info = crypto_aead_givencrypt(req);
|
||||
|
||||
if (padata->info)
|
||||
if (padata->info == -EINPROGRESS)
|
||||
return;
|
||||
|
||||
padata_do_serial(padata);
|
||||
|
Loading…
x
Reference in New Issue
Block a user