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

    r6408be3 r4198f9c3  
    160160        ipc_call_t answer;
    161161        int phone = vfs_grab_phone(root->fs_handle);
    162         aid_t req = async_send_5(phone, VFS_LOOKUP, (ipcarg_t) first,
     162        aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (ipcarg_t) first,
    163163            (ipcarg_t) (first + len - 1) % PLB_SIZE,
    164164            (ipcarg_t) root->dev_handle, (ipcarg_t) lflag, (ipcarg_t) index,
     
    205205       
    206206        ipc_call_t answer;
    207         aid_t req = async_send_2(phone, VFS_OPEN_NODE,
     207        aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE,
    208208            (ipcarg_t) result->triplet.dev_handle,
    209209            (ipcarg_t) result->triplet.index, &answer);
Note: See TracChangeset for help on using the changeset viewer.