Changeset 6d57e1c in mainline for uspace/srv/fs/exfat/exfat.c


Ignore:
Timestamp:
2011-06-27T19:39:06Z (14 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
620a367
Parents:
efa8ed93
Message:

exFAT:

  1. Structure for BootSector
  2. Skeleton for mount/umount ops
File:
1 edited

Legend:

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

    refa8ed93 r6d57e1c  
    9898                        return;
    9999                case VFS_OUT_MOUNTED:
    100                         /* exfat_mounted(callid, &call); */
    101                         async_answer_0(callid, ENOTSUP);
     100                        exfat_mounted(callid, &call);
    102101                        break;
    103102                case VFS_OUT_MOUNT:
    104                         /* exfat_mount(callid, &call); */
    105                         async_answer_0(callid, ENOTSUP);
     103                        exfat_mount(callid, &call);
    106104                        break;
    107105                case VFS_OUT_UNMOUNTED:
    108                         /* exfat_unmounted(callid, &call); */
    109                         async_answer_0(callid, ENOTSUP);
     106                        exfat_unmounted(callid, &call);
    110107                        break;
    111108                case VFS_OUT_UNMOUNT:
    112                         /* exfat_unmount(callid, &call); */
    113                         async_answer_0(callid, ENOTSUP);
     109                        exfat_unmount(callid, &call);
    114110                        break;
    115111                case VFS_OUT_LOOKUP:
Note: See TracChangeset for help on using the changeset viewer.