| /Linux-v5.4/fs/jbd2/ |
| D | revoke.c | 115 int hash_size; member 218 static struct jbd2_revoke_table_s *jbd2_journal_init_revoke_table(int hash_size) in jbd2_journal_init_revoke_table() argument 221 int tmp = hash_size; in jbd2_journal_init_revoke_table() 231 table->hash_size = hash_size; in jbd2_journal_init_revoke_table() 234 kmalloc_array(hash_size, sizeof(struct list_head), GFP_KERNEL); in jbd2_journal_init_revoke_table() 241 for (tmp = 0; tmp < hash_size; tmp++) in jbd2_journal_init_revoke_table() 253 for (i = 0; i < table->hash_size; i++) { in jbd2_journal_destroy_revoke_table() 263 int jbd2_journal_init_revoke(journal_t *journal, int hash_size) in jbd2_journal_init_revoke() argument 266 J_ASSERT(is_power_of_2(hash_size)); in jbd2_journal_init_revoke() 268 journal->j_revoke_table[0] = jbd2_journal_init_revoke_table(hash_size); in jbd2_journal_init_revoke() [all …]
|
| /Linux-v5.4/fs/ |
| D | dcookies.c | 45 static size_t hash_size __read_mostly; 62 return (dcookie >> L1_CACHE_SHIFT) & (hash_size - 1); in dcookie_hash() 247 hash_size = PAGE_SIZE / sizeof(struct list_head); in dcookie_init() 251 } while ((hash_size >> hash_bits) != 0); in dcookie_init() 258 hash_size = 1UL << hash_bits; in dcookie_init() 262 i = hash_size; in dcookie_init() 298 for (i = 0; i < hash_size; ++i) { in dcookie_exit()
|
| /Linux-v5.4/drivers/soc/qcom/ |
| D | mdt_loader.c | 91 size_t hash_size; in qcom_mdt_read_metadata() local 108 hash_size = phdrs[1].p_filesz; in qcom_mdt_read_metadata() 110 data = kmalloc(ehdr_size + hash_size, GFP_KERNEL); in qcom_mdt_read_metadata() 115 if (ehdr_size + hash_size == fw->size) in qcom_mdt_read_metadata() 121 memcpy(data + ehdr_size, fw->data + hash_offset, hash_size); in qcom_mdt_read_metadata() 123 *data_len = ehdr_size + hash_size; in qcom_mdt_read_metadata()
|
| /Linux-v5.4/drivers/net/ethernet/freescale/fman/ |
| D | fman_keygen.c | 716 u32 hash_base_fqid, u32 hash_size) in keygen_port_hashing_init() argument 727 if (hash_size == 0 || (hash_size & (hash_size - 1)) != 0) { in keygen_port_hashing_init() 760 scheme->hash_fqid_count = hash_size; in keygen_port_hashing_init()
|
| D | fman_keygen.h | 44 u32 hash_base_fqid, u32 hash_size);
|
| /Linux-v5.4/drivers/net/ |
| D | gtp.c | 74 unsigned int hash_size; member 111 head = >p->tid_hash[gtp0_hashfn(tid) % gtp->hash_size]; in gtp0_pdp_find() 127 head = >p->tid_hash[gtp1u_hashfn(tid) % gtp->hash_size]; in gtp1_pdp_find() 143 head = >p->addr_hash[ipv4_hashfn(ms_addr) % gtp->hash_size]; in ipv4_pdp_find() 727 if (nla_put_u32(skb, IFLA_GTP_PDP_HASHSIZE, gtp->hash_size)) in gtp_fill_info() 763 gtp->hash_size = hsize; in gtp_hashtable_new() 780 for (i = 0; i < gtp->hash_size; i++) in gtp_hashtable_free() 939 hash_ms = ipv4_hashfn(ms_addr) % gtp->hash_size; in ipv4_pdp_add() 984 hash_tid = gtp0_hashfn(pctx->u.v0.tid) % gtp->hash_size; in ipv4_pdp_add() 987 hash_tid = gtp1u_hashfn(pctx->u.v1.i_tei) % gtp->hash_size; in ipv4_pdp_add() [all …]
|
| /Linux-v5.4/net/sunrpc/ |
| D | cache.c | 419 current_index >= current_detail->hash_size) { in cache_clean() 431 current_index = current_detail->hash_size; in cache_clean() 440 current_index < current_detail->hash_size && in cache_clean() 446 if (current_detail && current_index < current_detail->hash_size) { in cache_clean() 531 for (i = 0; i < detail->hash_size; i++) { in cache_purge() 1342 } while(hash < cd->hash_size && in __cache_seq_start() 1344 if (hash >= cd->hash_size) in __cache_seq_start() 1370 while (hash < cd->hash_size && in cache_seq_next() 1375 if (hash >= cd->hash_size) in cache_seq_next() 1732 cd->hash_table = kcalloc(cd->hash_size, sizeof(struct hlist_head), in cache_create_net() [all …]
|
| D | svcauth_unix.c | 584 .hash_size = GID_HASHMAX, 881 .hash_size = IP_HASHMAX,
|
| /Linux-v5.4/drivers/md/ |
| D | dm-snap.c | 879 sector_t hash_size, cow_dev_size, max_buckets; in init_hash_tables() local 888 hash_size = cow_dev_size >> s->store->chunk_shift; in init_hash_tables() 889 hash_size = min(hash_size, max_buckets); in init_hash_tables() 891 if (hash_size < 64) in init_hash_tables() 892 hash_size = 64; in init_hash_tables() 893 hash_size = rounddown_pow_of_two(hash_size); in init_hash_tables() 894 if (dm_exception_table_init(&s->complete, hash_size, in init_hash_tables() 902 hash_size >>= 3; in init_hash_tables() 903 if (hash_size < 64) in init_hash_tables() 904 hash_size = 64; in init_hash_tables() [all …]
|
| /Linux-v5.4/drivers/nfc/s3fwrn5/ |
| D | firmware.c | 110 const void *hash_data, u16 hash_size, in s3fwrn5_fw_enter_update_mode() argument 120 args.hashcode_size = hash_size; in s3fwrn5_fw_enter_update_mode() 144 hash_data, hash_size); in s3fwrn5_fw_enter_update_mode()
|
| /Linux-v5.4/lib/zlib_deflate/ |
| D | deflate.c | 163 s->head[s->hash_size-1] = NIL; \ 164 memset((char *)s->head, 0, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 228 s->hash_size = 1 << s->hash_bits; in zlib_deflateInit2() 229 s->hash_mask = s->hash_size - 1; in zlib_deflateInit2() 772 n = s->hash_size; in fill_window()
|
| D | defutil.h | 113 uInt hash_size; /* number of elements in hash table */ member
|
| /Linux-v5.4/net/dccp/ |
| D | proto.c | 1168 unsigned long hash_size = (1UL << ehash_order) * PAGE_SIZE / in dccp_init() local 1171 while (hash_size & (hash_size - 1)) in dccp_init() 1172 hash_size--; in dccp_init() 1173 dccp_hashinfo.ehash_mask = hash_size - 1; in dccp_init()
|
| /Linux-v5.4/fs/affs/ |
| D | amigaffs.h | 54 __be32 hash_size; member
|
| /Linux-v5.4/drivers/net/bonding/ |
| D | bond_alb.c | 66 static inline u8 _simple_hash(const u8 *hash_start, int hash_size) in _simple_hash() argument 71 for (i = 0; i < hash_size; i++) in _simple_hash() 1382 int hash_size = 0; in bond_alb_xmit() local 1402 hash_size = sizeof(iph->daddr); in bond_alb_xmit() 1433 hash_size = sizeof(ipv6_hdr(skb)->daddr); in bond_alb_xmit() 1452 hash_size = ETH_ALEN; in bond_alb_xmit() 1466 hash_index = _simple_hash(hash_start, hash_size); in bond_alb_xmit()
|
| /Linux-v5.4/drivers/crypto/ |
| D | atmel-sha.c | 104 size_t hash_size; member 1765 ctx->hash_size = SHA1_DIGEST_SIZE; in atmel_sha_hmac_setup() 1770 ctx->hash_size = SHA256_DIGEST_SIZE; in atmel_sha_hmac_setup() 1775 ctx->hash_size = SHA256_DIGEST_SIZE; in atmel_sha_hmac_setup() 1780 ctx->hash_size = SHA512_DIGEST_SIZE; in atmel_sha_hmac_setup() 1785 ctx->hash_size = SHA512_DIGEST_SIZE; in atmel_sha_hmac_setup() 1856 size_t hs = ctx->hash_size; in atmel_sha_hmac_compute_opad_hash() 1871 size_t hs = ctx->hash_size; in atmel_sha_hmac_setup_done() 1947 size_t hs = ctx->hash_size; in atmel_sha_hmac_init_done() 1966 size_t hs = ctx->hash_size; in atmel_sha_hmac_final() [all …]
|
| /Linux-v5.4/include/linux/sunrpc/ |
| D | cache.h | 66 int hash_size; member
|
| /Linux-v5.4/fs/nfsd/ |
| D | nfs4idmap.c | 184 .hash_size = ENT_HASHMAX, 347 .hash_size = ENT_HASHMAX,
|
| D | export.c | 249 .hash_size = EXPKEY_HASHMAX, 767 .hash_size = EXPORT_HASHMAX,
|
| /Linux-v5.4/drivers/crypto/chelsio/ |
| D | chcr_algo.h | 285 unsigned int hash_size; member
|
| D | chcr_algo.c | 1574 param->hash_size, transhdr_len, in create_hash_wr() 1643 params.hash_size = params.alg_prm.result_size; in chcr_ahash_update() 1730 params.hash_size = crypto_ahash_digestsize(rtfm); in chcr_ahash_final() 1798 params.hash_size = params.alg_prm.result_size; in chcr_ahash_finup() 1804 params.hash_size = crypto_ahash_digestsize(rtfm); in chcr_ahash_finup() 1891 params.hash_size = params.alg_prm.result_size; in chcr_ahash_digest() 1894 params.hash_size = crypto_ahash_digestsize(rtfm); in chcr_ahash_digest() 1963 params.hash_size = params.alg_prm.result_size; in chcr_ahash_continue() 1968 params.hash_size = crypto_ahash_digestsize(rtfm); in chcr_ahash_continue()
|
| /Linux-v5.4/fs/nfs/ |
| D | dns_resolve.c | 369 .hash_size = NFS_DNS_HASHTBL_SIZE,
|
| /Linux-v5.4/net/sunrpc/auth_gss/ |
| D | svcauth_gss.c | 279 .hash_size = RSI_HASHMAX, 551 .hash_size = RSC_HASHMAX,
|
| /Linux-v5.4/drivers/block/drbd/ |
| D | drbd_receiver.c | 3743 int hash_size; in receive_protocol() local 3762 hash_size = crypto_shash_digestsize(peer_integrity_tfm); in receive_protocol() 3763 int_dig_in = kmalloc(hash_size, GFP_KERNEL); in receive_protocol() 3764 int_dig_vv = kmalloc(hash_size, GFP_KERNEL); in receive_protocol()
|
| /Linux-v5.4/net/ipv4/ |
| D | tcp_output.c | 435 u8 hash_size; /* bytes in hash_location */ member
|