Changeset 4198f9c3 in mainline for uspace/srv/vfs/vfs.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/vfs/vfs.c

    r6408be3 r4198f9c3  
    8080                        keep_on_going = false;
    8181                        break;
    82                 case VFS_REGISTER:
     82                case VFS_IN_REGISTER:
    8383                        vfs_register(callid, &call);
    8484                        keep_on_going = false;
    8585                        break;
    86                 case VFS_MOUNT:
     86                case VFS_IN_MOUNT:
    8787                        vfs_mount(callid, &call);
    8888                        break;
    89                 case VFS_OPEN:
     89                case VFS_IN_OPEN:
    9090                        vfs_open(callid, &call);
    9191                        break;
    92                 case VFS_OPEN_NODE:
     92                case VFS_IN_OPEN_NODE:
    9393                        vfs_open_node(callid, &call);
    9494                        break;
    95                 case VFS_CLOSE:
     95                case VFS_IN_CLOSE:
    9696                        vfs_close(callid, &call);
    9797                        break;
    98                 case VFS_READ:
     98                case VFS_IN_READ:
    9999                        vfs_read(callid, &call);
    100100                        break;
    101                 case VFS_WRITE:
     101                case VFS_IN_WRITE:
    102102                        vfs_write(callid, &call);
    103103                        break;
    104                 case VFS_SEEK:
     104                case VFS_IN_SEEK:
    105105                        vfs_seek(callid, &call);
    106106                        break;
    107                 case VFS_TRUNCATE:
     107                case VFS_IN_TRUNCATE:
    108108                        vfs_truncate(callid, &call);
    109109                        break;
    110                 case VFS_MKDIR:
     110                case VFS_IN_MKDIR:
    111111                        vfs_mkdir(callid, &call);
    112112                        break;
    113                 case VFS_UNLINK:
     113                case VFS_IN_UNLINK:
    114114                        vfs_unlink(callid, &call);
    115115                        break;
    116                 case VFS_RENAME:
     116                case VFS_IN_RENAME:
    117117                        vfs_rename(callid, &call);
    118118                        break;
    119                 case VFS_DEVICE:
     119                case VFS_IN_DEVICE:
    120120                        vfs_device(callid, &call);
    121121                        break;
    122                 case VFS_SYNC:
     122                case VFS_IN_SYNC:
    123123                        vfs_sync(callid, &call);
    124124                        break;
    125                 case VFS_NODE:
     125                case VFS_IN_NODE:
    126126                        vfs_node(callid, &call);
    127127                        break;
Note: See TracChangeset for help on using the changeset viewer.