diff options
author | Chao Yu <yuchao0@huawei.com> | 2016-05-04 23:19:47 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2016-05-07 10:32:29 -0700 |
commit | bd933d4faedf3a79034e67e8032d153bf1afcd83 (patch) | |
tree | 6d6db3c4b4f41a334b73fe0e542a1a7086f8f72f /fs/f2fs/f2fs.h | |
parent | e3bc808ca869f0070d438257e4085602636498da (diff) | |
download | lwn-bd933d4faedf3a79034e67e8032d153bf1afcd83.tar.gz lwn-bd933d4faedf3a79034e67e8032d153bf1afcd83.zip |
f2fs: reuse get_extent_info
Reuse get_extent_info for readability.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index ea146a599b4c..ccf8bf4debfc 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -428,11 +428,11 @@ struct f2fs_inode_info { }; static inline void get_extent_info(struct extent_info *ext, - struct f2fs_extent i_ext) + struct f2fs_extent *i_ext) { - ext->fofs = le32_to_cpu(i_ext.fofs); - ext->blk = le32_to_cpu(i_ext.blk); - ext->len = le32_to_cpu(i_ext.len); + ext->fofs = le32_to_cpu(i_ext->fofs); + ext->blk = le32_to_cpu(i_ext->blk); + ext->len = le32_to_cpu(i_ext->len); } static inline void set_raw_extent(struct extent_info *ext, |