| 2432 | } |
| 2433 | |
| 2434 | ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb, |
| 2435 | struct ext4_group_desc *bg) |
| 2436 | { |
| 2437 | return le32_to_cpu(bg->bg_inode_bitmap_lo) | |
| 2438 | (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ? |
| 2439 | (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0); |
| 2440 | } |
| 2441 | |
| 2442 | ext4_fsblk_t ext4_inode_table(struct super_block *sb, |
| 2443 | struct ext4_group_desc *bg) |
no outgoing calls
no test coverage detected