Changeset 3bacee1 in mainline for uspace/lib/ext4/src/extent.c
- Timestamp:
- 2018-04-12T16:27:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3cf22f9
- Parents:
- 76d0981d
- git-author:
- Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/src/extent.c
r76d0981d r3bacee1 420 420 421 421 /* Search extent in the leaf block */ 422 ext4_extent_t *extent = NULL;422 ext4_extent_t *extent = NULL; 423 423 ext4_extent_binsearch(header, &extent, iblock); 424 424 … … 565 565 */ 566 566 static errno_t ext4_extent_release_branch(ext4_inode_ref_t *inode_ref, 567 567 ext4_extent_index_t *index) 568 568 { 569 569 uint32_t fblock = ext4_extent_index_get_leaf(index); 570 570 571 block_t *block;571 block_t *block; 572 572 errno_t rc = block_get(&block, inode_ref->fs->device, fblock, BLOCK_FLAGS_NONE); 573 573 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.