Changeset 668f1949 in mainline for uspace/srv/fs/minixfs/mfs.c


Ignore:
Timestamp:
2011-04-09T15:37:20Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d0f3692
Parents:
e666ddc
Message:
  • mfs_read partially implemented, only directories are supported (yet)
  • minor code cleanup
File:
1 edited

Legend:

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

    re666ddc r668f1949  
    9999                        return;
    100100                case VFS_OUT_MOUNTED:
    101                         mfsdebug("Mount request received\n");
    102101                        mfs_mounted(callid, &call);
    103102                        break;
     
    109108                        break;
    110109                case VFS_OUT_LOOKUP:
    111                         mfsdebug("lookup called\n");
    112110                        mfs_lookup(callid, &call);
     111                        break;
     112                case VFS_OUT_READ:
     113                        mfs_read(callid, &call);
    113114                        break;
    114115                default:
Note: See TracChangeset for help on using the changeset viewer.