Changes in uspace/srv/fs/devfs/devfs_ops.c [4cac2d69:1313ee9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs_ops.c
r4cac2d69 r1313ee9 419 419 420 420 /* Accept the mount options */ 421 ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0, 422 0, NULL); 421 ipcarg_t retval = async_data_string_receive(&opts, 0); 423 422 if (retval != EOK) { 424 423 ipc_answer_0(rid, retval); … … 433 432 { 434 433 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);445 434 } 446 435
Note:
See TracChangeset
for help on using the changeset viewer.