Subversion Repositories HelenOS

Rev

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

Rev 2660 Rev 2676
Line 84... Line 84...
84
 
84
 
85
    /*
85
    /*
86
     * Now, we expect the client to send us data with the name of the file
86
     * Now, we expect the client to send us data with the name of the file
87
     * system.
87
     * system.
88
     */
88
     */
89
    if (!ipc_data_write_receive(&callid, NULL, &size)) {
89
    if (!ipc_data_write_receive(&callid, &size)) {
90
        ipc_answer_0(callid, EINVAL);
90
        ipc_answer_0(callid, EINVAL);
91
        ipc_answer_0(rid, EINVAL);
91
        ipc_answer_0(rid, EINVAL);
92
        return;
92
        return;
93
    }
93
    }
94
 
94
 
Line 120... Line 120...
120
    }
120
    }
121
 
121
 
122
    /*
122
    /*
123
     * Now, we want the client to send us the mount point.
123
     * Now, we want the client to send us the mount point.
124
     */
124
     */
125
    if (!ipc_data_write_receive(&callid, NULL, &size)) {
125
    if (!ipc_data_write_receive(&callid, &size)) {
126
        ipc_answer_0(callid, EINVAL);
126
        ipc_answer_0(callid, EINVAL);
127
        ipc_answer_0(rid, EINVAL);
127
        ipc_answer_0(rid, EINVAL);
128
        return;
128
        return;
129
    }
129
    }
130
 
130