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