diff options
author | Alex Tomas <alex@clusterfs.com> | 2006-10-11 04:21:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:14:16 -0400 |
commit | f65e6fba163dfd0f962efb7d8f5528b6872e2b15 (patch) | |
tree | 75ee824ba0e97038754f0732c458c689c04a4182 /include/linux/ext4_fs_i.h | |
parent | 3a5b2ecdd1fa63a8f25bd769223bc1c2564ce45d (diff) |
[PATCH] ext4: 48bit physical block number support in extents
Signed-off-by: Alex Tomas <alex@clusterfs.com>
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/ext4_fs_i.h')
-rw-r--r-- | include/linux/ext4_fs_i.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 | /* |