Changeset c84146d3 in mainline for uspace/srv/fs/mfs/mfs_ops.c
- Timestamp:
- 2013-07-15T21:47:50Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2f706e
- Parents:
- b86a32e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_ops.c
rb86a32e rc84146d3 65 65 static bool is_power_of_two(uint32_t n); 66 66 static uint32_t mfs_size_block(service_id_t service_id); 67 static uint64_t mfs_total_block (service_id_t service_id);68 static uint64_t mfs_free_block (service_id_t service_id);67 static uint64_t mfs_total_block_count(service_id_t service_id); 68 static uint64_t mfs_free_block_count(service_id_t service_id); 69 69 70 70 static hash_table_t open_nodes; … … 89 89 .lnkcnt_get = mfs_lnkcnt_get, 90 90 .size_block = mfs_size_block, 91 .total_block = mfs_total_block,92 .free_block = mfs_free_block91 .total_block_count = mfs_total_block_count, 92 .free_block_count = mfs_free_block_count 93 93 }; 94 94 … … 1153 1153 1154 1154 static uint64_t 1155 mfs_total_block (service_id_t service_id)1155 mfs_total_block_count(service_id_t service_id) 1156 1156 { 1157 1157 uint64_t block_total; … … 1171 1171 1172 1172 static uint64_t 1173 mfs_free_block (service_id_t service_id)1173 mfs_free_block_count(service_id_t service_id) 1174 1174 { 1175 1175 uint32_t block_free;
Note:
See TracChangeset
for help on using the changeset viewer.