Message ID | 1499006535-19760-11-git-send-email-gilad@benyossef.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c index c7835df..c5c89ed 100644 --- a/fs/crypto/crypto.c +++ b/fs/crypto/crypto.c @@ -190,7 +190,7 @@ int fscrypt_do_page_crypto(const struct inode *inode, fscrypt_direction_t rw, res = crypto_skcipher_decrypt(req); else res = crypto_skcipher_encrypt(req); - if (res == -EINPROGRESS || res == -EBUSY) { + if (res == -EINPROGRESS || res == -EIOCBQUEUED) { BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res;
Replace -EBUSY with -EIOCBQUEUED for backlog queueing indication as part of new API. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> --- This patch should be squashed with the first patch in the series when applied. fs/crypto/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)