Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4438 → Rev 4439

/branches/dd/uspace/lib/libfs/libfs.c
127,7 → 127,8
memset(fn, 0, sizeof(fs_node_t));
}
 
void libfs_mount(libfs_ops_t *ops, ipc_callid_t rid, ipc_call_t *request)
void libfs_mount(libfs_ops_t *ops, fs_handle_t fs_handle, ipc_callid_t rid,
ipc_call_t *request)
{
dev_handle_t mp_dev_handle = (dev_handle_t) IPC_GET_ARG1(*request);
fs_index_t mp_fs_index = (fs_index_t) IPC_GET_ARG2(*request);
198,7 → 199,8
/*
* Do not release the FS node so that it stays in memory.
*/
ipc_answer_0(rid, rc);
ipc_answer_3(rid, rc, IPC_GET_ARG1(answer), IPC_GET_ARG2(answer),
IPC_GET_ARG3(answer));
}
 
/** Lookup VFS triplet by name in the file system name space.