Changes in uspace/srv/vfs/vfs_pager.c [1b20da0:77f0a1d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_pager.c
r1b20da0 r77f0a1d 42 42 #include <as.h> 43 43 44 void vfs_page_in( ipc_callid_t rid, ipc_call_t *request)44 void vfs_page_in(cap_call_handle_t req_handle, ipc_call_t *request) 45 45 { 46 46 aoff64_t offset = IPC_GET_ARG1(*request); … … 55 55 56 56 if (page == AS_MAP_FAILED) { 57 async_answer_0(r id, ENOMEM);57 async_answer_0(req_handle, ENOMEM); 58 58 return; 59 59 } … … 78 78 } while (total < page_size); 79 79 80 async_answer_1(r id, rc, (sysarg_t) page);80 async_answer_1(req_handle, rc, (sysarg_t) page); 81 81 82 82 /*
Note:
See TracChangeset
for help on using the changeset viewer.