Changeset ff2e72e in mainline
- Timestamp:
- 2011-05-13T17:30:15Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 13ecdac9
- Parents:
- c2fcfc0
- Location:
- uspace/srv/fs/minixfs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs.c
rc2fcfc0 rff2e72e 94 94 int method = IPC_GET_IMETHOD(call); 95 95 96 mfsdebug(NAME "method = %d\n", method);96 /*mfsdebug(NAME "method = %d\n", method);*/ 97 97 switch (method) { 98 98 case IPC_M_PHONE_HUNGUP: -
uspace/srv/fs/minixfs/mfs_dentry.c
rc2fcfc0 rff2e72e 44 44 block_t *b; 45 45 46 mfsdebug("read_directory(%u)\n", index);47 48 46 *d_info = malloc(sizeof(**d_info)); 49 47 if (!*d_info) … … 180 178 return r; 181 179 182 mfsdebug("read dentry \n");180 mfsdebug("read dentry %d\n", i); 183 181 r = read_directory_entry(mnode, &d_info, i); 184 182 if (r != EOK) -
uspace/srv/fs/minixfs/mfs_ops.c
rc2fcfc0 rff2e72e 477 477 *rfn = node; 478 478 479 mfsdebug("node_get_core(%d) OK\n", (int) index);480 481 479 return EOK; 482 480 … … 540 538 *has_children = false; 541 539 542 mfsdebug("mfs_has_children()\n");543 544 540 if (!S_ISDIR(mnode->ino_i->i_mode)) 545 541 goto out; … … 569 565 570 566 out: 571 572 if (*has_children) {573 mfsdebug("Has children\n");574 } else {575 mfsdebug("Has not children\n");576 }577 567 578 568 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.