Subversion Repositories HelenOS

Rev

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

Rev 2684 Rev 2690
Line 100... Line 100...
100
            vfs_write(callid, &call);
100
            vfs_write(callid, &call);
101
            break;
101
            break;
102
        case VFS_SEEK:
102
        case VFS_SEEK:
103
            vfs_seek(callid, &call);
103
            vfs_seek(callid, &call);
104
            break;
104
            break;
-
 
105
        case VFS_TRUNCATE:
105
        case VFS_UNMOUNT:
106
        case VFS_UNMOUNT:
106
        case VFS_CREATE:
-
 
107
        case VFS_CLOSE:
107
        case VFS_CLOSE:
108
        case VFS_UNLINK:
108
        case VFS_UNLINK:
109
        case VFS_RENAME:
109
        case VFS_RENAME:
-
 
110
        case VFS_OPENDIR:
-
 
111
        case VFS_READDIR:
-
 
112
        case VFS_CLOSEDIR:
110
        default:
113
        default:
111
            ipc_answer_0(callid, ENOTSUP);
114
            ipc_answer_0(callid, ENOTSUP);
112
            break;
115
            break;
113
        }
116
        }
114
    }
117
    }