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