Subversion Repositories HelenOS

Rev

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

Rev 2660 Rev 2677
Line 92... Line 92...
92
    }
92
    }
93
 
93
 
94
    /*
94
    /*
95
     * Request sharing the Path Lookup Buffer with VFS.
95
     * Request sharing the Path Lookup Buffer with VFS.
96
     */
96
     */
97
    rc = ipc_call_sync_2_0(vfs_phone, IPC_M_AS_AREA_RECV,
97
    rc = ipc_share_in_send_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
98
        (ipcarg_t) reg->plb_ro, PLB_SIZE);
-
 
99
    if (rc) {
98
    if (rc) {
100
        async_wait_for(req, NULL);
99
        async_wait_for(req, NULL);
101
        return rc;
100
        return rc;
102
    }
101
    }
103
     
102