Changeset 1d6f507 in mainline for uspace/lib/ext2/libext2_filesystem.c
- Timestamp:
- 2011-02-14T22:20:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d241aae
- Parents:
- 3949e8a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext2/libext2_filesystem.c
r3949e8a0 r1d6f507 46 46 * @param fs Pointer to ext2_filesystem_t to initialize 47 47 * @param devmap_handle Device handle of the block device 48 * 49 * @return EOK on success or negative error code on failure 48 50 */ 49 51 int ext2_filesystem_init(ext2_filesystem_t *fs, devmap_handle_t devmap_handle) … … 85 87 86 88 /** 89 * Check filesystem for sanity 90 * 91 * @param fs Pointer to ext2_filesystem_t to check 92 * @return EOK on success or negative error code on failure 93 */ 94 int ext2_filesystem_check_sanity(ext2_filesystem_t *fs) 95 { 96 int rc; 97 98 rc = ext2_superblock_check_sanity(fs->superblock); 99 if (rc != EOK) { 100 return rc; 101 } 102 103 return EOK; 104 } 105 106 /** 87 107 * Finalize an instance of filesystem 88 108 *
Note:
See TracChangeset
for help on using the changeset viewer.