Changeset a5bad72 in mainline


Ignore:
Timestamp:
2011-06-26T10:08:38Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2527b1d5
Parents:
38b7233
Message:

remove old debug messages

Location:
uspace/srv/fs/minixfs
Files:
3 edited

Legend:

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

    r38b7233 ra5bad72  
    8585        b->dirty = true;
    8686        r = block_put(b);
     87        mfsdebug("free index %u\n", idx);
    8788
    8889out_err:
     
    188189                for (j = 0; j < chunk_bits; ++j) {
    189190                        if (!(chunk & (1 << j))) {
    190                                 mfsdebug("i = %d j = %d\n", i, j);
    191191                                r = i * chunk_bits + j;
    192192                                chunk |= 1 << j;
  • uspace/srv/fs/minixfs/mfs_dentry.c

    r38b7233 ra5bad72  
    206206
    207207        if (!empty_dentry_found) {
    208                 mfsdebug("inode grow\n");
    209208                r = inode_grow(mnode, sbi->dirsize);
    210209                if (r != EOK)
    211210                        return r;
    212211
    213                 mfsdebug("read dentry %d\n", i);
    214212                r = read_directory_entry(mnode, &d_info, i);
    215213                if (r != EOK)
     
    224222
    225223        r = write_dentry(d_info);
    226         mfsdebug("write inode\n");
    227224        free(d_info);
    228225
  • uspace/srv/fs/minixfs/mfs_ops.c

    r38b7233 ra5bad72  
    264264        uint32_t inum;
    265265
    266         mfsdebug("create_node()\n");
    267 
    268266        r = mfs_instance_get(handle, &inst);
    269267        on_error(r, return r);
     
    340338        int r;
    341339
    342         mfsdebug("mfs_match()\n");
    343 
    344340        if (!S_ISDIR(ino_i->i_mode))
    345341                return ENOTDIR;
     
    522518        struct mfs_sb_info *sbi = parent->instance->sbi;
    523519
    524         mfsdebug("mfs_link() %d\n", (int) child->ino_i->index);
    525 
    526520        if (str_size(name) > sbi->max_name_len)
    527521                return ENAMETOOLONG;
     
    617611        fs_node_t *fn;
    618612
    619         mfsdebug("mfs_read()\n");
    620 
    621613        rc = mfs_node_get(&fn, handle, index);
    622614        if (rc != EOK) {
     
    657649                        if (d_info->d_inum) {
    658650                                /*Dentry found!*/
    659                                 mfsdebug("DENTRY FOUND %s!!\n", d_info->d_name);
    660651                                goto found;
    661652                        }
     
    733724mfs_write(ipc_callid_t rid, ipc_call_t *request)
    734725{
    735         mfsdebug("mfs_write()\n");
    736 
    737726        devmap_handle_t handle = (devmap_handle_t) IPC_GET_ARG1(*request);
    738727        fs_index_t index = (fs_index_t) IPC_GET_ARG2(*request);
     
    850839        int r;
    851840
     841        mfsdebug("mfs_destroy_node %d\n", mnode->ino_i->index);
     842
    852843        r = mfs_has_children(&has_children, fn);
    853844        on_error(r, return r);
     
    875866        fs_node_t *fn;
    876867        int r;
    877 
    878         mfsdebug("mfs_truncate()\n");
    879868
    880869        r = mfs_node_get(&fn, handle, index);
Note: See TracChangeset for help on using the changeset viewer.