Ignore:
File:
1 edited

Legend:

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

    red903174 r1313ee9  
    3737
    3838#include <ipc/ipc.h>
    39 #include <macros.h>
    4039#include <bool.h>
    4140#include <errno.h>
     
    338337}
    339338
    340 static aoff64_t devfs_size_get(fs_node_t *fn)
     339static size_t devfs_size_get(fs_node_t *fn)
    341340{
    342341        return 0;
     
    420419       
    421420        /* Accept the mount options */
    422         ipcarg_t retval = async_data_write_accept((void **) &opts, true, 0, 0,
    423             0, NULL);
     421        ipcarg_t retval = async_data_string_receive(&opts, 0);
    424422        if (retval != EOK) {
    425423                ipc_answer_0(rid, retval);
     
    436434}
    437435
    438 void devfs_unmounted(ipc_callid_t rid, ipc_call_t *request)
    439 {
    440         ipc_answer_0(rid, ENOTSUP);
    441 }
    442 
    443 void devfs_unmount(ipc_callid_t rid, ipc_call_t *request)
    444 {
    445         libfs_unmount(&devfs_libfs_ops, rid, request);
    446 }
    447 
    448436void devfs_lookup(ipc_callid_t rid, ipc_call_t *request)
    449437{
     
    464452{
    465453        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
    466         aoff64_t pos =
    467             (aoff64_t) MERGE_LOUP32(IPC_GET_ARG3(*request), IPC_GET_ARG4(*request));
     454        off_t pos = (off_t) IPC_GET_ARG3(*request);
    468455       
    469456        if (index == 0) {
     
    599586{
    600587        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     588        off_t pos = (off_t) IPC_GET_ARG3(*request);
     589       
    601590        if (index == 0) {
    602591                ipc_answer_0(rid, ENOTSUP);
Note: See TracChangeset for help on using the changeset viewer.