Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    r286286c rc69646f8  
    146146
    147147                        rindex = (fs_index_t) IPC_GET_ARG1(answer);
    148                         rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer),
    149                             IPC_GET_ARG3(answer));
     148                        rsize = (aoff64_t) MERGE_LOUP32(IPC_GET_ARG2(answer), IPC_GET_ARG3(answer));
    150149                        rlnkcnt = (unsigned) IPC_GET_ARG4(answer);
    151150                       
     
    277276       
    278277        /*
    279          * Instance number is passed as ARG3.
    280          */
    281         unsigned int instance = IPC_GET_ARG3(*request);
    282 
     278         * For now, don't make use of ARG3, but it can be used to
     279         * carry mount options in the future.
     280         */
     281       
    283282        /* We want the client to send us the mount point. */
    284283        char *mp;
     
    336335        fs_handle_t fs_handle;
    337336recheck:
    338         fs_handle = fs_name_to_handle(instance, fs_name, false);
     337        fs_handle = fs_name_to_handle(fs_name, false);
    339338        if (!fs_handle) {
    340339                if (flags & IPC_FLAG_BLOCKING) {
Note: See TracChangeset for help on using the changeset viewer.