/linux-6.1.9/drivers/nvme/common/ |
D | auth.c | 154 u8 key_hash) in nvme_auth_extract_key() argument 190 if (key_hash > 0 && in nvme_auth_extract_key() 191 (key_len - 4) != nvme_auth_hmac_hash_len(key_hash)) { in nvme_auth_extract_key() 193 nvme_auth_hmac_name(key_hash)); in nvme_auth_extract_key() 213 key->hash = key_hash; in nvme_auth_extract_key() 461 u8 key_hash; in nvme_auth_generate_key() local 468 if (sscanf(secret, "DHHC-1:%hhd:%*s:", &key_hash) != 1) in nvme_auth_generate_key() 472 key = nvme_auth_extract_key(secret + 10, key_hash); in nvme_auth_generate_key()
|
/linux-6.1.9/drivers/nvme/target/ |
D | auth.c | 25 unsigned char key_hash; in nvmet_auth_set_key() local 28 if (sscanf(secret, "DHHC-1:%hhd:%*s", &key_hash) != 1) in nvmet_auth_set_key() 30 if (key_hash > 3) { in nvmet_auth_set_key() 32 key_hash); in nvmet_auth_set_key() 35 if (key_hash > 0) { in nvmet_auth_set_key() 37 const char *hmac = nvme_auth_hmac_name(key_hash); in nvmet_auth_set_key() 50 host->dhchap_ctrl_key_hash = key_hash; in nvmet_auth_set_key() 54 host->dhchap_key_hash = key_hash; in nvmet_auth_set_key()
|
/linux-6.1.9/fs/ubifs/ |
D | key.h | 150 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init() 186 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in dent_key_init_flash() 219 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init() 237 uint32_t hash = c->key_hash(fname_name(nm), fname_len(nm)); in xent_key_init_flash() 369 static inline uint32_t key_hash(const struct ubifs_info *c, in key_hash() function
|
D | sb.c | 194 sup->key_hash = UBIFS_KEY_HASH_R5; in create_default_filesystem() 277 c->key_hash = key_r5_hash; in create_default_filesystem() 384 if (!c->key_hash) { in validate_sb() 691 switch (sup->key_hash) { in ubifs_read_superblock() 693 c->key_hash = key_r5_hash; in ubifs_read_superblock() 698 c->key_hash = key_test_hash; in ubifs_read_superblock()
|
D | ubifs-media.h | 655 __u8 key_hash; member
|
D | gc.c | 190 uint32_t hasha = key_hash(c, &sa->key); in nondata_nodes_cmp() 191 uint32_t hashb = key_hash(c, &sb->key); in nondata_nodes_cmp()
|
D | debug.c | 107 get_key_type(type), key_hash(c, key)); in dbg_snprintf_key() 356 (int)sup->key_hash, get_key_hash(sup->key_hash)); in ubifs_dump_node()
|
D | ubifs.h | 1369 uint32_t (*key_hash)(const char *str, int len); member
|
D | tnc.c | 1910 if (key_hash(c, key) == key_hash(c, dkey) && in search_dh_cookie()
|
/linux-6.1.9/fs/fscache/ |
D | volume.c | 127 if (a->key_hash != b->key_hash || in fscache_volume_same() 166 bucket = candidate->key_hash & (ARRAY_SIZE(fscache_volume_hash) - 1); in fscache_hash_volume() 244 volume->key_hash = fscache_hash(0, key, hlen); in fscache_alloc_volume() 365 bucket = volume->key_hash & (ARRAY_SIZE(fscache_volume_hash) - 1); in fscache_unhash_volume()
|
D | cookie.c | 295 cookie->key_hash = fscache_hash(cookie->volume->key_hash, in fscache_set_key() 305 if (a->key_hash != b->key_hash || in fscache_cookie_same() 408 bucket = candidate->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1); in fscache_hash_cookie() 934 bucket = cookie->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1); in fscache_unhash_cookie()
|
/linux-6.1.9/kernel/trace/ |
D | tracing_map.c | 518 u32 idx, key_hash, test_key; in __tracing_map_insert() local 523 key_hash = jhash(key, map->key_size, 0); in __tracing_map_insert() 524 if (key_hash == 0) in __tracing_map_insert() 525 key_hash = 1; in __tracing_map_insert() 526 idx = key_hash >> (32 - (map->map_bits + 1)); in __tracing_map_insert() 533 if (test_key && test_key == key_hash) { in __tracing_map_insert() 566 if (!cmpxchg(&entry->key, 0, key_hash)) { in __tracing_map_insert()
|
/linux-6.1.9/tools/perf/util/ |
D | expr.c | 49 static size_t key_hash(const void *key, void *ctx __maybe_unused) in key_hash() function 72 hash = hashmap__new(key_hash, key_equal, NULL); in ids__new() 299 ctx->ids = hashmap__new(key_hash, key_equal, NULL); in expr__ctx_new()
|
/linux-6.1.9/include/linux/ |
D | nvme-auth.h | 28 u8 key_hash);
|
D | fscache.h | 77 unsigned int key_hash; /* Hash of key string */ member 139 u32 key_hash; /* Hash of volume, key, len */ member
|
/linux-6.1.9/fs/cachefiles/ |
D | namei.c | 419 struct dentry *fan = volume->fanout[(u8)object->cookie->key_hash]; in cachefiles_delete_object() 443 struct dentry *fan = volume->fanout[(u8)object->cookie->key_hash]; in cachefiles_create_tmpfile() 621 struct dentry *dentry, *fan = volume->fanout[(u8)object->cookie->key_hash]; in cachefiles_look_up_object() 671 struct dentry *dentry, *fan = volume->fanout[(u8)object->cookie->key_hash]; in cachefiles_commit_tmpfile()
|
D | interface.c | 419 struct dentry *fan = volume->fanout[(u8)cookie->key_hash]; in cachefiles_invalidate_cookie()
|
/linux-6.1.9/Documentation/filesystems/caching/ |
D | backend-api.rst | 144 unsigned int key_hash; 162 * ``key_hash`` - A hash of the index key. This should work out the same, no 186 u32 key_hash; 222 * ``key_hash`` - A hash of the index key. This should work out the same, no
|