Changeset 52a79081 in mainline


Ignore:
Timestamp:
2011-08-02T20:24:45Z (13 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a33f0a6
Parents:
6f60727
Message:

Now exFAT server can read files and directories!

File:
1 edited

Legend:

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

    r6f60727 r52a79081  
    113113                        break;
    114114                case VFS_OUT_READ:
    115                         /* exfat_read(callid, &call); */
    116                         async_answer_0(callid, ENOTSUP);
     115                        exfat_read(callid, &call);
    117116                        break;
    118117                case VFS_OUT_WRITE:
     
    125124                        break;
    126125                case VFS_OUT_STAT:
    127                         /* exfat_stat(callid, &call); */
    128                         async_answer_0(callid, ENOTSUP);
     126                        exfat_stat(callid, &call);
    129127                        break;
    130128                case VFS_OUT_CLOSE:
    131                         /* exfat_close(callid, &call); */
    132                         async_answer_0(callid, ENOTSUP);
     129                        exfat_close(callid, &call);
    133130                        break;
    134131                case VFS_OUT_DESTROY:
     
    137134                        break;
    138135                case VFS_OUT_OPEN_NODE:
    139                         /* exfat_open_node(callid, &call); */
    140                         async_answer_0(callid, ENOTSUP);
     136                        exfat_open_node(callid, &call);
    141137                        break;
    142138                case VFS_OUT_SYNC:
    143                         /* exfat_sync(callid, &call); */
    144                         async_answer_0(callid, ENOTSUP);
     139                        exfat_sync(callid, &call);
    145140                        break;
    146141                default:
Note: See TracChangeset for help on using the changeset viewer.