Commit 7e8e754a authored by Jaegeuk Kim's avatar Jaegeuk Kim

f2fs crypto: fix to handle errors likewise ext4

This patch makes some error handling policies same with ext4.
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent de6a8ec9
...@@ -112,7 +112,7 @@ struct f2fs_crypto_ctx *f2fs_get_crypto_ctx(struct inode *inode) ...@@ -112,7 +112,7 @@ struct f2fs_crypto_ctx *f2fs_get_crypto_ctx(struct inode *inode)
struct f2fs_crypt_info *ci = F2FS_I(inode)->i_crypt_info; struct f2fs_crypt_info *ci = F2FS_I(inode)->i_crypt_info;
if (ci == NULL) if (ci == NULL)
return ERR_PTR(-EACCES); return ERR_PTR(-ENOKEY);
/* /*
* We first try getting the ctx from a free list because in * We first try getting the ctx from a free list because in
...@@ -457,8 +457,8 @@ int f2fs_decrypt_one(struct inode *inode, struct page *page) ...@@ -457,8 +457,8 @@ int f2fs_decrypt_one(struct inode *inode, struct page *page)
struct f2fs_crypto_ctx *ctx = f2fs_get_crypto_ctx(inode); struct f2fs_crypto_ctx *ctx = f2fs_get_crypto_ctx(inode);
int ret; int ret;
if (!ctx) if (IS_ERR(ctx))
return -ENOMEM; return PTR_ERR(ctx);
ret = f2fs_decrypt(ctx, page); ret = f2fs_decrypt(ctx, page);
f2fs_release_crypto_ctx(ctx); f2fs_release_crypto_ctx(ctx);
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment