Subversion Repositories HelenOS

Rev

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

Rev 4419 Rev 4537
Line 105... Line 105...
105
            fat_write(callid, &call);
105
            fat_write(callid, &call);
106
            break;
106
            break;
107
        case VFS_TRUNCATE:
107
        case VFS_TRUNCATE:
108
            fat_truncate(callid, &call);
108
            fat_truncate(callid, &call);
109
            break;
109
            break;
-
 
110
        case VFS_CLOSE:
-
 
111
            fat_close(callid, &call);
-
 
112
            break;
110
        case VFS_DESTROY:
113
        case VFS_DESTROY:
111
            fat_destroy(callid, &call);
114
            fat_destroy(callid, &call);
112
            break;
115
            break;
-
 
116
        case VFS_OPEN_NODE:
-
 
117
            fat_open_node(callid, &call);
-
 
118
            break;
-
 
119
        case VFS_DEVICE:
-
 
120
            fat_device(callid, &call);
-
 
121
            break;
-
 
122
        case VFS_SYNC:
-
 
123
            fat_sync(callid, &call);
-
 
124
            break;
113
        default:
125
        default:
114
            ipc_answer_0(callid, ENOTSUP);
126
            ipc_answer_0(callid, ENOTSUP);
115
            break;
127
            break;
116
        }
128
        }
117
    }
129
    }