Changeset c4f318d6 in mainline for uspace/lib/ext4/libext4_directory.c
- Timestamp:
- 2012-02-25T21:24:08Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a61ddcf4
- Parents:
- 89a30bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/ext4/libext4_directory.c ¶
r89a30bd rc4f318d6 261 261 262 262 int ext4_directory_append_block(ext4_filesystem_t *fs, 263 ext4_inode_ref_t *inode_ref, uint32_t *fblock )263 ext4_inode_ref_t *inode_ref, uint32_t *fblock, uint32_t *iblock) 264 264 { 265 265 int rc; … … 288 288 289 289 *fblock = phys_block; 290 *iblock = new_block_idx; 290 291 return EOK; 291 292 } … … 411 412 412 413 uint32_t fblock; 413 rc = ext4_directory_append_block(fs, parent, &fblock); 414 uint32_t iblock; 415 rc = ext4_directory_append_block(fs, parent, &fblock, &iblock); 414 416 if (rc != EOK) { 415 417 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.