Subversion Repositories HelenOS

Rev

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

Rev 4420 Rev 4537
Line 112... Line 112...
112
            tmpfs_write(callid, &call);
112
            tmpfs_write(callid, &call);
113
            break;
113
            break;
114
        case VFS_TRUNCATE:
114
        case VFS_TRUNCATE:
115
            tmpfs_truncate(callid, &call);
115
            tmpfs_truncate(callid, &call);
116
            break;
116
            break;
-
 
117
        case VFS_CLOSE:
-
 
118
            tmpfs_close(callid, &call);
-
 
119
            break;
117
        case VFS_DESTROY:
120
        case VFS_DESTROY:
118
            tmpfs_destroy(callid, &call);
121
            tmpfs_destroy(callid, &call);
119
            break;
122
            break;
-
 
123
        case VFS_OPEN_NODE:
-
 
124
            tmpfs_open_node(callid, &call);
-
 
125
            break;
-
 
126
        case VFS_DEVICE:
-
 
127
            tmpfs_device(callid, &call);
-
 
128
            break;
-
 
129
        case VFS_SYNC:
-
 
130
            tmpfs_sync(callid, &call);
-
 
131
            break;
120
        default:
132
        default:
121
            ipc_answer_0(callid, ENOTSUP);
133
            ipc_answer_0(callid, ENOTSUP);
122
            break;
134
            break;
123
        }
135
        }
124
    }
136
    }