diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ext4_fs_extents.h | 2 | ||||
-rw-r--r-- | include/linux/ext4_fs_i.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/ext4_fs_extents.h b/include/linux/ext4_fs_extents.h index 8029879e29e2..facc76684d4f 100644 --- a/include/linux/ext4_fs_extents.h +++ b/include/linux/ext4_fs_extents.h | |||
@@ -108,7 +108,7 @@ struct ext4_extent_header { | |||
108 | * truncate uses it to simulate recursive walking | 108 | * truncate uses it to simulate recursive walking |
109 | */ | 109 | */ |
110 | struct ext4_ext_path { | 110 | struct ext4_ext_path { |
111 | __u32 p_block; | 111 | ext4_fsblk_t p_block; |
112 | __u16 p_depth; | 112 | __u16 p_depth; |
113 | struct ext4_extent *p_ext; | 113 | struct ext4_extent *p_ext; |
114 | struct ext4_extent_idx *p_idx; | 114 | struct ext4_extent_idx *p_idx; |
diff --git a/include/linux/ext4_fs_i.h b/include/linux/ext4_fs_i.h index b2ccd9876bd1..2bed0effdcae 100644 --- a/include/linux/ext4_fs_i.h +++ b/include/linux/ext4_fs_i.h | |||
@@ -72,10 +72,10 @@ struct ext4_block_alloc_info { | |||
72 | * storage for cached extent | 72 | * storage for cached extent |
73 | */ | 73 | */ |
74 | struct ext4_ext_cache { | 74 | struct ext4_ext_cache { |
75 | __u32 ec_start; | 75 | ext4_fsblk_t ec_start; |
76 | __u32 ec_block; | 76 | __u32 ec_block; |
77 | __u32 ec_len; /* must be 32bit to return holes */ | 77 | __u32 ec_len; /* must be 32bit to return holes */ |
78 | __u32 ec_type; | 78 | __u32 ec_type; |
79 | }; | 79 | }; |
80 | 80 | ||
81 | /* | 81 | /* |