Changeset 35b7d86e in mainline for uspace/srv/vfs/vfs_ipc.c


Ignore:
Timestamp:
2017-03-13T20:33:06Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8ffedd8
Parents:
ea56098
Message:

Remove VFS_IN_MTAB_GET

The mountpoints in VFS don't know their path anymore and it does not
make much sense to maintain this global mount table when tasks can have
different roots.

File:
1 edited

Legend:

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

    rea56098 r35b7d86e  
    110110}
    111111
    112 static void vfs_in_mtab_get(ipc_callid_t rid, ipc_call_t *request)
    113 {
    114         int rc = vfs_op_mtab_get();
    115         async_answer_0(rid, rc);
    116 }
    117 
    118112static void vfs_in_open2(ipc_callid_t rid, ipc_call_t *request)
    119113{
     
    306300                        vfs_in_mount(callid, &call);
    307301                        break;
    308                 case VFS_IN_MTAB_GET:
    309                         vfs_in_mtab_get(callid, &call);
    310                         break;
    311302                case VFS_IN_OPEN2:
    312303                        vfs_in_open2(callid, &call);
Note: See TracChangeset for help on using the changeset viewer.