Home
last modified time | relevance | path

Searched refs:hinfo (Results 1 – 25 of 32) sorted by relevance

12

/Linux-v5.15/net/netfilter/
Dxt_hashlimit.c281 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-v5.15/net/ipv6/
Dseg6_hmac.c47 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 …]
Dseg6.c97 struct seg6_hmac_info *hinfo; in seg6_genl_sethmac() local
122 hinfo = seg6_hmac_info_lookup(net, hmackeyid); in seg6_genl_sethmac()
135 if (hinfo) { in seg6_genl_sethmac()
143 hinfo = kzalloc(sizeof(*hinfo), GFP_KERNEL); in seg6_genl_sethmac()
144 if (!hinfo) { in seg6_genl_sethmac()
149 memcpy(hinfo->secret, secret, slen); in seg6_genl_sethmac()
150 hinfo->slen = slen; in seg6_genl_sethmac()
151 hinfo->alg_id = algid; in seg6_genl_sethmac()
152 hinfo->hmackeyid = hmackeyid; in seg6_genl_sethmac()
154 err = seg6_hmac_info_add(net, hmackeyid, hinfo); in seg6_genl_sethmac()
[all …]
Dinet6_hashtables.c250 struct inet_hashinfo *hinfo = death_row->hashinfo; in __inet6_check_established() local
260 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); in __inet6_check_established()
261 spinlock_t *lock = inet_ehash_lockp(hinfo, hash); in __inet6_check_established()
/Linux-v5.15/fs/ext4/
Dhash.c201 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()
285 hinfo->hash = hash; in __ext4fs_dirhash()
286 hinfo->minor_hash = minor_hash; in __ext4fs_dirhash()
291 struct dx_hash_info *hinfo) in ext4fs_dirhash() argument
311 r = __ext4fs_dirhash(dir, buff, dlen, hinfo); in ext4fs_dirhash()
[all …]
Dnamei.c277 struct dx_hash_info *hinfo,
281 unsigned blocksize, struct dx_hash_info *hinfo,
623 struct dx_hash_info *hinfo, in dx_show_leaf() argument
629 struct dx_hash_info h = *hinfo; in dx_show_leaf()
709 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir, in dx_show_entries() argument
728 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1): in dx_show_entries()
729 dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) in dx_show_entries()
778 struct dx_hash_info *hinfo, struct dx_frame *frame_in) in dx_probe() argument
815 hinfo = &fname->hinfo; in dx_probe()
816 hinfo->hash_version = root->info.hash_version; in dx_probe()
[all …]
Dinline.c1346 struct dx_hash_info *hinfo, in ext4_inlinedir_to_tree() argument
1425 hinfo->hash = EXT4_DIRENT_HASH(de); in ext4_inlinedir_to_tree()
1426 hinfo->minor_hash = EXT4_DIRENT_MINOR_HASH(de); in ext4_inlinedir_to_tree()
1428 ext4fs_dirhash(dir, de->name, de->name_len, hinfo); in ext4_inlinedir_to_tree()
1430 if ((hinfo->hash < start_hash) || in ext4_inlinedir_to_tree()
1431 ((hinfo->hash == start_hash) && in ext4_inlinedir_to_tree()
1432 (hinfo->minor_hash < start_minor_hash))) in ext4_inlinedir_to_tree()
1438 err = ext4_htree_store_dirent(dir_file, hinfo->hash, in ext4_inlinedir_to_tree()
1439 hinfo->minor_hash, de, &tmp_str); in ext4_inlinedir_to_tree()
Dialloc.c440 struct dx_hash_info hinfo; in find_group_orlov() local
463 hinfo.hash_version = DX_HASH_HALF_MD4; in find_group_orlov()
464 hinfo.seed = sbi->s_hash_seed; in find_group_orlov()
465 ext4fs_dirhash(parent, qstr->name, qstr->len, &hinfo); in find_group_orlov()
466 grp = hinfo.hash; in find_group_orlov()
/Linux-v5.15/sound/pci/hda/
Dhda_controller.c67 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 …]
Dpatch_hdmi.c266 struct hda_pcm_stream *hinfo) in hinfo_to_pcm_index() argument
272 if (get_pcm_rec(spec, pcm_idx)->stream == hinfo) in hinfo_to_pcm_index()
275 codec_warn(codec, "HDMI: hinfo %p not tied to a PCM\n", hinfo); in hinfo_to_pcm_index()
280 struct hda_pcm_stream *hinfo) in hinfo_to_pin_index() argument
289 per_pin->pcm->pcm->stream == hinfo) in hinfo_to_pin_index()
293 codec_dbg(codec, "HDMI: hinfo %p (pcm %d) not registered\n", hinfo, in hinfo_to_pin_index()
294 hinfo_to_pcm_index(codec, hinfo)); in hinfo_to_pin_index()
1169 static int hdmi_pcm_open_no_pin(struct hda_pcm_stream *hinfo, in hdmi_pcm_open_no_pin() argument
1179 pcm_idx = hinfo_to_pcm_index(codec, hinfo); in hdmi_pcm_open_no_pin()
1189 hinfo->nid = per_cvt->cvt_nid; in hdmi_pcm_open_no_pin()
[all …]
Dhda_eld.c556 struct hda_pcm_stream *hinfo) in snd_hdmi_eld_update_pcm_info() argument
592 hinfo->rates &= rates; in snd_hdmi_eld_update_pcm_info()
593 hinfo->formats &= formats; in snd_hdmi_eld_update_pcm_info()
594 hinfo->maxbps = min(hinfo->maxbps, maxbps); in snd_hdmi_eld_update_pcm_info()
595 hinfo->channels_max = min(hinfo->channels_max, channels_max); in snd_hdmi_eld_update_pcm_info()
Dpatch_si3054.c135 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
Dhda_generic.c5227 static void call_pcm_playback_hook(struct hda_pcm_stream *hinfo, in call_pcm_playback_hook() argument
5234 spec->pcm_playback_hook(hinfo, codec, substream, action); in call_pcm_playback_hook()
5237 static void call_pcm_capture_hook(struct hda_pcm_stream *hinfo, in call_pcm_capture_hook() argument
5244 spec->pcm_capture_hook(hinfo, codec, substream, action); in call_pcm_capture_hook()
5250 static int playback_pcm_open(struct hda_pcm_stream *hinfo, in playback_pcm_open() argument
5260 hinfo); in playback_pcm_open()
5263 call_pcm_playback_hook(hinfo, codec, substream, in playback_pcm_open()
5270 static int playback_pcm_prepare(struct hda_pcm_stream *hinfo, in playback_pcm_prepare() argument
5282 call_pcm_playback_hook(hinfo, codec, substream, in playback_pcm_prepare()
5287 static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo, in playback_pcm_cleanup() argument
[all …]
Dhda_codec.c3007 struct hda_pcm_stream *hinfo = &pcm->stream[str]; in add_std_chmaps() local
3011 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams) in add_std_chmaps()
3013 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; in add_std_chmaps()
3015 hinfo->channels_max, in add_std_chmaps()
3067 static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, in hda_pcm_default_open_close() argument
3074 static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, in hda_pcm_default_prepare() argument
3080 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); in hda_pcm_default_prepare()
3084 static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, in hda_pcm_default_cleanup() argument
3088 snd_hda_codec_cleanup_stream(codec, hinfo->nid); in hda_pcm_default_cleanup()
3138 struct hda_pcm_stream *hinfo, in snd_hda_codec_prepare() argument
[all …]
Dhda_generic.h281 void (*pcm_playback_hook)(struct hda_pcm_stream *hinfo,
285 void (*pcm_capture_hook)(struct hda_pcm_stream *hinfo,
Dhda_local.h241 struct hda_pcm_stream *hinfo);
698 struct hda_pcm_stream *hinfo);
/Linux-v5.15/include/uapi/linux/netfilter/
Dxt_hashlimit.h49 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-v5.15/drivers/scsi/megaraid/
Dmegaraid_mm.c814 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 …]
Dmegaraid_mbox.c3719 gather_hbainfo(adapter_t *adapter, mraid_hba_info_t *hinfo) in gather_hbainfo() argument
3721 hinfo->pci_vendor_id = adapter->pdev->vendor; in gather_hbainfo()
3722 hinfo->pci_device_id = adapter->pdev->device; in gather_hbainfo()
3723 hinfo->subsys_vendor_id = adapter->pdev->subsystem_vendor; in gather_hbainfo()
3724 hinfo->subsys_device_id = adapter->pdev->subsystem_device; in gather_hbainfo()
3726 hinfo->pci_bus = adapter->pdev->bus->number; in gather_hbainfo()
3727 hinfo->pci_dev_fn = adapter->pdev->devfn; in gather_hbainfo()
3728 hinfo->pci_slot = PCI_SLOT(adapter->pdev->devfn); in gather_hbainfo()
3729 hinfo->irq = adapter->host->irq; in gather_hbainfo()
3730 hinfo->baseport = ADAP2RAIDDEV(adapter)->baseport; in gather_hbainfo()
[all …]
/Linux-v5.15/include/net/
Dseg6_hmac.h42 extern int seg6_hmac_compute(struct seg6_hmac_info *hinfo,
47 struct seg6_hmac_info *hinfo);
/Linux-v5.15/drivers/hwmon/
Dintel-m10-bmc-hwmon.c27 const struct hwmon_channel_info **hinfo; member
154 .hinfo = n3000bmc_hinfo,
228 .hinfo = d5005bmc_hinfo,
340 .hinfo = n5010bmc_hinfo,
528 hw->chip.info = hw->bdata->hinfo; in m10bmc_hwmon_probe()
/Linux-v5.15/fs/ocfs2/
Ddir.c252 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-v5.15/net/ipv4/
Dinet_hashtables.c445 struct inet_hashinfo *hinfo = death_row->hashinfo; in __inet_check_established() local
456 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); in __inet_check_established()
457 spinlock_t *lock = inet_ehash_lockp(hinfo, hash); in __inet_check_established()
730 struct inet_hashinfo *hinfo = death_row->hashinfo; in __inet_hash_connect() local
742 head = &hinfo->bhash[inet_bhashfn(net, port, in __inet_hash_connect()
743 hinfo->bhash_size)]; in __inet_hash_connect()
781 head = &hinfo->bhash[inet_bhashfn(net, port, in __inet_hash_connect()
782 hinfo->bhash_size)]; in __inet_hash_connect()
802 tb = inet_bind_bucket_create(hinfo->bind_bucket_cachep, in __inet_hash_connect()
837 inet_twsk_bind_unhash(tw, hinfo); in __inet_hash_connect()
Dinet_connection_sock.c192 struct inet_hashinfo *hinfo = sk->sk_prot->h.hashinfo; in inet_csk_find_open_port() local
235 head = &hinfo->bhash[inet_bhashfn(net, port, in inet_csk_find_open_port()
236 hinfo->bhash_size)]; in inet_csk_find_open_port()
365 struct inet_hashinfo *hinfo = sk->sk_prot->h.hashinfo; in inet_csk_get_port() local
382 head = &hinfo->bhash[inet_bhashfn(net, port, in inet_csk_get_port()
383 hinfo->bhash_size)]; in inet_csk_get_port()
390 tb = inet_bind_bucket_create(hinfo->bind_bucket_cachep, in inet_csk_get_port()
/Linux-v5.15/include/sound/
Dhda_codec.h428 struct hda_pcm_stream *hinfo,
433 struct hda_pcm_stream *hinfo,

12