diff options
author | Chao Yu <chao2.yu@samsung.com> | 2015-02-05 12:47:25 +0300 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-03-03 20:58:45 +0300 |
commit | 4d0b0bd4385f0ce8d3b430f9667c5e2ca1de10af (patch) | |
tree | 7b6a92caad4e93c33d46bedb8c9da92fb14be372 /include/linux/f2fs_fs.h | |
parent | 0c872e2dedfc09f41a5604d1c5010f800c0bd8f1 (diff) | |
download | linux-4d0b0bd4385f0ce8d3b430f9667c5e2ca1de10af.tar.xz |
f2fs: simplfy a field name in struct f2fs_extent,extent_info
Rename a filed name from 'blk_addr' to 'blk' in struct {f2fs_extent,extent_info}
as annotation of this field descripts its meaning well to us.
By this way, we can avoid long statement in code of following patches.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'include/linux/f2fs_fs.h')
-rw-r--r-- | include/linux/f2fs_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h index a23556c32703..502f28cfb78e 100644 --- a/include/linux/f2fs_fs.h +++ b/include/linux/f2fs_fs.h @@ -153,7 +153,7 @@ struct f2fs_orphan_block { */ struct f2fs_extent { __le32 fofs; /* start file offset of the extent */ - __le32 blk_addr; /* start block address of the extent */ + __le32 blk; /* start block address of the extent */ __le32 len; /* lengh of the extent */ } __packed; |