Changeset 94e46c9 in mainline for uspace/lib/ext4/libext4_directory.c
- Timestamp:
- 2015-05-23T04:09:11Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5143bd
- Parents:
- a25d893 (diff), 0683992 (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
ra25d893 r94e46c9 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.