/linux-6.6.21/net/netfilter/ |
D | xt_hashlimit.c | 281 struct xt_hashlimit_htable *hinfo; in htable_create() local 298 hinfo = vmalloc(struct_size(hinfo, hash, size)); in htable_create() 299 if (hinfo == NULL) in htable_create() 301 *out_hinfo = hinfo; in htable_create() 304 ret = cfg_copy(&hinfo->cfg, (void *)cfg, 3); in htable_create() 306 vfree(hinfo); in htable_create() 310 hinfo->cfg.size = size; in htable_create() 311 if (hinfo->cfg.max == 0) in htable_create() 312 hinfo->cfg.max = 8 * hinfo->cfg.size; in htable_create() 313 else if (hinfo->cfg.max < hinfo->cfg.size) in htable_create() [all …]
|
/linux-6.6.21/net/ipv6/ |
D | seg6_hmac.c | 47 const struct seg6_hmac_info *hinfo = obj; in seg6_hmac_cmpfn() local 49 return (hinfo->hmackeyid != *(__u32 *)arg->key); in seg6_hmac_cmpfn() 52 static inline void seg6_hinfo_release(struct seg6_hmac_info *hinfo) in seg6_hinfo_release() argument 54 kfree_rcu(hinfo, rcu); in seg6_hinfo_release() 59 struct seg6_hmac_info *hinfo = (struct seg6_hmac_info *)ptr; in seg6_free_hi() local 61 if (hinfo) in seg6_free_hi() 62 seg6_hinfo_release(hinfo); in seg6_free_hi() 118 static int __do_hmac(struct seg6_hmac_info *hinfo, const char *text, u8 psize, in __do_hmac() argument 126 algo = __hmac_get_algo(hinfo->alg_id); in __do_hmac() 139 ret = crypto_shash_setkey(tfm, hinfo->secret, hinfo->slen); in __do_hmac() [all …]
|
D | seg6.c | 156 struct seg6_hmac_info *hinfo; in seg6_genl_sethmac() local 181 hinfo = seg6_hmac_info_lookup(net, hmackeyid); in seg6_genl_sethmac() 199 if (hinfo) { in seg6_genl_sethmac() 207 hinfo = kzalloc(sizeof(*hinfo), GFP_KERNEL); in seg6_genl_sethmac() 208 if (!hinfo) { in seg6_genl_sethmac() 213 memcpy(hinfo->secret, secret, slen); in seg6_genl_sethmac() 214 hinfo->slen = slen; in seg6_genl_sethmac() 215 hinfo->alg_id = algid; in seg6_genl_sethmac() 216 hinfo->hmackeyid = hmackeyid; in seg6_genl_sethmac() 218 err = seg6_hmac_info_add(net, hmackeyid, hinfo); in seg6_genl_sethmac() [all …]
|
D | inet6_hashtables.c | 268 struct inet_hashinfo *hinfo = death_row->hashinfo; in __inet6_check_established() local 278 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); in __inet6_check_established() 279 spinlock_t *lock = inet_ehash_lockp(hinfo, hash); in __inet6_check_established()
|
/linux-6.6.21/fs/ext4/ |
D | hash.c | 201 struct dx_hash_info *hinfo) in __ext4fs_dirhash() argument 218 if (hinfo->seed) { in __ext4fs_dirhash() 220 if (hinfo->seed[i]) { in __ext4fs_dirhash() 221 memcpy(buf, hinfo->seed, sizeof(buf)); in __ext4fs_dirhash() 227 switch (hinfo->hash_version) { in __ext4fs_dirhash() 279 hinfo->hash = 0; in __ext4fs_dirhash() 280 hinfo->minor_hash = 0; in __ext4fs_dirhash() 283 hinfo->hash_version); in __ext4fs_dirhash() 289 hinfo->hash = hash; in __ext4fs_dirhash() 290 hinfo->minor_hash = minor_hash; in __ext4fs_dirhash() [all …]
|
D | namei.c | 305 struct dx_hash_info *hinfo, 309 struct dx_hash_info *hinfo, 653 struct dx_hash_info *hinfo, in dx_show_leaf() argument 659 struct dx_hash_info h = *hinfo; in dx_show_leaf() 741 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir, in dx_show_entries() argument 760 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1): in dx_show_entries() 761 dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) in dx_show_entries() 810 struct dx_hash_info *hinfo, struct dx_frame *frame_in) in dx_probe() argument 849 hinfo = &fname->hinfo; in dx_probe() 850 hinfo->hash_version = root->info.hash_version; in dx_probe() [all …]
|
/linux-6.6.21/net/ipv4/ |
D | tcp_diag.c | 184 struct inet_hashinfo *hinfo; in tcp_diag_dump() local 186 hinfo = sock_net(cb->skb->sk)->ipv4.tcp_death_row.hashinfo; in tcp_diag_dump() 188 inet_diag_dump_icsk(hinfo, skb, cb, r); in tcp_diag_dump() 194 struct inet_hashinfo *hinfo; in tcp_diag_dump_one() local 196 hinfo = sock_net(cb->skb->sk)->ipv4.tcp_death_row.hashinfo; in tcp_diag_dump_one() 198 return inet_diag_dump_one_icsk(hinfo, cb, req); in tcp_diag_dump_one() 206 struct inet_hashinfo *hinfo; in tcp_diag_destroy() local 210 hinfo = net->ipv4.tcp_death_row.hashinfo; in tcp_diag_destroy() 211 sk = inet_diag_find_one_icsk(net, hinfo, req); in tcp_diag_destroy()
|
D | inet_hashtables.c | 548 struct inet_hashinfo *hinfo = death_row->hashinfo; in __inet_check_established() local 559 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); in __inet_check_established() 560 spinlock_t *lock = inet_ehash_lockp(hinfo, hash); in __inet_check_established() 870 struct inet_hashinfo *hinfo = tcp_or_dccp_get_hashinfo(sk); in inet_bhash2_addr_any_hashbucket() local 880 return &hinfo->bhash2[hash & (hinfo->bhash_size - 1)]; in inet_bhash2_addr_any_hashbucket() 898 struct inet_hashinfo *hinfo = tcp_or_dccp_get_hashinfo(sk); in __inet_bhash2_update_saddr() local 920 new_tb2 = kmem_cache_alloc(hinfo->bind2_bucket_cachep, GFP_ATOMIC); in __inet_bhash2_update_saddr() 935 bhash = inet_bhashfn(net, port, hinfo->bhash_size); in __inet_bhash2_update_saddr() 936 head = &hinfo->bhash[bhash]; in __inet_bhash2_update_saddr() 937 head2 = inet_bhashfn_portaddr(hinfo, sk, net, port); in __inet_bhash2_update_saddr() [all …]
|
D | tcp_ipv4.c | 2362 struct inet_hashinfo *hinfo = seq_file_net(seq)->ipv4.tcp_death_row.hashinfo; in listening_get_first() local 2366 for (; st->bucket <= hinfo->lhash2_mask; st->bucket++) { in listening_get_first() 2371 ilb2 = &hinfo->lhash2[st->bucket]; in listening_get_first() 2396 struct inet_hashinfo *hinfo; in listening_get_next() local 2408 hinfo = seq_file_net(seq)->ipv4.tcp_death_row.hashinfo; in listening_get_next() 2409 ilb2 = &hinfo->lhash2[st->bucket]; in listening_get_next() 2431 static inline bool empty_bucket(struct inet_hashinfo *hinfo, in empty_bucket() argument 2434 return hlist_nulls_empty(&hinfo->ehash[st->bucket].chain); in empty_bucket() 2443 struct inet_hashinfo *hinfo = seq_file_net(seq)->ipv4.tcp_death_row.hashinfo; in established_get_first() local 2447 for (; st->bucket <= hinfo->ehash_mask; ++st->bucket) { in established_get_first() [all …]
|
D | inet_connection_sock.c | 327 struct inet_hashinfo *hinfo = tcp_or_dccp_get_hashinfo(sk); in inet_csk_find_open_port() local 369 head = &hinfo->bhash[inet_bhashfn(net, port, in inet_csk_find_open_port() 370 hinfo->bhash_size)]; in inet_csk_find_open_port() 377 head2 = inet_bhashfn_portaddr(hinfo, sk, net, port); in inet_csk_find_open_port() 509 struct inet_hashinfo *hinfo = tcp_or_dccp_get_hashinfo(sk); in inet_csk_get_port() local 533 head = &hinfo->bhash[inet_bhashfn(net, port, in inet_csk_get_port() 534 hinfo->bhash_size)]; in inet_csk_get_port() 542 tb = inet_bind_bucket_create(hinfo->bind_bucket_cachep, net, in inet_csk_get_port() 562 head2 = inet_bhashfn_portaddr(hinfo, sk, net, port); in inet_csk_get_port() 569 tb2 = inet_bind2_bucket_create(hinfo->bind2_bucket_cachep, in inet_csk_get_port() [all …]
|
/linux-6.6.21/sound/pci/hda/ |
D | hda_controller.c | 67 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); in azx_adjust_codec_delay() local 70 if (!hinfo->ops.get_delay) in azx_adjust_codec_delay() 73 codec_frames = hinfo->ops.get_delay(hinfo, apcm->codec, substream); in azx_adjust_codec_delay() 90 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); in azx_pcm_close() local 97 if (hinfo->ops.close) in azx_pcm_close() 98 hinfo->ops.close(hinfo, apcm->codec, substream); in azx_pcm_close() 133 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); in azx_pcm_hw_free() local 140 snd_hda_codec_cleanup(apcm->codec, hinfo, substream); in azx_pcm_hw_free() 152 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); in azx_pcm_prepare() local 157 snd_hda_spdif_out_of_nid(apcm->codec, hinfo->nid); in azx_pcm_prepare() [all …]
|
D | patch_hdmi.c | 277 struct hda_pcm_stream *hinfo) in hinfo_to_pcm_index() argument 283 if (get_pcm_rec(spec, pcm_idx)->stream == hinfo) in hinfo_to_pcm_index() 286 codec_warn(codec, "HDMI: hinfo %p not tied to a PCM\n", hinfo); in hinfo_to_pcm_index() 291 struct hda_pcm_stream *hinfo) in hinfo_to_pin_index() argument 300 per_pin->pcm->pcm->stream == hinfo) in hinfo_to_pin_index() 304 codec_dbg(codec, "HDMI: hinfo %p (pcm %d) not registered\n", hinfo, in hinfo_to_pin_index() 305 hinfo_to_pcm_index(codec, hinfo)); in hinfo_to_pin_index() 1192 static int hdmi_pcm_open_no_pin(struct hda_pcm_stream *hinfo, in hdmi_pcm_open_no_pin() argument 1202 pcm_idx = hinfo_to_pcm_index(codec, hinfo); in hdmi_pcm_open_no_pin() 1212 hinfo->nid = per_cvt->cvt_nid; in hdmi_pcm_open_no_pin() [all …]
|
D | hda_eld.c | 560 struct hda_pcm_stream *hinfo) in snd_hdmi_eld_update_pcm_info() argument 596 hinfo->rates &= rates; in snd_hdmi_eld_update_pcm_info() 597 hinfo->formats &= formats; in snd_hdmi_eld_update_pcm_info() 598 hinfo->maxbps = min(hinfo->maxbps, maxbps); in snd_hdmi_eld_update_pcm_info() 599 hinfo->channels_max = min(hinfo->channels_max, channels_max); in snd_hdmi_eld_update_pcm_info()
|
D | patch_si3054.c | 135 static int si3054_pcm_prepare(struct hda_pcm_stream *hinfo, in si3054_pcm_prepare() argument 149 snd_hda_codec_setup_stream(codec, hinfo->nid, in si3054_pcm_prepare() 154 static int si3054_pcm_open(struct hda_pcm_stream *hinfo, in si3054_pcm_open() argument
|
D | hda_generic.c | 5245 static void call_pcm_playback_hook(struct hda_pcm_stream *hinfo, in call_pcm_playback_hook() argument 5252 spec->pcm_playback_hook(hinfo, codec, substream, action); in call_pcm_playback_hook() 5255 static void call_pcm_capture_hook(struct hda_pcm_stream *hinfo, in call_pcm_capture_hook() argument 5262 spec->pcm_capture_hook(hinfo, codec, substream, action); in call_pcm_capture_hook() 5268 static int playback_pcm_open(struct hda_pcm_stream *hinfo, in playback_pcm_open() argument 5278 hinfo); in playback_pcm_open() 5281 call_pcm_playback_hook(hinfo, codec, substream, in playback_pcm_open() 5288 static int playback_pcm_prepare(struct hda_pcm_stream *hinfo, in playback_pcm_prepare() argument 5300 call_pcm_playback_hook(hinfo, codec, substream, in playback_pcm_prepare() 5305 static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo, in playback_pcm_cleanup() argument [all …]
|
D | hda_codec.c | 3071 struct hda_pcm_stream *hinfo = &pcm->stream[str]; in add_std_chmaps() local 3075 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams) in add_std_chmaps() 3077 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; in add_std_chmaps() 3079 hinfo->channels_max, in add_std_chmaps() 3131 static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, in hda_pcm_default_open_close() argument 3138 static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, in hda_pcm_default_prepare() argument 3144 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); in hda_pcm_default_prepare() 3148 static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, in hda_pcm_default_cleanup() argument 3152 snd_hda_codec_cleanup_stream(codec, hinfo->nid); in hda_pcm_default_cleanup() 3202 struct hda_pcm_stream *hinfo, in snd_hda_codec_prepare() argument [all …]
|
D | hda_generic.h | 284 void (*pcm_playback_hook)(struct hda_pcm_stream *hinfo, 288 void (*pcm_capture_hook)(struct hda_pcm_stream *hinfo,
|
/linux-6.6.21/include/uapi/linux/netfilter/ |
D | xt_hashlimit.h | 49 struct xt_hashlimit_htable *hinfo; member 104 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member 112 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member 120 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
|
/linux-6.6.21/drivers/scsi/megaraid/ |
D | megaraid_mm.c | 814 mraid_hba_info_t *hinfo; in kioc_to_mimd() local 828 hinfo = (mraid_hba_info_t *)(unsigned long) in kioc_to_mimd() 831 hinfo_to_cinfo(hinfo, &cinfo); in kioc_to_mimd() 881 hinfo_to_cinfo(mraid_hba_info_t *hinfo, mcontroller_t *cinfo) in hinfo_to_cinfo() argument 883 if (!hinfo || !cinfo) in hinfo_to_cinfo() 886 cinfo->base = hinfo->baseport; in hinfo_to_cinfo() 887 cinfo->irq = hinfo->irq; in hinfo_to_cinfo() 888 cinfo->numldrv = hinfo->num_ldrv; in hinfo_to_cinfo() 889 cinfo->pcibus = hinfo->pci_bus; in hinfo_to_cinfo() 890 cinfo->pcidev = hinfo->pci_slot; in hinfo_to_cinfo() [all …]
|
/linux-6.6.21/include/net/ |
D | seg6_hmac.h | 42 extern int seg6_hmac_compute(struct seg6_hmac_info *hinfo, 47 struct seg6_hmac_info *hinfo);
|
/linux-6.6.21/net/ipv4/netfilter/ |
D | nf_tproxy_ipv4.c | 82 struct inet_hashinfo *hinfo = net->ipv4.tcp_death_row.hashinfo; in nf_tproxy_get_sock_v4() local 96 sk = inet_lookup_listener(net, hinfo, skb, in nf_tproxy_get_sock_v4() 110 sk = inet_lookup_established(net, hinfo, saddr, sport, in nf_tproxy_get_sock_v4()
|
/linux-6.6.21/net/ipv6/netfilter/ |
D | nf_tproxy_ipv6.c | 83 struct inet_hashinfo *hinfo = net->ipv4.tcp_death_row.hashinfo; in nf_tproxy_get_sock_v6() local 97 sk = inet6_lookup_listener(net, hinfo, skb, in nf_tproxy_get_sock_v6() 112 sk = __inet6_lookup_established(net, hinfo, saddr, sport, daddr, in nf_tproxy_get_sock_v6()
|
/linux-6.6.21/net/mptcp/ |
D | mptcp_diag.c | 84 struct inet_hashinfo *hinfo; in mptcp_diag_dump_listeners() local 87 hinfo = net->ipv4.tcp_death_row.hashinfo; in mptcp_diag_dump_listeners() 89 for (i = diag_ctx->l_slot; i <= hinfo->lhash2_mask; i++) { in mptcp_diag_dump_listeners() 95 ilb = &hinfo->lhash2[i]; in mptcp_diag_dump_listeners()
|
/linux-6.6.21/fs/ocfs2/ |
D | dir.c | 252 struct ocfs2_dx_hinfo *hinfo) in ocfs2_dx_dir_name_hash() argument 289 hinfo->major_hash = buf[0]; in ocfs2_dx_dir_name_hash() 290 hinfo->minor_hash = buf[1]; in ocfs2_dx_dir_name_hash() 837 struct ocfs2_dx_hinfo *hinfo) in ocfs2_dx_dir_hash_idx() argument 839 return __ocfs2_dx_dir_hash_idx(osb, hinfo->minor_hash); in ocfs2_dx_dir_hash_idx() 844 struct ocfs2_dx_hinfo *hinfo, in ocfs2_dx_dir_lookup() argument 852 u32 name_hash = hinfo->major_hash; in ocfs2_dx_dir_lookup() 877 blkno += ocfs2_dx_dir_hash_idx(OCFS2_SB(inode->i_sb), hinfo); in ocfs2_dx_dir_lookup() 901 struct ocfs2_dx_hinfo *hinfo = &res->dl_hinfo; in ocfs2_dx_dir_search() local 914 ret = ocfs2_dx_dir_lookup(dir, dr_el, hinfo, NULL, &phys); in ocfs2_dx_dir_search() [all …]
|
/linux-6.6.21/drivers/hwmon/ |
D | intel-m10-bmc-hwmon.c | 27 const struct hwmon_channel_info * const *hinfo; member 154 .hinfo = n3000bmc_hinfo, 228 .hinfo = d5005bmc_hinfo, 340 .hinfo = n5010bmc_hinfo, 565 .hinfo = n6000bmc_hinfo, 752 hw->chip.info = hw->bdata->hinfo; in m10bmc_hwmon_probe()
|