Changeset 1dff985 in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2017-03-03T21:32:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- c577a9a
- Parents:
- 5b46ec8 (diff), b8dbe2f (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r5b46ec8 r1dff985 104 104 vfs_unmount_srv(callid, &call); 105 105 break; 106 case VFS_IN_OPEN: 107 vfs_open(callid, &call); 106 case VFS_IN_WALK: 107 vfs_walk(callid, &call); 108 break; 109 case VFS_IN_OPEN2: 110 vfs_open2(callid, &call); 108 111 break; 109 112 case VFS_IN_CLOSE: … … 125 128 vfs_fstat(callid, &call); 126 129 break; 127 case VFS_IN_STAT: 128 vfs_stat(callid, &call); 129 break; 130 case VFS_IN_MKDIR: 131 vfs_mkdir(callid, &call); 132 break; 133 case VFS_IN_UNLINK: 134 vfs_unlink(callid, &call); 130 case VFS_IN_UNLINK2: 131 vfs_unlink2(callid, &call); 135 132 break; 136 133 case VFS_IN_RENAME:
Note:
See TracChangeset
for help on using the changeset viewer.