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


Ignore:
Timestamp:
2009-06-28T13:43:15Z (16 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/devfs/devfs.c

    r6408be3 r4198f9c3  
    6868                case IPC_M_PHONE_HUNGUP:
    6969                        return;
    70                 case VFS_MOUNTED:
     70                case VFS_OUT_MOUNTED:
    7171                        devfs_mounted(callid, &call);
    7272                        break;
    73                 case VFS_MOUNT:
     73                case VFS_OUT_MOUNT:
    7474                        devfs_mount(callid, &call);
    7575                        break;
    76                 case VFS_LOOKUP:
     76                case VFS_OUT_LOOKUP:
    7777                        devfs_lookup(callid, &call);
    7878                        break;
    79                 case VFS_OPEN_NODE:
     79                case VFS_OUT_OPEN_NODE:
    8080                        devfs_open_node(callid, &call);
    8181                        break;
    82                 case VFS_DEVICE:
     82                case VFS_OUT_DEVICE:
    8383                        devfs_device(callid, &call);
    8484                        break;
    85                 case VFS_READ:
     85                case VFS_OUT_READ:
    8686                        devfs_read(callid, &call);
    8787                        break;
    88                 case VFS_WRITE:
     88                case VFS_OUT_WRITE:
    8989                        devfs_write(callid, &call);
    9090                        break;
    91                 case VFS_TRUNCATE:
     91                case VFS_OUT_TRUNCATE:
    9292                        devfs_truncate(callid, &call);
    9393                        break;
    94                 case VFS_CLOSE:
     94                case VFS_OUT_CLOSE:
    9595                        devfs_close(callid, &call);
    9696                        break;
    97                 case VFS_SYNC:
     97                case VFS_OUT_SYNC:
    9898                        devfs_sync(callid, &call);
    9999                        break;
    100                 case VFS_DESTROY:
     100                case VFS_OUT_DESTROY:
    101101                        devfs_destroy(callid, &call);
    102102                        break;
Note: See TracChangeset for help on using the changeset viewer.