Subversion Repositories HelenOS

Rev

Rev 2590 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2590 Rev 2653
Line 143... Line 143...
143
    memcpy(plb, &path[cnt1], cnt2);
143
    memcpy(plb, &path[cnt1], cnt2);
144
 
144
 
145
    ipc_call_t answer;
145
    ipc_call_t answer;
146
    int phone = vfs_grab_phone(root->fs_handle);
146
    int phone = vfs_grab_phone(root->fs_handle);
147
    aid_t req = async_send_3(phone, VFS_LOOKUP, (ipcarg_t) first,
147
    aid_t req = async_send_3(phone, VFS_LOOKUP, (ipcarg_t) first,
-
 
148
        (ipcarg_t) (first + len - 1) % PLB_SIZE,
148
        (ipcarg_t) last, (ipcarg_t) root->dev_handle, &answer);
149
        (ipcarg_t) root->dev_handle, &answer);
149
    vfs_release_phone(phone);
150
    vfs_release_phone(phone);
150
 
151
 
151
    ipcarg_t rc;
152
    ipcarg_t rc;
152
    async_wait_for(req, &rc);
153
    async_wait_for(req, &rc);
153
 
154