Changes in uspace/lib/block/block.c [5e801dc:09ab0a9a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/block/block.c
r5e801dc r09ab0a9a 241 241 } 242 242 243 static size_t cache_key_hash( constvoid *key)244 { 245 const aoff64_t *lba =key;243 static size_t cache_key_hash(void *key) 244 { 245 aoff64_t *lba = (aoff64_t *)key; 246 246 return *lba; 247 247 } … … 253 253 } 254 254 255 static bool cache_key_equal( constvoid *key, const ht_link_t *item)256 { 257 const aoff64_t *lba =key;255 static bool cache_key_equal(void *key, const ht_link_t *item) 256 { 257 aoff64_t *lba = (aoff64_t *)key; 258 258 block_t *b = hash_table_get_inst(item, block_t, hash_link); 259 259 return b->lba == *lba;
Note:
See TracChangeset
for help on using the changeset viewer.