Changeset c2e50d7 in mainline


Ignore:
Timestamp:
2011-11-11T19:47:49Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
54464f6a
Parents:
48902fa
Message:

cstyle

Location:
uspace/srv/fs/mfs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/mfs/mfs_balloc.c

    r48902fa rc2e50d7  
    198198                limit = sbi->nzones - sbi->firstdatazone - 1;
    199199        } else {
    200                 /*bid == BMAP_INODE*/
     200                /* bid == BMAP_INODE */
    201201                search = &sbi->isearch;
    202202                start_block = 2;
     
    212212        for (i = *search / bits_per_block; i < nblocks; ++i) {
    213213                r = block_get(&b, inst->service_id, i + start_block,
    214                               BLOCK_FLAGS_NONE);
     214                    BLOCK_FLAGS_NONE);
    215215
    216216                if (r != EOK)
  • uspace/srv/fs/mfs/mfs_dentry.c

    r48902fa rc2e50d7  
    168168                return ENAMETOOLONG;
    169169
    170         /*Search the directory entry to be removed*/
     170        /* Search the directory entry to be removed */
    171171        unsigned i;
    172172        for (i = 0; i < mnode->ino_i->i_size / sbi->dirsize ; ++i) {
  • uspace/srv/fs/mfs/mfs_inode.c

    r48902fa rc2e50d7  
    235235
    236236        r = block_get(&b, mnode->instance->service_id,
    237                       itable_off + inum / sbi->ino_per_block,
    238                       BLOCK_FLAGS_NONE);
     237            itable_off + inum / sbi->ino_per_block,
     238            BLOCK_FLAGS_NONE);
    239239
    240240        if (r != EOK)
     
    278278
    279279        r = block_get(&b, mnode->instance->service_id,
    280                       itable_off + inum / sbi->ino_per_block,
    281                       BLOCK_FLAGS_NONE);
     280            itable_off + inum / sbi->ino_per_block,
     281            BLOCK_FLAGS_NONE);
    282282
    283283        if (r != EOK)
  • uspace/srv/fs/mfs/mfs_ops.c

    r48902fa rc2e50d7  
    837837found:
    838838                async_data_read_finalize(callid, d_info.d_name,
    839                                         str_size(d_info.d_name) + 1);
     839                    str_size(d_info.d_name) + 1);
    840840                bytes = ((pos - spos) + 1);
    841841        } else {
Note: See TracChangeset for help on using the changeset viewer.