Changeset 29e7cc7 in mainline for kernel/genarch/src/mm/page_ht.c


Ignore:
Timestamp:
2025-04-18T15:14:10Z (3 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
e77c3ed
Parents:
800d188 (diff), 25fdb2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'upstream/master' into helenraid

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/mm/page_ht.c

    r800d188 r29e7cc7  
    5555static size_t ht_hash(const ht_link_t *);
    5656static size_t ht_key_hash(const void *);
    57 static bool ht_key_equal(const void *, const ht_link_t *);
     57static bool ht_key_equal(const void *, size_t, const ht_link_t *);
    5858static void ht_remove_callback(ht_link_t *);
    5959
     
    119119
    120120/** Return true if the key is equal to the item's lookup key. */
    121 bool ht_key_equal(const void *arg, const ht_link_t *item)
     121bool ht_key_equal(const void *arg, size_t hash, const ht_link_t *item)
    122122{
    123123        const uintptr_t *key = arg;
Note: See TracChangeset for help on using the changeset viewer.