Changeset 03bc76a in mainline for uspace/srv/fs/minixfs/mfs_rw.c


Ignore:
Timestamp:
2011-09-04T12:33:10Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c699b0c
Parents:
8ff0bd2
Message:

Get rid of VFS_OUT method switch and IPC unmarshalling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs_rw.c

    r8ff0bd2 r03bc76a  
    296296        int r;
    297297
    298         r = block_get(&b, inst->handle, zone, BLOCK_FLAGS_NOREAD);
     298        r = block_get(&b, inst->service_id, zone, BLOCK_FLAGS_NOREAD);
    299299        on_error(r, return r);
    300300
     
    331331                return ENOMEM;
    332332
    333         r = block_get(&b, inst->handle, zone, BLOCK_FLAGS_NONE);
     333        r = block_get(&b, inst->service_id, zone, BLOCK_FLAGS_NONE);
    334334        if (r != EOK) {
    335335                free(*ind_zone);
     
    360360        block_t *b;
    361361
    362         r = block_get(&b, inst->handle, zone, BLOCK_FLAGS_NONE);
     362        r = block_get(&b, inst->service_id, zone, BLOCK_FLAGS_NONE);
    363363        on_error(r, return r);
    364364
Note: See TracChangeset for help on using the changeset viewer.