Changeset 4f13e19 in mainline for uspace/srv
- Timestamp:
- 2019-01-20T15:56:59Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8cb48d
- Parents:
- eefdd7c
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-01-20 15:56:59)
- git-committer:
- GitHub <noreply@…> (2019-01-20 15:56:59)
- Location:
- uspace/srv
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
reefdd7c r4f13e19 136 136 137 137 async_exch_t *exch = async_exchange_begin(driver->sess); 138 async_forward_ fast(icall, exch, INTERFACE_DDF_CLIENT, handle, 0, IPC_FF_NONE);138 async_forward_1(icall, exch, INTERFACE_DDF_CLIENT, handle, IPC_FF_NONE); 139 139 async_exchange_end(exch); 140 140 … … 215 215 216 216 async_exch_t *exch = async_exchange_begin(driver->sess); 217 async_forward_ fast(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, 0, IPC_FF_NONE);217 async_forward_1(icall, exch, INTERFACE_DDF_DRIVER, fun_handle, IPC_FF_NONE); 218 218 async_exchange_end(exch); 219 219 … … 250 250 251 251 async_exch_t *exch = async_exchange_begin(driver->sess); 252 async_forward_ fast(icall, exch, iface, handle, 0, IPC_FF_NONE);252 async_forward_1(icall, exch, iface, handle, IPC_FF_NONE); 253 253 async_exchange_end(exch); 254 254 -
uspace/srv/fs/locfs/locfs_ops.c
reefdd7c r4f13e19 583 583 584 584 /* Forward the IPC_M_DATA_READ request to the driver */ 585 async_forward_ fast(&call, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);585 async_forward_0(&call, exch, 0, IPC_FF_ROUTE_FROM_ME); 586 586 587 587 async_exchange_end(exch); … … 647 647 648 648 /* Forward the IPC_M_DATA_WRITE request to the driver */ 649 async_forward_ fast(&call, exch, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);649 async_forward_0(&call, exch, 0, IPC_FF_ROUTE_FROM_ME); 650 650 651 651 async_exchange_end(exch); -
uspace/srv/locsrv/locsrv.c
reefdd7c r4f13e19 726 726 727 727 async_exch_t *exch = async_exchange_begin(svc->server->sess); 728 async_forward_ fast(call, exch, iface, svc->id, 0, IPC_FF_NONE);728 async_forward_1(call, exch, iface, svc->id, IPC_FF_NONE); 729 729 async_exchange_end(exch); 730 730 -
uspace/srv/ns/clonable.c
reefdd7c r4f13e19 94 94 95 95 async_exch_t *exch = async_exchange_begin(sess); 96 async_forward_ fast(&csr->call, exch, csr->iface,97 IPC_GET_ARG3(csr->call), 0,IPC_FF_NONE);96 async_forward_1(&csr->call, exch, csr->iface, 97 IPC_GET_ARG3(csr->call), IPC_FF_NONE); 98 98 async_exchange_end(exch); 99 99 -
uspace/srv/ns/service.c
reefdd7c r4f13e19 154 154 { 155 155 async_exch_t *exch = async_exchange_begin(sess); 156 async_forward_fast(call, exch, iface, IPC_GET_ARG3(*call), 0, 157 IPC_FF_NONE); 156 async_forward_1(call, exch, iface, IPC_GET_ARG3(*call), IPC_FF_NONE); 158 157 async_exchange_end(exch); 159 158 } -
uspace/srv/vfs/vfs_ops.c
reefdd7c r4f13e19 637 637 638 638 async_exch_t *exch = vfs_exchange_grab(node->fs_handle); 639 errno_t rc = async_data_read_forward_ fast(exch, VFS_OUT_STAT,640 node->service_id, node->index, true , 0, NULL);639 errno_t rc = async_data_read_forward_3_0(exch, VFS_OUT_STAT, 640 node->service_id, node->index, true); 641 641 vfs_exchange_release(exch); 642 642 … … 654 654 655 655 async_exch_t *exch = vfs_exchange_grab(node->fs_handle); 656 errno_t rc = async_data_read_forward_ fast(exch, VFS_OUT_STATFS,657 node->service_id, node->index, false , 0, NULL);656 errno_t rc = async_data_read_forward_3_0(exch, VFS_OUT_STATFS, 657 node->service_id, node->index, false); 658 658 vfs_exchange_release(exch); 659 659
Note:
See TracChangeset
for help on using the changeset viewer.