Revert "Bluetooth: Store advertising handle so it can be re-enabled"
[platform/kernel/linux-rpi.git] / crypto / pcrypt.c
index 8c1d0ca..d0d954f 100644 (file)
@@ -117,6 +117,8 @@ static int pcrypt_aead_encrypt(struct aead_request *req)
        err = padata_do_parallel(ictx->psenc, padata, &ctx->cb_cpu);
        if (!err)
                return -EINPROGRESS;
+       if (err == -EBUSY)
+               return -EAGAIN;
 
        return err;
 }
@@ -164,6 +166,8 @@ static int pcrypt_aead_decrypt(struct aead_request *req)
        err = padata_do_parallel(ictx->psdec, padata, &ctx->cb_cpu);
        if (!err)
                return -EINPROGRESS;
+       if (err == -EBUSY)
+               return -EAGAIN;
 
        return err;
 }