Changeset a35b458 in mainline for uspace/lib/ext4/src/block_group.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/block_group.c
r3061bc1 ra35b458 70 70 { 71 71 bg->block_bitmap_lo = host2uint32_t_le((block_bitmap << 32) >> 32); 72 72 73 73 if (ext4_superblock_get_desc_size(sb) > 74 74 EXT4_MIN_BLOCK_GROUP_DESCRIPTOR_SIZE) … … 106 106 { 107 107 bg->inode_bitmap_lo = host2uint32_t_le((inode_bitmap << 32) >> 32); 108 108 109 109 if (ext4_superblock_get_desc_size(sb) > 110 110 EXT4_MIN_BLOCK_GROUP_DESCRIPTOR_SIZE) … … 144 144 bg->inode_table_first_block_lo = 145 145 host2uint32_t_le((inode_table_first << 32) >> 32); 146 146 147 147 if (ext4_superblock_get_desc_size(sb) > 148 148 EXT4_MIN_BLOCK_GROUP_DESCRIPTOR_SIZE) … … 353 353 if (ext4_block_group_get_flags(bg) & flag) 354 354 return true; 355 355 356 356 return false; 357 357 }
Note:
See TracChangeset
for help on using the changeset viewer.