Changeset 1affcdf3 in mainline for uspace/srv/vfs/vfs_lookup.c


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (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

    r13ecdac9 r1affcdf3  
    159159
    160160        ipc_call_t answer;
    161         int phone = vfs_grab_phone(root->fs_handle);
    162         aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (sysarg_t) first,
     161        async_exch_t *exch = vfs_exchange_grab(root->fs_handle);
     162        aid_t req = async_send_5(exch, VFS_OUT_LOOKUP, (sysarg_t) first,
    163163            (sysarg_t) (first + len - 1) % PLB_SIZE,
    164164            (sysarg_t) root->devmap_handle, (sysarg_t) lflag, (sysarg_t) index,
     
    167167        sysarg_t rc;
    168168        async_wait_for(req, &rc);
    169         vfs_release_phone(root->fs_handle, phone);
     169        vfs_exchange_release(exch);
    170170       
    171171        fibril_mutex_lock(&plb_mutex);
     
    208208int vfs_open_node_internal(vfs_lookup_res_t *result)
    209209{
    210         int phone = vfs_grab_phone(result->triplet.fs_handle);
     210        async_exch_t *exch = vfs_exchange_grab(result->triplet.fs_handle);
    211211       
    212212        ipc_call_t answer;
    213         aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE,
     213        aid_t req = async_send_2(exch, VFS_OUT_OPEN_NODE,
    214214            (sysarg_t) result->triplet.devmap_handle,
    215215            (sysarg_t) result->triplet.index, &answer);
     
    217217        sysarg_t rc;
    218218        async_wait_for(req, &rc);
    219         vfs_release_phone(result->triplet.fs_handle, phone);
     219        vfs_exchange_release(exch);
    220220       
    221221        if (rc == EOK) {
Note: See TracChangeset for help on using the changeset viewer.