Changeset 41202a9 in mainline for uspace/srv/fs/minixfs/mfs.c


Ignore:
Timestamp:
2011-03-26T10:38:09Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7cb975e
Parents:
54caa41b
Message:

Lot of improvements to the MinixFS driver:

  • Add mfs_node_put()
  • Add mfs_node_open()
  • Add mfs_index_get()
  • Add mfs_lnkcnt_get()

Add the mfs_dentry.c file which I forgot to add before.

File:
1 edited

Legend:

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

    r54caa41b r41202a9  
    9494       
    9595                callid = async_get_call(&call);
    96                 switch  (IPC_GET_IMETHOD(call)) {
     96                int method = IPC_GET_IMETHOD(call);
     97
     98                mfsdebug(NAME "method = %d\n", method);
     99                switch  (method) {
    97100                case IPC_M_PHONE_HUNGUP:
    98101                        return;
     
    108111                        break;
    109112                case VFS_OUT_LOOKUP:
     113                        mfsdebug("lookup called\n");
    110114                        mfs_lookup(callid, &call);
    111115                        break;
Note: See TracChangeset for help on using the changeset viewer.