[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>
This commit is contained in:
committed by
Linus Torvalds
parent
bd81d8eec0
commit
2ae0210760
@@ -2115,7 +2115,7 @@ static void ext4_free_branches(handle_t *handle, struct inode *inode,
|
||||
*/
|
||||
if (!bh) {
|
||||
ext4_error(inode->i_sb, "ext4_free_branches",
|
||||
"Read failure, inode=%lu, block="E3FSBLK,
|
||||
"Read failure, inode=%lu, block=%llu",
|
||||
inode->i_ino, nr);
|
||||
continue;
|
||||
}
|
||||
@@ -2466,7 +2466,7 @@ static int __ext4_get_inode_loc(struct inode *inode,
|
||||
if (!bh) {
|
||||
ext4_error (inode->i_sb, "ext4_get_inode_loc",
|
||||
"unable to read inode block - "
|
||||
"inode=%lu, block="E3FSBLK,
|
||||
"inode=%lu, block=%llu",
|
||||
inode->i_ino, block);
|
||||
return -EIO;
|
||||
}
|
||||
@@ -2548,7 +2548,7 @@ make_io:
|
||||
if (!buffer_uptodate(bh)) {
|
||||
ext4_error(inode->i_sb, "ext4_get_inode_loc",
|
||||
"unable to read inode block - "
|
||||
"inode=%lu, block="E3FSBLK,
|
||||
"inode=%lu, block=%llu",
|
||||
inode->i_ino, block);
|
||||
brelse(bh);
|
||||
return -EIO;
|
||||
|
Reference in New Issue
Block a user