Changeset 3711e7e in mainline for uspace/lib/ext4/libext4_block_group.c
- Timestamp:
- 2011-10-05T09:35:12Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3712434
- Parents:
- cfa1a8a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_block_group.c
rcfa1a8a r3711e7e 36 36 */ 37 37 38 #include "libext4_block_group.h" 38 #include <byteorder.h> 39 #include "libext4.h" 39 40 41 uint64_t ext4_block_group_get_inode_table_first_block(ext4_block_group_t *bg) 42 { 43 return ((uint64_t)uint32_t_le2host(bg->inode_table_first_hi) << 32) | 44 uint32_t_le2host(bg->inode_table_first_lo); 45 } 40 46 41 47 /**
Note:
See TracChangeset
for help on using the changeset viewer.