Skip to content

Commit

Permalink
f2fs crypto: fix to handle errors likewise ext4
Browse files Browse the repository at this point in the history
This patch makes some error handling policies same with ext4.

Signed-off-by: Jaegeuk Kim <[email protected]>
  • Loading branch information
Jaegeuk Kim committed Jun 11, 2015
1 parent de6a8ec commit 7e8e754
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/f2fs/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

if (ci == NULL)
return ERR_PTR(-EACCES);
return ERR_PTR(-ENOKEY);

/*
* We first try getting the ctx from a free list because in
Expand Down Expand Up @@ -457,8 +457,8 @@ int f2fs_decrypt_one(struct inode *inode, struct page *page)
struct f2fs_crypto_ctx *ctx = f2fs_get_crypto_ctx(inode);
int ret;

if (!ctx)
return -ENOMEM;
if (IS_ERR(ctx))
return PTR_ERR(ctx);
ret = f2fs_decrypt(ctx, page);
f2fs_release_crypto_ctx(ctx);
return ret;
Expand Down

0 comments on commit 7e8e754

Please sign in to comment.