Changeset b5e68c8 in mainline for uspace/srv/fs/fat/fat.c


Ignore:
Timestamp:
2011-05-12T16:49:44Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36787d7
Parents:
e80329d6 (diff), 750636a (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/fat/fat.c

    re80329d6 rb5e68c8  
    3838
    3939#include "fat.h"
    40 #include <ipc/ipc.h>
    4140#include <ipc/services.h>
     41#include <ipc/ns.h>
    4242#include <async.h>
    4343#include <errno.h>
     
    5252vfs_info_t fat_vfs_info = {
    5353        .name = NAME,
     54        .concurrent_read_write = false,
     55        .write_retains_size = false,   
    5456};
    5557
     
    8284                 * created by IPC_M_CONNECT_TO_ME.
    8385                 */
    84                 ipc_answer_0(iid, EOK);
     86                async_answer_0(iid, EOK);
    8587        }
    8688       
     
    9193       
    9294                callid = async_get_call(&call);
    93                 switch  (IPC_GET_METHOD(call)) {
     95                switch  (IPC_GET_IMETHOD(call)) {
    9496                case IPC_M_PHONE_HUNGUP:
    9597                        return;
     
    134136                        break;
    135137                default:
    136                         ipc_answer_0(callid, ENOTSUP);
     138                        async_answer_0(callid, ENOTSUP);
    137139                        break;
    138140                }
     
    151153                goto err;
    152154
    153         vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
     155        vfs_phone = service_connect_blocking(SERVICE_VFS, 0, 0);
    154156        if (vfs_phone < EOK) {
    155157                printf(NAME ": failed to connect to VFS\n");
Note: See TracChangeset for help on using the changeset viewer.