Changeset a5bad72 in mainline for uspace/srv/fs/minixfs/mfs_ops.c


Ignore:
Timestamp:
2011-06-26T10:08:38Z (14 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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.