Changes in uspace/srv/vfs/vfs_ops.c [c69646f8:286286c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
rc69646f8 r286286c 146 146 147 147 rindex = (fs_index_t) IPC_GET_ARG1(answer); 148 rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer), IPC_GET_ARG3(answer)); 148 rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer), 149 IPC_GET_ARG3(answer)); 149 150 rlnkcnt = (unsigned) IPC_GET_ARG4(answer); 150 151 … … 276 277 277 278 /* 278 * For now, don't make use of ARG3, but it can be used to279 * carry mount options in the future.280 */281 279 * Instance number is passed as ARG3. 280 */ 281 unsigned int instance = IPC_GET_ARG3(*request); 282 282 283 /* We want the client to send us the mount point. */ 283 284 char *mp; … … 335 336 fs_handle_t fs_handle; 336 337 recheck: 337 fs_handle = fs_name_to_handle( fs_name, false);338 fs_handle = fs_name_to_handle(instance, fs_name, false); 338 339 if (!fs_handle) { 339 340 if (flags & IPC_FLAG_BLOCKING) {
Note:
See TracChangeset
for help on using the changeset viewer.