Changeset 4198f9c3 in mainline for uspace/lib/libfs/libfs.c
- Timestamp:
- 2009-06-28T13:43:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 852b801
- Parents:
- 6408be3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libfs/libfs.c
r6408be3 r4198f9c3 70 70 */ 71 71 ipc_call_t answer; 72 aid_t req = async_send_0(vfs_phone, VFS_ REGISTER, &answer);72 aid_t req = async_send_0(vfs_phone, VFS_IN_REGISTER, &answer); 73 73 74 74 /* … … 105 105 106 106 /* 107 * Pick up the answer for the request to the VFS_ REQUEST call.107 * Pick up the answer for the request to the VFS_IN_REQUEST call. 108 108 */ 109 109 async_wait_for(req, NULL); … … 187 187 188 188 ipc_call_t answer; 189 aid_t msg = async_send_1(mountee_phone, VFS_ MOUNTED, mr_dev_handle,189 aid_t msg = async_send_1(mountee_phone, VFS_OUT_MOUNTED, mr_dev_handle, 190 190 &answer); 191 191 ipc_forward_fast(callid, mountee_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME); … … 214 214 * @param fs_handle File system handle of the file system where to perform 215 215 * the lookup. 216 * @param rid Request ID of the VFS_ LOOKUP request.217 * @param request VFS_ LOOKUP request data itself.216 * @param rid Request ID of the VFS_OUT_LOOKUP request. 217 * @param request VFS_OUT_LOOKUP request data itself. 218 218 * 219 219 */ … … 238 238 239 239 if (cur->mp_data.mp_active) { 240 ipc_forward_slow(rid, cur->mp_data.phone, VFS_ LOOKUP,240 ipc_forward_slow(rid, cur->mp_data.phone, VFS_OUT_LOOKUP, 241 241 next, last, cur->mp_data.dev_handle, lflag, index, 242 242 IPC_FF_ROUTE_FROM_ME); … … 273 273 next--; 274 274 275 ipc_forward_slow(rid, tmp->mp_data.phone, VFS_LOOKUP,276 next, last, tmp->mp_data.dev_handle, lflag, index,277 IPC_FF_ROUTE_FROM_ME);275 ipc_forward_slow(rid, tmp->mp_data.phone, 276 VFS_OUT_LOOKUP, next, last, tmp->mp_data.dev_handle, 277 lflag, index, IPC_FF_ROUTE_FROM_ME); 278 278 ops->node_put(cur); 279 279 ops->node_put(tmp); … … 433 433 * @param ops libfs operations structure with function pointers to 434 434 * file system implementation 435 * @param rid Request ID of the VFS_O PEN_NODE request.436 * @param request VFS_O PEN_NODE request data itself.435 * @param rid Request ID of the VFS_OUT_OPEN_NODE request. 436 * @param request VFS_OUT_OPEN_NODE request data itself. 437 437 * 438 438 */
Note:
See TracChangeset
for help on using the changeset viewer.