Changeset 4c3c4a5 in mainline for uspace/srv/fs/exfat/exfat.c


Ignore:
Timestamp:
2011-06-29T04:04:19Z (13 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2fb88ea
Parents:
fcc3cd8
Message:
  1. Integrate fat_udx.c as exfat_idx.c
  2. Add skeleton for libfs_ops
  3. Improve mount/unmount
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat.c

    rfcc3cd8 r4c3c4a5  
    158158
    159159        printf(NAME ": HelenOS exFAT file system server\n");
    160 /*
     160
    161161        rc = exfat_idx_init();
    162162        if (rc != EOK)
    163163                goto err;
    164 */
     164
    165165        vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);
    166166        if (vfs_phone < EOK) {
     
    171171        rc = fs_register(vfs_phone, &exfat_reg, &exfat_vfs_info, exfat_connection);
    172172        if (rc != EOK) {
    173                 /* exfat_idx_fini(); */
     173                exfat_idx_fini();
    174174                goto err;
    175175        }
Note: See TracChangeset for help on using the changeset viewer.