Subversion Repositories HelenOS

Rev

Rev 2693 | Rev 2734 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2693 Rev 2707
Line 103... Line 103...
103
            vfs_seek(callid, &call);
103
            vfs_seek(callid, &call);
104
            break;
104
            break;
105
        case VFS_TRUNCATE:
105
        case VFS_TRUNCATE:
106
            vfs_truncate(callid, &call);
106
            vfs_truncate(callid, &call);
107
            break;
107
            break;
108
        case VFS_UNMOUNT:
-
 
109
        case VFS_CLOSE:
-
 
110
        case VFS_UNLINK:
-
 
111
        case VFS_RENAME:
-
 
112
        case VFS_OPENDIR:
108
        case VFS_MKDIR:
113
        case VFS_READDIR:
109
            vfs_mkdir(callid, &call);
114
        case VFS_CLOSEDIR:
110
            break;
115
        default:
111
        default:
116
            ipc_answer_0(callid, ENOTSUP);
112
            ipc_answer_0(callid, ENOTSUP);
117
            break;
113
            break;
118
        }
114
        }
119
    }
115
    }