/kernel/linux/linux-5.10/net/netfilter/ |
H A 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 in htable_create() 391 htable_remove_proc_entry(struct xt_hashlimit_htable *hinfo) htable_remove_proc_entry() argument 410 struct xt_hashlimit_htable *hinfo; htable_find_get() local 422 htable_put(struct xt_hashlimit_htable *hinfo) htable_put() argument 573 rateinfo_init(struct dsthash_ent *dh, struct xt_hashlimit_htable *hinfo, int revision) rateinfo_init() argument 637 hashlimit_init_dst(const struct xt_hashlimit_htable *hinfo, struct dsthash_dst *dst, const struct sk_buff *skb, unsigned int protoff) hashlimit_init_dst() argument 725 hashlimit_mt_common(const struct sk_buff *skb, struct xt_action_param *par, struct xt_hashlimit_htable *hinfo, const struct hashlimit_cfg3 *cfg, int revision) hashlimit_mt_common() argument 801 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt_v1() local 816 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt_v2() local 831 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt() local 838 hashlimit_mt_check_common(const struct xt_mtchk_param *par, struct xt_hashlimit_htable **hinfo, struct hashlimit_cfg3 *cfg, const char *name, int revision) hashlimit_mt_check_common() argument 1252 struct xt_hashlimit_htable *hinfo; hashlimit_proc_net_exit() local [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A 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 in htable_create() 391 htable_remove_proc_entry(struct xt_hashlimit_htable *hinfo) htable_remove_proc_entry() argument 410 struct xt_hashlimit_htable *hinfo; htable_find_get() local 422 htable_put(struct xt_hashlimit_htable *hinfo) htable_put() argument 573 rateinfo_init(struct dsthash_ent *dh, struct xt_hashlimit_htable *hinfo, int revision) rateinfo_init() argument 637 hashlimit_init_dst(const struct xt_hashlimit_htable *hinfo, struct dsthash_dst *dst, const struct sk_buff *skb, unsigned int protoff) hashlimit_init_dst() argument 725 hashlimit_mt_common(const struct sk_buff *skb, struct xt_action_param *par, struct xt_hashlimit_htable *hinfo, const struct hashlimit_cfg3 *cfg, int revision) hashlimit_mt_common() argument 801 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt_v1() local 816 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt_v2() local 831 struct xt_hashlimit_htable *hinfo = info->hinfo; hashlimit_mt() local 838 hashlimit_mt_check_common(const struct xt_mtchk_param *par, struct xt_hashlimit_htable **hinfo, struct hashlimit_cfg3 *cfg, const char *name, int revision) hashlimit_mt_check_common() argument 1252 struct xt_hashlimit_htable *hinfo; hashlimit_proc_net_exit() local [all...] |
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | seg6_hmac.c | 48 const struct seg6_hmac_info *hinfo = obj; in seg6_hmac_cmpfn() local 50 return (hinfo->hmackeyid != *(__u32 *)arg->key); in seg6_hmac_cmpfn() 53 static inline void seg6_hinfo_release(struct seg6_hmac_info *hinfo) in seg6_hinfo_release() argument 55 kfree_rcu(hinfo, rcu); in seg6_hinfo_release() 60 struct seg6_hmac_info *hinfo = (struct seg6_hmac_info *)ptr; in seg6_free_hi() local 62 if (hinfo) in seg6_free_hi() 63 seg6_hinfo_release(hinfo); in seg6_free_hi() 119 static int __do_hmac(struct seg6_hmac_info *hinfo, const char *text, u8 psize, in __do_hmac() argument 127 algo = __hmac_get_algo(hinfo->alg_id); in __do_hmac() 140 ret = crypto_shash_setkey(tfm, hinfo in __do_hmac() 161 seg6_hmac_compute(struct seg6_hmac_info *hinfo, struct ipv6_sr_hdr *hdr, struct in6_addr *saddr, u8 *output) seg6_hmac_compute() argument 241 struct seg6_hmac_info *hinfo; seg6_hmac_validate_skb() local 284 struct seg6_hmac_info *hinfo; seg6_hmac_info_lookup() local 292 seg6_hmac_info_add(struct net *net, u32 key, struct seg6_hmac_info *hinfo) seg6_hmac_info_add() argument 307 struct seg6_hmac_info *hinfo; seg6_hmac_info_del() local 329 struct seg6_hmac_info *hinfo; seg6_push_hmac() local [all...] |
H A D | seg6.c | 97 struct seg6_hmac_info *hinfo; in seg6_genl_sethmac() local 122 hinfo = seg6_hmac_info_lookup(net, hmackeyid); in seg6_genl_sethmac() 125 if (!hinfo) in seg6_genl_sethmac() 143 if (hinfo) { in seg6_genl_sethmac() 151 hinfo = kzalloc(sizeof(*hinfo), GFP_KERNEL); in seg6_genl_sethmac() 152 if (!hinfo) { in seg6_genl_sethmac() 157 memcpy(hinfo->secret, secret, slen); in seg6_genl_sethmac() 158 hinfo->slen = slen; in seg6_genl_sethmac() 159 hinfo in seg6_genl_sethmac() 245 __seg6_hmac_fill_info(struct seg6_hmac_info *hinfo, struct sk_buff *msg) __seg6_hmac_fill_info() argument 257 __seg6_genl_dumphmac_element(struct seg6_hmac_info *hinfo, u32 portid, u32 seq, u32 flags, struct sk_buff *skb, u8 cmd) __seg6_genl_dumphmac_element() argument 314 struct seg6_hmac_info *hinfo; seg6_genl_dumphmac() local [all...] |
/kernel/linux/linux-6.6/net/ipv6/ |
H A 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 in __do_hmac() 160 seg6_hmac_compute(struct seg6_hmac_info *hinfo, struct ipv6_sr_hdr *hdr, struct in6_addr *saddr, u8 *output) seg6_hmac_compute() argument 240 struct seg6_hmac_info *hinfo; seg6_hmac_validate_skb() local 283 struct seg6_hmac_info *hinfo; seg6_hmac_info_lookup() local 291 seg6_hmac_info_add(struct net *net, u32 key, struct seg6_hmac_info *hinfo) seg6_hmac_info_add() argument 306 struct seg6_hmac_info *hinfo; seg6_hmac_info_del() local 328 struct seg6_hmac_info *hinfo; seg6_push_hmac() local [all...] |
H A 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 in seg6_genl_sethmac() 301 __seg6_hmac_fill_info(struct seg6_hmac_info *hinfo, struct sk_buff *msg) __seg6_hmac_fill_info() argument 313 __seg6_genl_dumphmac_element(struct seg6_hmac_info *hinfo, u32 portid, u32 seq, u32 flags, struct sk_buff *skb, u8 cmd) __seg6_genl_dumphmac_element() argument 370 struct seg6_hmac_info *hinfo; seg6_genl_dumphmac() local [all...] |
/kernel/linux/linux-6.6/net/ipv4/ |
H A 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()
|
H A 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 in __inet_bhash2_update_saddr() 1005 struct inet_hashinfo *hinfo = death_row->hashinfo; __inet_hash_connect() local [all...] |
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | hash.c | 201 struct dx_hash_info *hinfo) in __ext4fs_dirhash() 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() 263 hinfo->hash = 0; in __ext4fs_dirhash() 269 hinfo->hash = hash; in __ext4fs_dirhash() 270 hinfo->minor_hash = minor_hash; in __ext4fs_dirhash() 275 struct dx_hash_info *hinfo) in ext4fs_dirhash() 294 r = __ext4fs_dirhash(buff, dlen, hinfo); in ext4fs_dirhash() 200 __ext4fs_dirhash(const char *name, int len, struct dx_hash_info *hinfo) __ext4fs_dirhash() argument 274 ext4fs_dirhash(const struct inode *dir, const char *name, int len, struct dx_hash_info *hinfo) ext4fs_dirhash() argument [all...] |
/kernel/linux/linux-6.6/fs/ext4/ |
H A D | hash.c | 201 struct dx_hash_info *hinfo) in __ext4fs_dirhash() 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 in __ext4fs_dirhash() 200 __ext4fs_dirhash(const struct inode *dir, const char *name, int len, struct dx_hash_info *hinfo) __ext4fs_dirhash() argument 294 ext4fs_dirhash(const struct inode *dir, const char *name, int len, struct dx_hash_info *hinfo) ext4fs_dirhash() argument [all...] |
H A 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() 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() 849 hinfo = &fname->hinfo; in dx_probe() 652 dx_show_leaf(struct inode *dir, struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de, int size, int show_names) dx_show_leaf() argument 809 dx_probe(struct ext4_filename *fname, struct inode *dir, struct dx_hash_info *hinfo, struct dx_frame *frame_in) dx_probe() argument 1069 htree_dirblock_to_tree(struct file *dir_file, struct inode *dir, ext4_lblk_t block, struct dx_hash_info *hinfo, __u32 start_hash, __u32 start_minor_hash) htree_dirblock_to_tree() argument 1185 struct dx_hash_info hinfo; ext4_htree_fill_tree() local 1311 dx_make_map(struct inode *dir, struct buffer_head *bh, struct dx_hash_info *hinfo, struct dx_map_entry *map_tail) dx_make_map() argument 1449 struct dx_hash_info *hinfo = &name->hinfo; ext4_fname_setup_ci_filename() local 1974 do_split(handle_t *handle, struct inode *dir, struct buffer_head **bh,struct dx_frame *frame, struct dx_hash_info *hinfo) do_split() argument 2154 struct dx_hash_info *hinfo = &fname->hinfo; ext4_insert_dentry() local [all...] |
/kernel/linux/linux-5.10/sound/pci/hda/ |
H A 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, substrea in azx_pcm_hw_free() 152 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_pcm_prepare() local 325 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_get_position() local 598 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_pcm_open() local [all...] |
H A D | patch_hdmi.c | 264 struct hda_pcm_stream *hinfo) in hinfo_to_pcm_index() 270 if (get_pcm_rec(spec, pcm_idx)->stream == hinfo) in hinfo_to_pcm_index() 273 codec_warn(codec, "HDMI: hinfo %p not tied to a PCM\n", hinfo); in hinfo_to_pcm_index() 278 struct hda_pcm_stream *hinfo) in hinfo_to_pin_index() 287 per_pin->pcm->pcm->stream == hinfo) in hinfo_to_pin_index() 291 codec_dbg(codec, "HDMI: hinfo %p (pcm %d) not registered\n", hinfo, in hinfo_to_pin_index() 292 hinfo_to_pcm_index(codec, hinfo)); in hinfo_to_pin_index() 1179 static int hdmi_pcm_open_no_pin(struct hda_pcm_stream *hinfo, in hdmi_pcm_open_no_pin() argument 263 hinfo_to_pcm_index(struct hda_codec *codec, struct hda_pcm_stream *hinfo) hinfo_to_pcm_index() argument 277 hinfo_to_pin_index(struct hda_codec *codec, struct hda_pcm_stream *hinfo) hinfo_to_pin_index() argument 1227 hdmi_pcm_open(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) hdmi_pcm_open() argument 1457 struct hda_pcm_stream *hinfo; hdmi_pcm_setup_pin() local 2054 generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) generic_hdmi_playback_pcm_prepare() argument 2137 generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) generic_hdmi_playback_pcm_cleanup() argument 2145 hdmi_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) hdmi_pcm_close() argument 3249 simple_playback_pcm_open(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) simple_playback_pcm_open() argument 3282 simple_playback_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) simple_playback_pcm_close() argument 3290 simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) simple_playback_pcm_prepare() argument 3388 nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) nvhdmi_8ch_7x_pcm_close() argument 3413 nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) nvhdmi_8ch_7x_pcm_prepare() argument 3797 tegra_hdmi_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) tegra_hdmi_pcm_prepare() argument 3816 tegra_hdmi_pcm_cleanup(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) tegra_hdmi_pcm_cleanup() argument [all...] |
/kernel/linux/linux-6.6/sound/pci/hda/ |
H A 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, substrea in azx_pcm_hw_free() 152 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_pcm_prepare() local 308 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_get_position() local 580 struct hda_pcm_stream *hinfo = to_hda_pcm_stream(substream); azx_pcm_open() local [all...] |
H A D | patch_hdmi.c | 277 struct hda_pcm_stream *hinfo) in hinfo_to_pcm_index() 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() 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 276 hinfo_to_pcm_index(struct hda_codec *codec, struct hda_pcm_stream *hinfo) hinfo_to_pcm_index() argument 290 hinfo_to_pin_index(struct hda_codec *codec, struct hda_pcm_stream *hinfo) hinfo_to_pin_index() argument 1240 hdmi_pcm_open(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) hdmi_pcm_open() argument 1434 struct hda_pcm_stream *hinfo; hdmi_pcm_setup_pin() local 2083 generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) generic_hdmi_playback_pcm_prepare() argument 2161 generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) generic_hdmi_playback_pcm_cleanup() argument 2169 hdmi_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) hdmi_pcm_close() argument 3382 simple_playback_pcm_open(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) simple_playback_pcm_open() argument 3415 simple_playback_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) simple_playback_pcm_close() argument 3423 simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) simple_playback_pcm_prepare() argument 3521 nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) nvhdmi_8ch_7x_pcm_close() argument 3546 nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) nvhdmi_8ch_7x_pcm_prepare() argument 3958 tegra_hdmi_pcm_prepare(struct hda_pcm_stream *hinfo, struct hda_codec *codec, unsigned int stream_tag, unsigned int format, struct snd_pcm_substream *substream) tegra_hdmi_pcm_prepare() argument 3977 tegra_hdmi_pcm_cleanup(struct hda_pcm_stream *hinfo, struct hda_codec *codec, struct snd_pcm_substream *substream) tegra_hdmi_pcm_cleanup() argument [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/netfilter/ |
H A 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
|
/kernel/linux/linux-6.6/include/uapi/linux/netfilter/ |
H A 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
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/netfilter/ |
H A D | xt_hashlimit.h | 49 struct xt_hashlimit_htable * hinfo; member 89 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member 94 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member 99 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/netfilter/ |
H A D | xt_hashlimit.h | 49 struct xt_hashlimit_htable * hinfo; member 89 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member 94 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member 99 struct xt_hashlimit_htable * hinfo __attribute__((aligned(8))); member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/netfilter/ |
H A D | xt_hashlimit.h | 38 struct xt_hashlimit_htable *hinfo; member 82 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member 88 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member 94 struct xt_hashlimit_htable *hinfo __attribute__((aligned(8))); member
|
/kernel/linux/linux-5.10/drivers/scsi/megaraid/ |
H A 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() 877 * @hinfo : New format, more comprehensive adapter info 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 in hinfo_to_cinfo() [all...] |
/kernel/linux/linux-6.6/drivers/scsi/megaraid/ |
H A 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() 877 * @hinfo : New format, more comprehensive adapter info 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 in hinfo_to_cinfo() [all...] |
/kernel/linux/linux-5.10/include/net/ |
H A D | seg6_hmac.h | 42 extern int seg6_hmac_compute(struct seg6_hmac_info *hinfo, 47 struct seg6_hmac_info *hinfo);
|
/kernel/linux/linux-6.6/include/net/ |
H A D | seg6_hmac.h | 42 extern int seg6_hmac_compute(struct seg6_hmac_info *hinfo, 47 struct seg6_hmac_info *hinfo);
|
/kernel/linux/linux-6.6/net/ipv4/netfilter/ |
H A 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()
|