diff options
author | Chao Yu <chao2.yu@samsung.com> | 2016-01-08 20:19:27 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-01-08 11:51:58 -0800 |
commit | da5af127a1a17bac121c6889c88cc90f8a278a84 (patch) | |
tree | c579d96c259ba77d926f1cccc736dc090acc8772 /fs | |
parent | 2c4db1a6f6b42e2a9fb611cbbeb71a3a9a358ee0 (diff) | |
download | linux-da5af127a1a17bac121c6889c88cc90f8a278a84.tar.bz2 |
f2fs: recognize encrypted data in f2fs_fiemap
This patch fixes to teach f2fs_fiemap to recognize encrypted data.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/data.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 6fae75ddae6d..a3bce12b0cce 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -830,9 +830,13 @@ next: flags |= FIEMAP_EXTENT_LAST; } - if (size) + if (size) { + if (f2fs_encrypted_inode(inode)) + flags |= FIEMAP_EXTENT_DATA_ENCRYPTED; + ret = fiemap_fill_next_extent(fieinfo, logical, phys, size, flags); + } if (start_blk > last_blk || ret) goto out; |