Changeset 4198f9c3 in mainline for uspace/srv/fs/fat/fat.c


Ignore:
Timestamp:
2009-06-28T13:43:15Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
852b801
Parents:
6408be3
Message:

Separate the VFS input and output protocols.

File:
1 edited

Legend:

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

    r6408be3 r4198f9c3  
    9292                case IPC_M_PHONE_HUNGUP:
    9393                        return;
    94                 case VFS_MOUNTED:
     94                case VFS_OUT_MOUNTED:
    9595                        fat_mounted(callid, &call);
    9696                        break;
    97                 case VFS_MOUNT:
     97                case VFS_OUT_MOUNT:
    9898                        fat_mount(callid, &call);
    9999                        break;
    100                 case VFS_LOOKUP:
     100                case VFS_OUT_LOOKUP:
    101101                        fat_lookup(callid, &call);
    102102                        break;
    103                 case VFS_READ:
     103                case VFS_OUT_READ:
    104104                        fat_read(callid, &call);
    105105                        break;
    106                 case VFS_WRITE:
     106                case VFS_OUT_WRITE:
    107107                        fat_write(callid, &call);
    108108                        break;
    109                 case VFS_TRUNCATE:
     109                case VFS_OUT_TRUNCATE:
    110110                        fat_truncate(callid, &call);
    111111                        break;
    112                 case VFS_CLOSE:
     112                case VFS_OUT_CLOSE:
    113113                        fat_close(callid, &call);
    114114                        break;
    115                 case VFS_DESTROY:
     115                case VFS_OUT_DESTROY:
    116116                        fat_destroy(callid, &call);
    117117                        break;
    118                 case VFS_OPEN_NODE:
     118                case VFS_OUT_OPEN_NODE:
    119119                        fat_open_node(callid, &call);
    120120                        break;
    121                 case VFS_DEVICE:
     121                case VFS_OUT_DEVICE:
    122122                        fat_device(callid, &call);
    123123                        break;
    124                 case VFS_SYNC:
     124                case VFS_OUT_SYNC:
    125125                        fat_sync(callid, &call);
    126126                        break;
Note: See TracChangeset for help on using the changeset viewer.