Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/devfs/devfs_ops.c

    r4cac2d69 r1313ee9  
    419419       
    420420        /* 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);
    423422        if (retval != EOK) {
    424423                ipc_answer_0(rid, retval);
     
    433432{
    434433        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);
    445434}
    446435
Note: See TracChangeset for help on using the changeset viewer.