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


Ignore:
Timestamp:
2011-09-04T12:33:10Z (14 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_balloc.c

    r8ff0bd2 r03bc76a  
    150150        uint32_t block = idx / (sbi->block_size * 8) + start_block;
    151151
    152         r = block_get(&b, inst->handle, block, BLOCK_FLAGS_NONE);
     152        r = block_get(&b, inst->service_id, block, BLOCK_FLAGS_NONE);
    153153        on_error(r, goto out_err);
    154154
     
    216216
    217217        for (i = *search / bits_per_block; i < nblocks; ++i) {
    218                 r = block_get(&b, inst->handle, i + start_block,
     218                r = block_get(&b, inst->service_id, i + start_block,
    219219                              BLOCK_FLAGS_NONE);
    220220
Note: See TracChangeset for help on using the changeset viewer.