Subversion Repositories HelenOS

Rev

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

Rev 2677 Rev 2678
Line 69... Line 69...
69
    aid_t req = async_send_0(vfs_phone, VFS_REGISTER, &answer);
69
    aid_t req = async_send_0(vfs_phone, VFS_REGISTER, &answer);
70
 
70
 
71
    /*
71
    /*
72
     * Send our VFS info structure to VFS.
72
     * Send our VFS info structure to VFS.
73
     */
73
     */
74
    int rc = ipc_data_write_send(vfs_phone, info, sizeof(*info));
74
    int rc = ipc_data_write_start(vfs_phone, info, sizeof(*info));
75
    if (rc != EOK) {
75
    if (rc != EOK) {
76
        async_wait_for(req, NULL);
76
        async_wait_for(req, NULL);
77
        return rc;
77
        return rc;
78
    }
78
    }
79
 
79
 
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_share_in_send_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
97
    rc = ipc_share_in_start_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
98
    if (rc) {
98
    if (rc) {
99
        async_wait_for(req, NULL);
99
        async_wait_for(req, NULL);
100
        return rc;
100
        return rc;
101
    }
101
    }
102
     
102