Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs.c

    r3c11713 rffa2c8ef  
    4242
    4343#include "tmpfs.h"
    44 #include <ipc/ipc.h>
    4544#include <ipc/services.h>
     45#include <ipc/ns.h>
    4646#include <async.h>
    4747#include <errno.h>
     
    5757vfs_info_t tmpfs_vfs_info = {
    5858        .name = NAME,
     59        .concurrent_read_write = false,
     60        .write_retains_size = false,
    5961};
    6062
     
    8890                 * created by IPC_M_CONNECT_TO_ME.
    8991                 */
    90                 ipc_answer_0(iid, EOK);
     92                async_answer_0(iid, EOK);
    9193        }
    9294       
     
    9799       
    98100                callid = async_get_call(&call);
    99                 switch  (IPC_GET_METHOD(call)) {
     101                switch  (IPC_GET_IMETHOD(call)) {
    100102                case IPC_M_PHONE_HUNGUP:
    101103                        return;
     
    140142                        break;
    141143                default:
    142                         ipc_answer_0(callid, ENOTSUP);
     144                        async_answer_0(callid, ENOTSUP);
    143145                        break;
    144146                }
     
    155157        }
    156158
    157         int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
     159        int vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);
    158160        if (vfs_phone < EOK) {
    159161                printf(NAME ": Unable to connect to VFS\n");
Note: See TracChangeset for help on using the changeset viewer.