Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/cdfs/cdfs_ops.c

    r0db0df2 r5e801dc  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
    32 * Copyright (c) 2011 Martin Decky
    43 * All rights reserved.
     
    298297}
    299298
    300 static bool nodes_key_equal(const void *k, size_t hash, const ht_link_t *item)
     299static bool nodes_key_equal(const void *k, const ht_link_t *item)
    301300{
    302301        cdfs_node_t *node = hash_table_get_inst(item, cdfs_node_t, nh_link);
     
    324323
    325324/** Nodes hash table operations */
    326 static const hash_table_ops_t nodes_ops = {
     325static hash_table_ops_t nodes_ops = {
    327326        .hash = nodes_hash,
    328327        .key_hash = nodes_key_hash,
     
    10941093
    10951094        /* Initialize the block layer */
    1096         errno_t rc = block_init(service_id);
     1095        errno_t rc = block_init(service_id, BLOCK_SIZE);
    10971096        if (rc != EOK)
    10981097                return rc;
     
    11511150{
    11521151        /* Initialize the block layer */
    1153         errno_t rc = block_init(service_id);
     1152        errno_t rc = block_init(service_id, BLOCK_SIZE);
    11541153        if (rc != EOK)
    11551154                return rc;
Note: See TracChangeset for help on using the changeset viewer.