Changeset 46577995 in mainline for uspace/lib/ext4/include/ext4/balloc.h
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/include/ext4/balloc.h
rfacacc71 r46577995 37 37 #include "types.h" 38 38 39 extern int ext4_balloc_free_block(ext4_inode_ref_t *, uint32_t);40 extern int ext4_balloc_free_blocks(ext4_inode_ref_t *, uint32_t, uint32_t);39 extern errno_t ext4_balloc_free_block(ext4_inode_ref_t *, uint32_t); 40 extern errno_t ext4_balloc_free_blocks(ext4_inode_ref_t *, uint32_t, uint32_t); 41 41 extern uint32_t ext4_balloc_get_first_data_block_in_group(ext4_superblock_t *, 42 42 ext4_block_group_ref_t *); 43 extern int ext4_balloc_alloc_block(ext4_inode_ref_t *, uint32_t *);44 extern int ext4_balloc_try_alloc_block(ext4_inode_ref_t *, uint32_t, bool *);43 extern errno_t ext4_balloc_alloc_block(ext4_inode_ref_t *, uint32_t *); 44 extern errno_t ext4_balloc_try_alloc_block(ext4_inode_ref_t *, uint32_t, bool *); 45 45 46 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.