diff options
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index d03e7d85a638..0a60ec5a16db 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -2439,9 +2439,8 @@ static ext4_fsblk_t ext4_get_inode_block(struct super_block *sb, | |||
2439 | */ | 2439 | */ |
2440 | offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) * | 2440 | offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) * |
2441 | EXT4_INODE_SIZE(sb); | 2441 | EXT4_INODE_SIZE(sb); |
2442 | block = ext4_inode_table(gdp) + (offset >> EXT4_BLOCK_SIZE_BITS(sb)); | 2442 | block = ext4_inode_table(sb, gdp) + |
2443 | 2443 | (offset >> EXT4_BLOCK_SIZE_BITS(sb)); | |
2444 | |||
2445 | 2444 | ||
2446 | iloc->block_group = block_group; | 2445 | iloc->block_group = block_group; |
2447 | iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1); | 2446 | iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1); |
@@ -2508,7 +2507,7 @@ static int __ext4_get_inode_loc(struct inode *inode, | |||
2508 | goto make_io; | 2507 | goto make_io; |
2509 | 2508 | ||
2510 | bitmap_bh = sb_getblk(inode->i_sb, | 2509 | bitmap_bh = sb_getblk(inode->i_sb, |
2511 | ext4_inode_bitmap(desc)); | 2510 | ext4_inode_bitmap(inode->i_sb, desc)); |
2512 | if (!bitmap_bh) | 2511 | if (!bitmap_bh) |
2513 | goto make_io; | 2512 | goto make_io; |
2514 | 2513 | ||