Changeset fb04cd90 in mainline for uspace/srv/fs/ext4fs/ext4fs_ops.c


Ignore:
Timestamp:
2012-05-28T09:56:44Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4585bda
Parents:
d0c9b4b
Message:

checks by mount operation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/ext4fs/ext4fs_ops.c

    rd0c9b4b rfb04cd90  
    936936        rc = ext4_filesystem_check_sanity(fs);
    937937        if (rc != EOK) {
    938                 ext4_filesystem_fini(fs, false);
     938                ext4_filesystem_fini(fs);
    939939                free(fs);
    940940                free(inst);
     
    946946        rc = ext4_filesystem_check_features(fs, &read_only);
    947947        if (rc != EOK) {
    948                 ext4_filesystem_fini(fs, false);
     948                ext4_filesystem_fini(fs);
    949949                free(fs);
    950950                free(inst);
     
    962962        rc = ext4fs_node_get_core(&root_node, inst, EXT4_INODE_ROOT_INDEX);
    963963        if (rc != EOK) {
    964                 ext4_filesystem_fini(fs, false);
     964                ext4_filesystem_fini(fs);
    965965                free(fs);
    966966                free(inst);
     
    10151015        fibril_mutex_unlock(&open_nodes_lock);
    10161016
    1017         return ext4_filesystem_fini(inst->filesystem, true);
     1017        return ext4_filesystem_fini(inst->filesystem);
    10181018}
    10191019
Note: See TracChangeset for help on using the changeset viewer.