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