aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorMingming Cao <cmm@us.ibm.com>2006-10-11 04:21:11 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-11 14:14:18 -0400
commit2ae0210760aed9d626eaede5b63db95e198f7c8e (patch)
tree40fd1795f7d2b337407876d515a0147d72cea4f4 /fs/ext4/super.c
parentbd81d8eec043094d3ff729a8ff6d5b3a06d3c4b1 (diff)
[PATCH] ext4: blk_type from sector_t to unsigned long long
Change ext4 in-kernel block type (ext4_fsblk_t) from sector_t to unsigned long long. Remove ext4 block type string micro E3FSBLK, replaced with "%llu" [akpm@osdl.org: build fix] Signed-off-by: Mingming Cao <cmm@us.ibm.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 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index b91dffd7a031..d844175e60e8 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1244,7 +1244,7 @@ static int ext4_check_descriptors (struct super_block * sb)
1244 { 1244 {
1245 ext4_error (sb, "ext4_check_descriptors", 1245 ext4_error (sb, "ext4_check_descriptors",
1246 "Block bitmap for group %d" 1246 "Block bitmap for group %d"
1247 " not in group (block "E3FSBLK")!", 1247 " not in group (block %llu)!",
1248 i, block_bitmap); 1248 i, block_bitmap);
1249 return 0; 1249 return 0;
1250 } 1250 }
@@ -1253,7 +1253,7 @@ static int ext4_check_descriptors (struct super_block * sb)
1253 { 1253 {
1254 ext4_error (sb, "ext4_check_descriptors", 1254 ext4_error (sb, "ext4_check_descriptors",
1255 "Inode bitmap for group %d" 1255 "Inode bitmap for group %d"
1256 " not in group (block "E3FSBLK")!", 1256 " not in group (block %llu)!",
1257 i, inode_bitmap); 1257 i, inode_bitmap);
1258 return 0; 1258 return 0;
1259 } 1259 }
@@ -1263,7 +1263,7 @@ static int ext4_check_descriptors (struct super_block * sb)
1263 { 1263 {
1264 ext4_error (sb, "ext4_check_descriptors", 1264 ext4_error (sb, "ext4_check_descriptors",
1265 "Inode table for group %d" 1265 "Inode table for group %d"
1266 " not in group (block "E3FSBLK")!", 1266 " not in group (block %llu)!",
1267 i, inode_table); 1267 i, inode_table);
1268 return 0; 1268 return 0;
1269 } 1269 }