Changeset ab936440 in mainline for uspace/srv/vfs/vfs_ops.c
- Timestamp:
- 2019-02-12T20:42:42Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f31ca47
- Parents:
- 7f7817a9 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:26:18)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:42:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
r7f7817a9 rab936440 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 … … 892 892 rc = vfs_fd_alloc(&file, false, out_fd); 893 893 if (rc != EOK) { 894 fibril_rwlock_read_unlock(&namespace_rwlock); 894 895 vfs_node_put(node); 895 896 vfs_file_put(parent);
Note:
See TracChangeset
for help on using the changeset viewer.