Changeset ff2e72e in mainline


Ignore:
Timestamp:
2011-05-13T17:30:15Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
13ecdac9
Parents:
c2fcfc0
Message:

remove old debug messages

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

Legend:

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

    rc2fcfc0 rff2e72e  
    9494                int method = IPC_GET_IMETHOD(call);
    9595
    96                 mfsdebug(NAME "method = %d\n", method);
     96                /*mfsdebug(NAME "method = %d\n", method);*/
    9797                switch  (method) {
    9898                case IPC_M_PHONE_HUNGUP:
  • uspace/srv/fs/minixfs/mfs_dentry.c

    rc2fcfc0 rff2e72e  
    4444        block_t *b;
    4545
    46         mfsdebug("read_directory(%u)\n", index);
    47 
    4846        *d_info = malloc(sizeof(**d_info));
    4947        if (!*d_info)
     
    180178                        return r;
    181179
    182                 mfsdebug("read dentry\n");
     180                mfsdebug("read dentry %d\n", i);
    183181                r = read_directory_entry(mnode, &d_info, i);
    184182                if (r != EOK)
  • uspace/srv/fs/minixfs/mfs_ops.c

    rc2fcfc0 rff2e72e  
    477477        *rfn = node;
    478478
    479         mfsdebug("node_get_core(%d) OK\n", (int) index);
    480 
    481479        return EOK;
    482480
     
    540538        *has_children = false;
    541539
    542         mfsdebug("mfs_has_children()\n");
    543 
    544540        if (!S_ISDIR(mnode->ino_i->i_mode))
    545541                goto out;
     
    569565
    570566out:
    571 
    572         if (*has_children) {
    573                 mfsdebug("Has children\n");
    574         } else {
    575                 mfsdebug("Has not children\n");
    576         }
    577567
    578568        return EOK;
Note: See TracChangeset for help on using the changeset viewer.