Changeset f066a87 in mainline for uspace/lib/ext4/libext4_filesystem.c
- Timestamp:
- 2017-05-09T18:55:11Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3345b86
- Parents:
- d2c8533
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_filesystem.c
rd2c8533 rf066a87 105 105 goto err_2; 106 106 } 107 108 rc = ext4_superblock_check_sanity(fs->superblock); 109 if (rc != EOK) 110 goto err_2; 107 111 108 112 /* Mark system as mounted */ … … 148 152 149 153 return rc; 150 }151 152 /** Check sanity of the filesystem.153 *154 * Main is the check of the superblock structure.155 *156 * @param fs Filesystem to be checked157 *158 * @return Error code159 *160 */161 int ext4_filesystem_check_sanity(ext4_filesystem_t *fs)162 {163 /* Check superblock */164 return ext4_superblock_check_sanity(fs->superblock);165 154 } 166 155
Note:
See TracChangeset
for help on using the changeset viewer.