aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/file.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2014-06-07 15:30:14 -0400
committerJaegeuk Kim <jaegeuk@kernel.org>2014-06-07 19:56:49 -0400
commit9ab701349247368f9d57a993b95a5bb05bb37e10 (patch)
tree7af7232ff421480e6955fc09afb9825c0eb6dcad /fs/f2fs/file.c
parent86928f984e8b166fcd0c7c241501bc00f53eb623 (diff)
f2fs: support f2fs_fiemap
This patch links f2fs_fiemap with generic function with get_block. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/file.c')
-rw-r--r--fs/f2fs/file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 78110dab5681..9c49c593d8eb 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -540,6 +540,7 @@ const struct inode_operations f2fs_file_inode_operations = {
540 .listxattr = f2fs_listxattr, 540 .listxattr = f2fs_listxattr,
541 .removexattr = generic_removexattr, 541 .removexattr = generic_removexattr,
542#endif 542#endif
543 .fiemap = f2fs_fiemap,
543}; 544};
544 545
545static void fill_zero(struct inode *inode, pgoff_t index, 546static void fill_zero(struct inode *inode, pgoff_t index,