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


Ignore:
Timestamp:
2017-05-09T18:55:11Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3345b86
Parents:
d2c8533
Message:

Ext4 should check for sanity before modifying the superblock.

File:
1 edited

Legend:

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

    rd2c8533 rf066a87  
    969969        int rc = ext4_filesystem_init(fs, service_id, cmode);
    970970        if (rc != EOK) {
    971                 free(fs);
    972                 free(inst);
    973                 return rc;
    974         }
    975        
    976         /* Do some sanity checking */
    977         rc = ext4_filesystem_check_sanity(fs);
    978         if (rc != EOK) {
    979                 ext4_filesystem_fini(fs);
    980971                free(fs);
    981972                free(inst);
Note: See TracChangeset for help on using the changeset viewer.