Changeset cf2af94 in mainline for uspace/srv/fs/ext2/ext2_ops.c


Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (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

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified uspace/srv/fs/ext2/ext2_ops.c

    ra49c4002 rcf2af94  
    4141#include <libblock.h>
    4242#include <libext2.h>
    43 #include <ipc/ipc.h>
    4443#include <ipc/services.h>
    4544#include <ipc/devmap.h>
     
    219218//      devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
    220219        // TODO
    221         ipc_answer_0(rid, ENOTSUP);
     220        async_answer_0(rid, ENOTSUP);
    222221}
    223222
     
    231230//      devmap_handle_t devmap_handle = (devmap_handle_t) IPC_GET_ARG1(*request);
    232231        // TODO
    233         ipc_answer_0(rid, ENOTSUP);
     232        async_answer_0(rid, ENOTSUP);
    234233}
    235234
     
    252251       
    253252        // TODO
    254         ipc_answer_0(rid, ENOTSUP);
     253        async_answer_0(rid, ENOTSUP);
    255254}
    256255
     
    263262       
    264263        // TODO
    265         ipc_answer_0(rid, ENOTSUP);
     264        async_answer_0(rid, ENOTSUP);
    266265}
    267266
     
    274273       
    275274        // TODO
    276         ipc_answer_0(rid, ENOTSUP);
     275        async_answer_0(rid, ENOTSUP);
    277276}
    278277
    279278void ext2_close(ipc_callid_t rid, ipc_call_t *request)
    280279{
    281         ipc_answer_0(rid, EOK);
     280        async_answer_0(rid, EOK);
    282281}
    283282
     
    288287       
    289288        // TODO
    290         ipc_answer_0(rid, ENOTSUP);
     289        async_answer_0(rid, ENOTSUP);
    291290}
    292291
     
    307306       
    308307        // TODO
    309         ipc_answer_0(rid, ENOTSUP);
     308        async_answer_0(rid, ENOTSUP);
    310309}
    311310
Note: See TracChangeset for help on using the changeset viewer.