aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/f2fs_fs.h
diff options
context:
space:
mode:
authorChao Yu <chao2.yu@samsung.com>2015-02-05 17:47:25 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2015-03-03 09:58:45 -0800
commit4d0b0bd4385f0ce8d3b430f9667c5e2ca1de10af (patch)
tree7b6a92caad4e93c33d46bedb8c9da92fb14be372 /include/linux/f2fs_fs.h
parentf2fs: move ext_lock out of struct extent_info (diff)
downloadlinux-dev-4d0b0bd4385f0ce8d3b430f9667c5e2ca1de10af.tar.xz
linux-dev-4d0b0bd4385f0ce8d3b430f9667c5e2ca1de10af.zip
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.h2
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;