diff options
Diffstat (limited to 'include/linux/ext4_fs_i.h')
-rw-r--r-- | include/linux/ext4_fs_i.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/ext4_fs_i.h b/include/linux/ext4_fs_i.h index 6c610b67b047..2b4e3700c725 100644 --- a/include/linux/ext4_fs_i.h +++ b/include/linux/ext4_fs_i.h | |||
@@ -30,6 +30,9 @@ typedef unsigned long long ext4_fsblk_t; | |||
30 | /* data type for file logical block number */ | 30 | /* data type for file logical block number */ |
31 | typedef __u32 ext4_lblk_t; | 31 | typedef __u32 ext4_lblk_t; |
32 | 32 | ||
33 | /* data type for block group number */ | ||
34 | typedef unsigned long ext4_group_t; | ||
35 | |||
33 | struct ext4_reserve_window { | 36 | struct ext4_reserve_window { |
34 | ext4_fsblk_t _rsv_start; /* First byte reserved */ | 37 | ext4_fsblk_t _rsv_start; /* First byte reserved */ |
35 | ext4_fsblk_t _rsv_end; /* Last byte reserved or 0 */ | 38 | ext4_fsblk_t _rsv_end; /* Last byte reserved or 0 */ |
@@ -92,7 +95,7 @@ struct ext4_inode_info { | |||
92 | * place a file's data blocks near its inode block, and new inodes | 95 | * place a file's data blocks near its inode block, and new inodes |
93 | * near to their parent directory's inode. | 96 | * near to their parent directory's inode. |
94 | */ | 97 | */ |
95 | __u32 i_block_group; | 98 | ext4_group_t i_block_group; |
96 | __u32 i_state; /* Dynamic state flags for ext4 */ | 99 | __u32 i_state; /* Dynamic state flags for ext4 */ |
97 | 100 | ||
98 | /* block reservation info */ | 101 | /* block reservation info */ |