Subversion Repositories HelenOS

Rev

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

Rev 2588 Rev 2615
Line 155... Line 155...
155
    }
155
    }
156
 
156
 
157
    /*
157
    /*
158
     * Request sharing the Path Lookup Buffer with VFS.
158
     * Request sharing the Path Lookup Buffer with VFS.
159
     */
159
     */
160
    rc = ipc_call_sync_3(vfs_phone, IPC_M_AS_AREA_RECV, (ipcarg_t) plb_ro,
160
    rc = ipc_call_sync_2_0(vfs_phone, IPC_M_AS_AREA_RECV, (ipcarg_t) plb_ro,
161
        PLB_SIZE, 0, NULL, NULL, NULL);
161
        PLB_SIZE);
162
    if (rc) {
162
    if (rc) {
163
        async_wait_for(req, NULL);
163
        async_wait_for(req, NULL);
164
        return rc;
164
        return rc;
165
    }
165
    }
166
     
166