Changes in uspace/srv/fs/cdfs/cdfs_ops.c [0db0df2:5e801dc] in mainline
- File:
-
- 1 edited
-
uspace/srv/fs/cdfs/cdfs_ops.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs_ops.c
r0db0df2 r5e801dc 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda3 2 * Copyright (c) 2011 Martin Decky 4 3 * All rights reserved. … … 298 297 } 299 298 300 static bool nodes_key_equal(const void *k, size_t hash,const ht_link_t *item)299 static bool nodes_key_equal(const void *k, const ht_link_t *item) 301 300 { 302 301 cdfs_node_t *node = hash_table_get_inst(item, cdfs_node_t, nh_link); … … 324 323 325 324 /** Nodes hash table operations */ 326 static consthash_table_ops_t nodes_ops = {325 static hash_table_ops_t nodes_ops = { 327 326 .hash = nodes_hash, 328 327 .key_hash = nodes_key_hash, … … 1094 1093 1095 1094 /* Initialize the block layer */ 1096 errno_t rc = block_init(service_id );1095 errno_t rc = block_init(service_id, BLOCK_SIZE); 1097 1096 if (rc != EOK) 1098 1097 return rc; … … 1151 1150 { 1152 1151 /* Initialize the block layer */ 1153 errno_t rc = block_init(service_id );1152 errno_t rc = block_init(service_id, BLOCK_SIZE); 1154 1153 if (rc != EOK) 1155 1154 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.
