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

Function ext4_inode_table

Ext4Fsd/ext3/generic.c:2442–2448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2440}
2441
2442ext4_fsblk_t ext4_inode_table(struct super_block *sb,
2443 struct ext4_group_desc *bg)
2444{
2445 return le32_to_cpu(bg->bg_inode_table_lo) |
2446 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
2447 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
2448}
2449
2450__u32 ext4_free_blks_count(struct super_block *sb,
2451 struct ext4_group_desc *bg)

Callers 6

Ext2GetInodeLbaFunction · 0.85
Ext2NewBlockFunction · 0.85
ext4_init_block_bitmapFunction · 0.85
ext4_check_descriptorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected