Unverified Commit e9235a90 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files
parents d4b48574 f2707d3e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -175,6 +175,8 @@ static int pcrypt_aead_encrypt(struct aead_request *req)
	err = pcrypt_do_parallel(padata, &ctx->cb_cpu, &pencrypt);
	if (!err)
		return -EINPROGRESS;
	if (err == -EBUSY)
		return -EAGAIN;

	return err;
}
@@ -219,6 +221,8 @@ static int pcrypt_aead_decrypt(struct aead_request *req)
	err = pcrypt_do_parallel(padata, &ctx->cb_cpu, &pdecrypt);
	if (!err)
		return -EINPROGRESS;
	if (err == -EBUSY)
		return -EAGAIN;

	return err;
}
+1 −1

File changed.

Contains only whitespace changes.