Changes in uspace/srv/fs/fat/fat.h [efcebe1:15f3c3f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
refcebe1 r15f3c3f 175 175 176 176 fibril_mutex_t lock; 177 devmap_handle_t devmap_handle;177 service_id_t service_id; 178 178 fs_index_t index; 179 179 /** … … 224 224 } fat_node_t; 225 225 226 extern vfs_out_ops_t fat_ops; 227 extern libfs_ops_t fat_libfs_ops; 228 229 extern int fat_idx_get_new(fat_idx_t **, devmap_handle_t); 230 extern fat_idx_t *fat_idx_get_by_pos(devmap_handle_t, fat_cluster_t, unsigned); 231 extern fat_idx_t *fat_idx_get_by_index(devmap_handle_t, fs_index_t); 226 extern fs_reg_t fat_reg; 227 228 extern void fat_mounted(ipc_callid_t, ipc_call_t *); 229 extern void fat_mount(ipc_callid_t, ipc_call_t *); 230 extern void fat_unmounted(ipc_callid_t, ipc_call_t *); 231 extern void fat_unmount(ipc_callid_t, ipc_call_t *); 232 extern void fat_lookup(ipc_callid_t, ipc_call_t *); 233 extern void fat_read(ipc_callid_t, ipc_call_t *); 234 extern void fat_write(ipc_callid_t, ipc_call_t *); 235 extern void fat_truncate(ipc_callid_t, ipc_call_t *); 236 extern void fat_stat(ipc_callid_t, ipc_call_t *); 237 extern void fat_close(ipc_callid_t, ipc_call_t *); 238 extern void fat_destroy(ipc_callid_t, ipc_call_t *); 239 extern void fat_open_node(ipc_callid_t, ipc_call_t *); 240 extern void fat_stat(ipc_callid_t, ipc_call_t *); 241 extern void fat_sync(ipc_callid_t, ipc_call_t *); 242 243 extern int fat_idx_get_new(fat_idx_t **, service_id_t); 244 extern fat_idx_t *fat_idx_get_by_pos(service_id_t, fat_cluster_t, unsigned); 245 extern fat_idx_t *fat_idx_get_by_index(service_id_t, fs_index_t); 232 246 extern void fat_idx_destroy(fat_idx_t *); 233 247 extern void fat_idx_hashin(fat_idx_t *); … … 236 250 extern int fat_idx_init(void); 237 251 extern void fat_idx_fini(void); 238 extern int fat_idx_init_by_ devmap_handle(devmap_handle_t);239 extern void fat_idx_fini_by_ devmap_handle(devmap_handle_t);252 extern int fat_idx_init_by_service_id(service_id_t); 253 extern void fat_idx_fini_by_service_id(service_id_t); 240 254 241 255 #endif
Note:
See TracChangeset
for help on using the changeset viewer.