MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / ext4_inode_bitmap

Function ext4_inode_bitmap

Ext4Fsd/ext3/generic.c:2434–2440  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2432}
2433
2434ext4_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
2442ext4_fsblk_t ext4_inode_table(struct super_block *sb,
2443 struct ext4_group_desc *bg)

Callers 7

Ext2NewBlockFunction · 0.85
Ext2NewInodeFunction · 0.85
Ext2FreeInodeFunction · 0.85
ext4_init_block_bitmapFunction · 0.85
ext4_check_descriptorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected