Changeset 87b4baa in mainline for uspace/srv/vfs/vfs_lookup.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_lookup.c
r463e734 r87b4baa 161 161 ipc_call_t answer; 162 162 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, 166 166 &answer); 167 167 168 ipcarg_t rc;168 sysarg_t rc; 169 169 async_wait_for(req, &rc); 170 170 vfs_release_phone(root->fs_handle, phone); … … 210 210 ipc_call_t answer; 211 211 aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE, 212 ( ipcarg_t) result->triplet.devmap_handle,213 ( ipcarg_t) result->triplet.index, &answer);214 215 ipcarg_t rc;212 (sysarg_t) result->triplet.devmap_handle, 213 (sysarg_t) result->triplet.index, &answer); 214 215 sysarg_t rc; 216 216 async_wait_for(req, &rc); 217 217 vfs_release_phone(result->triplet.fs_handle, phone);
Note:
See TracChangeset
for help on using the changeset viewer.