Changeset 055a68a in mainline for uspace/lib/ext4/libext4_directory.c
- Timestamp:
- 2015-04-23T23:47:40Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a18a8b9
- Parents:
- acb8766e (diff), dcba819 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_directory.c
racb8766e r055a68a 390 390 (ext4_inode_has_flag(parent->inode, EXT4_INODE_FLAG_INDEX))) { 391 391 int rc = ext4_directory_dx_add_entry(parent, child, name); 392 392 393 393 /* Check if index is not corrupted */ 394 if (rc != EXT4_ERR_BAD_DX_DIR) { 395 if (rc != EOK) 396 return rc; 397 398 return EOK; 399 } 400 394 if (rc != EXT4_ERR_BAD_DX_DIR) 395 return rc; 396 401 397 /* Needed to clear dir index flag if corrupted */ 402 398 ext4_inode_clear_flag(parent->inode, EXT4_INODE_FLAG_INDEX);
Note:
See TracChangeset
for help on using the changeset viewer.