Changes in uspace/srv/vfs/vfs.c [0fe52ef:27b76ca] in mainline


Ignore:
File:
1 edited

Legend:

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

    r0fe52ef r27b76ca  
    3636 */
    3737
    38 #include <vfs/vfs.h>
    3938#include <ipc/services.h>
    4039#include <abi/ipc/event.h>
     
    4847#include <as.h>
    4948#include <atomic.h>
    50 #include <macros.h>
     49#include <vfs/vfs.h>
    5150#include "vfs.h"
    5251
    5352#define NAME  "vfs"
    54 
    55 enum {
    56         VFS_TASK_STATE_CHANGE
    57 };
    5853
    5954static void vfs_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
     
    139134}
    140135
     136enum {
     137        VFS_TASK_STATE_CHANGE
     138};
     139
    141140static void notification_received(ipc_callid_t callid, ipc_call_t *call)
    142141{
     
    144143        case VFS_TASK_STATE_CHANGE:
    145144                if (IPC_GET_ARG1(*call) == VFS_PASS_HANDLE)
    146                         vfs_pass_handle(
    147                             (task_id_t) MERGE_LOUP32(IPC_GET_ARG4(*call),
    148                             IPC_GET_ARG5(*call)), call->in_task_id,
    149                             (int) IPC_GET_ARG2(*call));
     145                        vfs_pass_handle(IPC_GET_ARG4(*call),
     146                            IPC_GET_ARG5(*call), (int) IPC_GET_ARG2(*call));
    150147                break;
    151148        default:
Note: See TracChangeset for help on using the changeset viewer.