Changeset 19f24fd in mainline for uspace/srv/fs/devfs/devfs_ops.c


Ignore:
Timestamp:
2010-02-05T22:25:52Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    r83349b03 r19f24fd  
    419419       
    420420        /* 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);
    422423        if (retval != EOK) {
    423424                ipc_answer_0(rid, retval);
     
    432433{
    433434        libfs_mount(&devfs_libfs_ops, devfs_reg.fs_handle, rid, request);
     435}
     436
     437void devfs_unmounted(ipc_callid_t rid, ipc_call_t *request)
     438{
     439        ipc_answer_0(rid, ENOTSUP);
     440}
     441
     442void devfs_unmount(ipc_callid_t rid, ipc_call_t *request)
     443{
     444        libfs_unmount(&devfs_libfs_ops, rid, request);
    434445}
    435446
Note: See TracChangeset for help on using the changeset viewer.