Changes in uspace/srv/fs/devfs/devfs_ops.c [ed903174:3c11713] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs_ops.c
red903174 r3c11713 37 37 38 38 #include <ipc/ipc.h> 39 #include <macros.h>40 39 #include <bool.h> 41 40 #include <errno.h> … … 338 337 } 339 338 340 static aoff64_t devfs_size_get(fs_node_t *fn)339 static size_t devfs_size_get(fs_node_t *fn) 341 340 { 342 341 return 0; … … 420 419 421 420 /* Accept the mount options */ 422 ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0, 423 0, NULL); 421 ipcarg_t retval = async_data_string_receive(&opts, 0); 424 422 if (retval != EOK) { 425 423 ipc_answer_0(rid, retval); … … 464 462 { 465 463 fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request); 466 aoff64_t pos = 467 (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request)); 464 off_t pos = (off_t) IPC_GET_ARG3(*request); 468 465 469 466 if (index == 0) { … … 599 596 { 600 597 fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request); 598 off_t pos = (off_t) IPC_GET_ARG3(*request); 599 601 600 if (index == 0) { 602 601 ipc_answer_0(rid, ENOTSUP);
Note:
See TracChangeset
for help on using the changeset viewer.