From: Jaegeuk Kim Date: Tue, 3 Mar 2015 00:28:16 +0000 (-0800) Subject: f2fs: report -ENOENT for unreached data indices X-Git-Tag: v4.1-rc1~87^2~38 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=76629165913a6d5542bbe735191b021f31dd3798;p=karo-tx-linux.git f2fs: report -ENOENT for unreached data indices If inode has inline_data, it should report -ENOENT when accessing out-of-bound region. This is used by f2fs_fiemap which treats -ENOENT with no error. Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index 35a911722d59..4687eae6c116 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -501,7 +501,7 @@ int get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode) /* if inline_data is set, should not report any block indices */ if (f2fs_has_inline_data(dn->inode) && index) { - err = -EINVAL; + err = -ENOENT; f2fs_put_page(npage[0], 1); goto release_out; }