Ignore:
Timestamp:
2012-07-21T08:19:33Z (13 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_directory_index.c

    r34bc2fe rfe61181  
    318318        /* Check unused flags */
    319319        if (root->info.unused_flags != 0) {
    320                 EXT4FS_DBG("ERR: unused_flags = \%u", root->info.unused_flags);
    321320                return EXT4_ERR_BAD_DX_DIR;
    322321        }
     
    324323        /* Check indirect levels */
    325324        if (root->info.indirect_levels > 1) {
    326                 EXT4FS_DBG("ERR: indirect_levels = \%u", root->info.indirect_levels);
    327325                return EXT4_ERR_BAD_DX_DIR;
    328326        }
     
    897895                /* Linux limitation */
    898896                if ((levels > 0) && (root_limit == root_count)) {
    899                         EXT4FS_DBG("Directory index is full");
    900897                        return ENOSPC;
    901898                }
     
    10391036        if (rc != EOK) {
    10401037                block_put(root_block);
    1041                 EXT4FS_DBG("hinfo initialization error");
    10421038                return EXT4_ERR_BAD_DX_DIR;
    10431039        }
     
    10481044        rc = ext4_directory_dx_get_leaf(&hinfo, parent, root_block, &dx_block, dx_blocks);
    10491045        if (rc != EOK) {
    1050                 EXT4FS_DBG("get leaf error");
    10511046                rc = EXT4_ERR_BAD_DX_DIR;
    10521047                goto release_index;
     
    11021097        rc = block_put(new_block);
    11031098        if (rc != EOK) {
    1104                 EXT4FS_DBG("error writing new block");
    11051099                return rc;
    11061100        }
     
    11141108        rc = block_put(target_block);
    11151109        if (rc != EOK) {
    1116                 EXT4FS_DBG("error writing target block");
    11171110                return rc;
    11181111        }
     
    11291122                rc = block_put(dx_it->block);
    11301123                if (rc != EOK) {
    1131                         EXT4FS_DBG("error writing index block");
    11321124                        return rc;
    11331125                }
Note: See TracChangeset for help on using the changeset viewer.