Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2741 → Rev 2742

/trunk/uspace/srv/vfs/vfs_node.c
131,8 → 131,8
*/
int phone = vfs_grab_phone(node->fs_handle);
ipcarg_t rc;
rc = async_req_2_0(phone, VFS_FREE, (ipcarg_t)node->dev_handle,
(ipcarg_t)node->index);
rc = async_req_2_0(phone, VFS_DESTROY,
(ipcarg_t)node->dev_handle, (ipcarg_t)node->index);
assert(rc == EOK);
vfs_release_phone(phone);
}