Changeset e2dccb0 in mainline


Ignore:
Timestamp:
2009-06-22T20:02:42Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ed990cf
Parents:
2dfd9fa
Message:

Endpoint file systems should terminate the connection fibril when VFS closes the connection.

Location:
uspace/srv/fs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/devfs/devfs.c

    r2dfd9fa re2dccb0  
    6666               
    6767                switch  (IPC_GET_METHOD(call)) {
     68                case IPC_M_PHONE_HUNGUP:
     69                        return;
    6870                case VFS_MOUNTED:
    6971                        devfs_mounted(callid, &call);
  • uspace/srv/fs/fat/fat.c

    r2dfd9fa re2dccb0  
    9090                callid = async_get_call(&call);
    9191                switch  (IPC_GET_METHOD(call)) {
     92                case IPC_M_PHONE_HUNGUP:
     93                        return;
    9294                case VFS_MOUNTED:
    9395                        fat_mounted(callid, &call);
  • uspace/srv/fs/tmpfs/tmpfs.c

    r2dfd9fa re2dccb0  
    9797                callid = async_get_call(&call);
    9898                switch  (IPC_GET_METHOD(call)) {
     99                case IPC_M_PHONE_HUNGUP:
     100                        return;
    99101                case VFS_MOUNTED:
    100102                        tmpfs_mounted(callid, &call);
Note: See TracChangeset for help on using the changeset viewer.