Changeset fdbc3ff in mainline for uspace/srv/vfs/vfs_lookup.c
- Timestamp:
- 2010-11-19T23:50:06Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46d4d9f
- Parents:
- b4c9c61 (diff), a9c6b966 (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
rb4c9c61 rfdbc3ff 163 163 aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (ipcarg_t) first, 164 164 (ipcarg_t) (first + len - 1) % PLB_SIZE, 165 (ipcarg_t) root->dev _handle, (ipcarg_t) lflag, (ipcarg_t) index,165 (ipcarg_t) root->devmap_handle, (ipcarg_t) lflag, (ipcarg_t) index, 166 166 &answer); 167 167 … … 183 183 184 184 result->triplet.fs_handle = (fs_handle_t) rc; 185 result->triplet.dev _handle = (dev_handle_t) IPC_GET_ARG1(answer);185 result->triplet.devmap_handle = (devmap_handle_t) IPC_GET_ARG1(answer); 186 186 result->triplet.index = (fs_index_t) IPC_GET_ARG2(answer); 187 187 result->size = … … 210 210 ipc_call_t answer; 211 211 aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE, 212 (ipcarg_t) result->triplet.dev _handle,212 (ipcarg_t) result->triplet.devmap_handle, 213 213 (ipcarg_t) result->triplet.index, &answer); 214 214
Note:
See TracChangeset
for help on using the changeset viewer.