Changeset 357b5f5 in mainline for uspace/srv/vfs/vfs_lookup.c


Ignore:
Timestamp:
2011-01-23T20:09:13Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fdb9982c
Parents:
cead2aa (diff), 7e36c8d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_lookup.c

    rcead2aa r357b5f5  
    161161        ipc_call_t answer;
    162162        int phone = vfs_grab_phone(root->fs_handle);
    163         aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (ipcarg_t) first,
    164             (ipcarg_t) (first + len - 1) % PLB_SIZE,
    165             (ipcarg_t) root->devmap_handle, (ipcarg_t) lflag, (ipcarg_t) index,
     163        aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (sysarg_t) first,
     164            (sysarg_t) (first + len - 1) % PLB_SIZE,
     165            (sysarg_t) root->devmap_handle, (sysarg_t) lflag, (sysarg_t) index,
    166166            &answer);
    167167       
    168         ipcarg_t rc;
     168        sysarg_t rc;
    169169        async_wait_for(req, &rc);
    170170        vfs_release_phone(root->fs_handle, phone);
     
    213213        ipc_call_t answer;
    214214        aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE,
    215             (ipcarg_t) result->triplet.devmap_handle,
    216             (ipcarg_t) result->triplet.index, &answer);
    217        
    218         ipcarg_t rc;
     215            (sysarg_t) result->triplet.devmap_handle,
     216            (sysarg_t) result->triplet.index, &answer);
     217       
     218        sysarg_t rc;
    219219        async_wait_for(req, &rc);
    220220        vfs_release_phone(result->triplet.fs_handle, phone);
Note: See TracChangeset for help on using the changeset viewer.