Changeset 827d73f in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2010-02-12T14:09:22Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a70bda4
Parents:
918e9910 (diff), e70edd1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged the actual head

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.c

    r918e9910 r827d73f  
    7373                ipc_callid_t callid = async_get_call(&call);
    7474               
    75                 fs_handle_t fs_handle;
    76                 int phone;
    77                
    7875                switch (IPC_GET_METHOD(call)) {
    7976                case IPC_M_PHONE_HUNGUP:
     
    8683                case VFS_IN_MOUNT:
    8784                        vfs_mount(callid, &call);
     85                        break;
     86                case VFS_IN_UNMOUNT:
     87                        vfs_unmount(callid, &call);
    8888                        break;
    8989                case VFS_IN_OPEN:
     
    134134        }
    135135       
    136         /* TODO: cleanup after the client */
     136        vfs_files_done();
    137137}
    138138
Note: See TracChangeset for help on using the changeset viewer.