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

Function ext4_block_bitmap

Ext4Fsd/ext3/generic.c:2426–2432  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2424}
2425
2426ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
2427 struct ext4_group_desc *bg)
2428{
2429 return le32_to_cpu(bg->bg_block_bitmap_lo) |
2430 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
2431 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
2432}
2433
2434ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
2435 struct ext4_group_desc *bg)

Callers 8

Ext2CheckSetBlockFunction · 0.85
Ext2NewBlockFunction · 0.85
Ext2FreeBlockFunction · 0.85
Ext2NewInodeFunction · 0.85
ext4_init_block_bitmapFunction · 0.85
ext4_check_descriptorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected