Changeset 1dff985 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2017-03-03T21:32:38Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c577a9a
Parents:
5b46ec8 (diff), b8dbe2f (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:

Merge from lp:~zarevucky-jiri/helenos/vfs-2.5 up to revision 1926

File:
1 edited

Legend:

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

    r5b46ec8 r1dff985  
    104104                        vfs_unmount_srv(callid, &call);
    105105                        break;
    106                 case VFS_IN_OPEN:
    107                         vfs_open(callid, &call);
     106                case VFS_IN_WALK:
     107                        vfs_walk(callid, &call);
     108                        break;
     109                case VFS_IN_OPEN2:
     110                        vfs_open2(callid, &call);
    108111                        break;
    109112                case VFS_IN_CLOSE:
     
    125128                        vfs_fstat(callid, &call);
    126129                        break;
    127                 case VFS_IN_STAT:
    128                         vfs_stat(callid, &call);
    129                         break;
    130                 case VFS_IN_MKDIR:
    131                         vfs_mkdir(callid, &call);
    132                         break;
    133                 case VFS_IN_UNLINK:
    134                         vfs_unlink(callid, &call);
     130                case VFS_IN_UNLINK2:
     131                        vfs_unlink2(callid, &call);
    135132                        break;
    136133                case VFS_IN_RENAME:
Note: See TracChangeset for help on using the changeset viewer.