Rev 4581 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4581 | Rev 4718 | ||
---|---|---|---|
Line 400... | Line 400... | ||
400 | fat_node_t *parentp = FAT_NODE(pfn); |
400 | fat_node_t *parentp = FAT_NODE(pfn); |
401 | fat_node_t *childp = FAT_NODE(cfn); |
401 | fat_node_t *childp = FAT_NODE(cfn); |
402 | fat_dentry_t *d; |
402 | fat_dentry_t *d; |
403 | fat_bs_t *bs; |
403 | fat_bs_t *bs; |
404 | block_t *b; |
404 | block_t *b; |
405 | int i, j; |
405 | unsigned i, j; |
406 | uint16_t bps; |
406 | uint16_t bps; |
407 | unsigned dps; |
407 | unsigned dps; |
408 | unsigned blocks; |
408 | unsigned blocks; |
409 | fat_cluster_t mcl, lcl; |
409 | fat_cluster_t mcl, lcl; |
410 | int rc; |
410 | int rc; |
Line 1200... | Line 1200... | ||
1200 | void fat_open_node(ipc_callid_t rid, ipc_call_t *request) |
1200 | void fat_open_node(ipc_callid_t rid, ipc_call_t *request) |
1201 | { |
1201 | { |
1202 | libfs_open_node(&fat_libfs_ops, fat_reg.fs_handle, rid, request); |
1202 | libfs_open_node(&fat_libfs_ops, fat_reg.fs_handle, rid, request); |
1203 | } |
1203 | } |
1204 | 1204 | ||
1205 | void fat_device(ipc_callid_t rid, ipc_call_t *request) |
1205 | void fat_stat(ipc_callid_t rid, ipc_call_t *request) |
1206 | { |
1206 | { |
1207 | ipc_answer_0(rid, ENOTSUP); |
1207 | libfs_stat(&fat_libfs_ops, fat_reg.fs_handle, rid, request); |
1208 | } |
1208 | } |
1209 | 1209 | ||
1210 | void fat_sync(ipc_callid_t rid, ipc_call_t *request) |
1210 | void fat_sync(ipc_callid_t rid, ipc_call_t *request) |
1211 | { |
1211 | { |
1212 | /* Dummy implementation */ |
1212 | /* Dummy implementation */ |