Changes in uspace/lib/c/generic/vfs/vfs.c [286286c:9ea7d90] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
r286286c r9ea7d90 143 143 144 144 int mount(const char *fs_name, const char *mp, const char *fqsn, 145 const char *opts, unsigned int flags , unsigned int instance)145 const char *opts, unsigned int flags) 146 146 { 147 147 int null_id = -1; … … 181 181 182 182 sysarg_t rc_orig; 183 aid_t req = async_send_3(exch, VFS_IN_MOUNT, service_id, flags, 184 instance, NULL); 183 aid_t req = async_send_2(exch, VFS_IN_MOUNT, service_id, flags, NULL); 185 184 sysarg_t rc = async_data_write_start(exch, (void *) mpa, mpa_size); 186 185 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.