Changeset 19f24fd in mainline for uspace/srv/fs/devfs/devfs_ops.c
- Timestamp:
- 2010-02-05T22:25:52Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dafa2d04
- Parents:
- 83349b03 (diff), d42976c (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/fs/devfs/devfs_ops.c
r83349b03 r19f24fd 419 419 420 420 /* Accept the mount options */ 421 ipcarg_t retval = async_data_string_receive(&opts, 0); 421 ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0, 422 0, NULL); 422 423 if (retval != EOK) { 423 424 ipc_answer_0(rid, retval); … … 432 433 { 433 434 libfs_mount(&devfs_libfs_ops, devfs_reg.fs_handle, rid, request); 435 } 436 437 void devfs_unmounted(ipc_callid_t rid, ipc_call_t *request) 438 { 439 ipc_answer_0(rid, ENOTSUP); 440 } 441 442 void devfs_unmount(ipc_callid_t rid, ipc_call_t *request) 443 { 444 libfs_unmount(&devfs_libfs_ops, rid, request); 434 445 } 435 446
Note:
See TracChangeset
for help on using the changeset viewer.