Changeset fe61181 in mainline for uspace/lib/ext4/libext4_extent.c


Ignore:
Timestamp:
2012-07-21T08:19:33Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0b293a6
Parents:
34bc2fe
Message:

Debug messages removed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_extent.c

    r34bc2fe rfe61181  
    506506        rc = ext4_balloc_free_blocks(inode_ref, start, block_count);
    507507        if (rc != EOK) {
    508                 EXT4FS_DBG("Error in releasing data blocks");
    509508                return rc;
    510509        }
     
    534533        rc = block_get(&block, inode_ref->fs->device, fblock, BLOCK_FLAGS_NONE);
    535534        if (rc != EOK) {
    536                 EXT4FS_DBG("ERROR get_block");
    537535                return rc;
    538536        }
     
    550548                        rc = ext4_extent_release_branch(inode_ref, idx);
    551549                        if (rc != EOK) {
    552                                 EXT4FS_DBG("error recursion");
    553550                                return rc;
    554551                        }
     
    564561                        rc = ext4_extent_release(inode_ref, ext);
    565562                        if (rc != EOK) {
    566                                 EXT4FS_DBG("error recursion");
    567563                                return rc;
    568564                        }
     
    574570        rc = block_put(block);
    575571        if (rc != EOK) {
    576                 EXT4FS_DBG("ERROR block_put returned \%d", rc);
    577572                return rc;
    578573        }
     
    837832                rc = ext4_balloc_alloc_block(inode_ref, &new_fblock);
    838833                if (rc != EOK) {
    839                         EXT4FS_DBG("error in block allocation");
    840834                        return rc;
    841835                }
     
    845839                                new_fblock, BLOCK_FLAGS_NOREAD);
    846840                if (rc != EOK) {
    847                         EXT4FS_DBG("error in block_get");
    848841                        return rc;
    849842                }
     
    10491042        rc = ext4_balloc_alloc_block(inode_ref, &phys_block);
    10501043        if (rc != EOK) {
    1051                 EXT4FS_DBG("error in block allocation, rc = \%d", rc);
    10521044                goto finish;
    10531045        }
Note: See TracChangeset for help on using the changeset viewer.