-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallocation_funcs
More file actions
1989 lines (1989 loc) · 38.2 KB
/
allocation_funcs
File metadata and controls
1989 lines (1989 loc) · 38.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// list of functions that return a new allocation.
// generated by `gen_allocation_list.sh`
__a2mp_build
aa_alloc_profile
aa_alloc_proxy
aa_label_alloc
aa_load_ent_alloc
aarp_alloc
aca_alloc
acc_alloc_fw
__acomp_request_alloc
acpi_alloc_fwnode_static
acpi_data_add_props
acpi_ec_alloc
acpi_ec_create_query
acpi_lpat_get_conversion_table
acpiphp_init_context
acpi_processor_alloc_pdc
acquire_group
acrn_ioreq_client_create
ad5755_parse_dt
add_device
additional_memory_resource
_add_opp_dev
add_uncore_discovery_type
adf4350_parse_dt
aead_request_alloc
afs_alloc_addrlist
afs_alloc_call
afs_alloc_read
afs_alloc_sbi
afs_alloc_server
afs_alloc_vlserver
afs_alloc_vlserver_list
aggr_init
agp_alloc_bridge
agp_create_client
agp_create_controller
agp_create_memory
agp_create_user_memory
agp_generic_alloc_page
ahash_request_alloc
ahc_alloc
ahc_alloc_tstate
ahd_alloc
ahd_alloc_tstate
ai_attach
akcipher_request_alloc
alloc_ai
alloc_and_bind
alloc_apertures
alloc_apic_chip_data
alloc_arena
alloc_async
allocate_bitmap_node
allocate_cnodes
allocate_excl_cntrs
allocate_flower_entry
allocate_ftrace_mod_map
__allocate_fw_priv
allocate_hiq_mqd
allocate_instance
allocate_mqd
allocate_partitions
allocate_request
allocate_sdma_mqd
allocate_shared_regs
allocate_signal_page
__alloc_atm_dev
alloc_backoff
alloc_btrfs_bio
alloc_buf
alloc_buffer
alloc_cache_mr
alloc_cell
alloc_channel
alloc_choose_arg_map
alloc_chunk
alloc_cld_upcall
alloc_conn
alloc_context
alloc_cpu_rmap
alloc_crush_loc
alloc_crush_name
alloc_ctrl_packet
alloc_data_packet
alloc_dax_region
alloc_dca_provider
alloc_desc
alloc_dev
alloc_dev_data
__alloc_disk_node
alloc_dma_fence
alloc_dvs_6axis_table
alloc_engines
alloc_ep
alloc_event_waiters
alloc_fdtable
alloc_fence
alloc_flex_gd
alloc_ftrace_hash
alloc_fw_cache_entry
alloc_fw_event_work
alloc_generic_request
alloc_gid_entry
alloc_gid_table
alloc_group_attrs
alloc_handle
alloc_hash_table
alloc_i7core_dev
alloc_iface
alloc_image_page
alloc_indirect_packed
alloc_indirect_split
alloc_ioatdma
__alloc_irq_table
alloc_jh
alloc_journal_list
alloc_largest_available
alloc_large_system_hash
alloc_ldt_struct
alloc_lightbar_cmd_msg
alloc_lvn
alloc_mact_entry
alloc_mad_private
alloc_mpc
alloc_msg
alloc_msi_entry
alloc_multipath
alloc_mux_rx
alloc_mux_tx
alloc_net_device
alloc_nilfs
alloc_node_to_cpumask
alloc_ns
alloc_nvdimm_map
alloc_one_pg_vec_page
alloc_opinfo
alloc_parallel
_alloc_path_selector
alloc_pcie_link_state
alloc_pci_root_info
__alloc_pd
alloc_pdev
alloc_perf_context
alloc_pg_mapping
alloc_pgpath
alloc_pg_vec
alloc_pipe_info
alloc_pl
alloc_priority_group
alloc_pvd
alloc_rdma
alloc_read_gpt_entries
alloc_read_gpt_header
alloc_reloc_control
alloc_resource
alloc_ring
alloc_rootdomain
alloc_rsm_map_table
alloc_rule
alloc_rx_agg
alloc_rx_struct
alloc_sbridge_dev
alloc_sched_domains
alloc_scq
alloc_sdesc
alloc_selector
alloc_session
alloc_sglist
alloc_sgtable
alloc_shash_desc
alloc_single_sgt
__alloc_skb
alloc_slab_page
alloc_smp_req
alloc_spg_mapping
alloc_spt
alloc_srv_ctx
alloc_state_change
alloc_super
alloc_switch_ctx
alloc_synth_event
alloc_test_dev_kmod
alloc_transport
alloc_tree
alloc_tree_mod_elem
alloc_trial_cpuset
alloc_tty_struct
alloc_tx_sdu_struct
alloc_tx_struct
alloc_ubifs_info
alloc_urbp
alloc_urbs
alloc_vudc_device
alloc_watch_adapter
alloc_worker
alloc_workqueue
alloc_workqueue_attrs
alloc_ws
amd_alloc_nb
amdgpu_amdkfd_fence_create
amdgpu_atombios_encoder_get_dig_info
amdgpu_atombios_encoder_get_lcd_info
amdgpu_atom_parse
amdgpu_cgs_create_device
amdgpu_connector_get_hardcoded_edid
amdgpu_dm_irq_register_interrupt
amdgpu_i2c_create
amdgpu_vm_bo_add
amp_ctrl_add
amp_mgr_create
anx7625_get_edid
aoedev_by_aoeaddr
ap_add_sta
ap_auth_make_challenge
append_internal
apply_wqattrs_prepare
aq_vec_alloc
arfs_alloc_rule
arm_lpae_alloc_pgtable
__arm_v7s_alloc_table
arpc_alloc
ast_i2c_create
asus_report_fixup
ata_host_alloc
ata_port_alloc
ath10k_swap_code_seg_alloc
ath11k_core_alloc
ath11k_regd_intersect
ath6kl_htc_mbox_create
ath6kl_htc_pipe_create
ath6kl_usb_create
ath6kl_wmi_init
ath9k_htc_hw_alloc
ath9k_init_wmi
ath_gen_timer_alloc
atif_add_device
atom_parse
attr_create_nonres_log
audio_format_alloc_init
audit_alloc_context
audit_alloc_name
audit_init_entry
audit_krule_to_data
autofs_new_ino
ax25_create_cb
axg_tdm_stream_alloc
axi_desc_alloc
axi_dmac_alloc_desc
b43_bus_dev_bcma_init
b43_bus_dev_ssb_init
b43_calibrate_lo_setting
b43_generate_dyn_tssi2dbm_tab
b43legacy_generate_probe_resp
b43legacy_setup_dmaring
b43legacy_setup_pioqueue
b43_setup_dmaring
b43_setup_pioqueue_rx
b43_setup_pioqueue_tx
b53_switch_alloc
balloon_page_alloc
batadv_dat_select_candidates
batadv_forw_packet_alloc
batadv_hardif_add_interface
batadv_hardif_neigh_create
batadv_hash_new
batadv_nc_get_nc_node
batadv_neigh_ifinfo_new
batadv_neigh_node_create
batadv_orig_ifinfo_new
batadv_orig_node_new
batadv_orig_node_vlan_new
batadv_tp_init_recv
bch_alloc
bch_cache_set_alloc
bch_init
bcm47xx_nvram_get_contents
bdi_alloc
bdx_rxdb_create
be_alloc_work
bfad_fcxp_map_sg
bin_to_hex_dup
bio_alloc_map_data
bio_kmalloc
bios_parser_create_integrated_info
blk_alloc_flush_queue
blk_alloc_queue_stats
blkg_alloc
blk_mq_alloc_hctx
blk_mq_init_tags
blk_stat_alloc_callback
bnx2fc_alloc_work
bnx2fc_cmd_mgr_alloc
bnx2fc_hba_create
bnxt_alloc_cp_sub_ring
__bnxt_alloc_rx_data
bnxt_qplib_rcfw_alloc_sbuf
bnxt_re_create_shadow_qp
bnxt_re_create_shadow_qp_ah
bnxt_tc_get_l2_node
bnxt_tc_get_tunnel_node
bo_driver_ttm_tt_create
bond_alloc_slave
bpf_event_entry_gen
bpf_insn_prepare_dump
bpf_map_kmalloc_node
bpf_map_kzalloc
bpf_prog_alloc_no_stats
bpf_prog_clone_create
bpf_trampoline_lookup
bq24735_parse_dt_data
brcmf_alloc_internal_escan_request
brcmf_cfg80211_attach
brcmf_cfg80211_get_ops
brcmf_flowring_attach
brcmf_fw_alloc_request
brcmf_fw_nvram_from_efi
brcmf_get_module_param
brcmf_msgbuf_init_pktids
brcmf_pcie_alloc_dma_and_ring
brcmf_pcie_init_dmabuffer_for_device
brcmf_sdio_probe
brcmf_usbdev_qinit
brcms_c_ampdu_attach
brcms_c_antsel_attach
brcms_c_attach_malloc
brcms_c_bsscfg_malloc
brcms_c_channel_mgr_attach
brcms_init_timer
br_multicast_new_group_src
br_multicast_new_port_group
bsd_alloc
btmrvl_add_card
btracker_create
btrfs_alloc_block_rsv
btrfs_alloc_delalloc_work
btrfs_alloc_delayed_item
btrfs_alloc_dummy_block_group
btrfs_alloc_dummy_fs_info
btrfs_alloc_root
__btrfs_alloc_workqueue
btrfs_alloc_workqueue
btrfs_backref_alloc_edge
btrfs_backref_alloc_node
btrfs_backref_iter_alloc
btrfs_create_block_group_cache
btrfs_create_dio_private
btrfsic_block_alloc
btrfsic_block_link_alloc
btrfsic_dev_state_alloc
btrfsic_stack_frame_alloc
btrfs_printable_features
bts_buffer_setup_aux
btt_init
build_ac_header_desc
build_fu_desc
build_group_from_child_sched_domain
build_htc_txctrl_packet
c4iw_alloc_wr_wait
c4iw_uld_add
c8sectpfe_create
cachefiles_cook_key
cache_rpm_request
caif_device_alloc
cal_ctx_create
call_usermodehelper_setup
capiminor_alloc
capincci_alloc
capture_regs
carl9170_cmd_buf
carl9170_debugfs_hw_ampdu_info_read
carl9170_debugfs_hw_phy_errors_read
carl9170_debugfs_hw_pta_queue_read
carl9170_debugfs_hw_rx_tally_read
carl9170_debugfs_hw_tx_tally_read
carl9170_debugfs_hw_wlan_queue_read
cas_page_alloc
cci_pci_create_irq_table
ccp_alloc_struct
cdebbuf_alloc
cdev_alloc
cdns_i3c_master_alloc_xfer
cdnsp_ring_alloc
cdnsp_segment_alloc
cdv_intel_crtc_mode_get
ceph_alloc_options
ceph_buffer_new
ceph_create_snap_context
ceph_kvmalloc
ceph_osdc_alloc_request
ceph_osdmap_alloc
ceph_pagelist_alloc
cfcnfg_create
cffrml_create
cfg80211_beacon_dup
cfi_read_pri
cfi_staa_setup
cfusbl_create
cfv_alloc_and_copy_to_shm
channel_detector_create
chcr_ktls_uld_add
ch_ipsec_uld_add
chtls_sock_create
chtls_uld_add
cifs_aio_ctx_alloc
cifs_build_path_to_root
cifs_lock_init
cifs_new_fileinfo
cifs_readdata_direct_alloc
cifs_strndup_from_utf16
cifs_strndup_to_utf16
cifs_writedata_direct_alloc
class_compat_register
clflush_work_create
cmtp_application_add
cnic_alloc_dev
cn_queue_alloc_callback_entry
cn_queue_alloc_dev
codec_init
codec_vp9_get_new_frame
comedi_alloc_devpriv
comedi_alloc_spriv
comedi_buf_map_alloc
comedi_isadma_alloc
conn_create
convert_chmap
convert_chmap_v3
convert_to_nt_pathname
convert_to_unix_name
cookie_alloc
copy_tlv
core_dev_init_initiator_node_lun_acl
cpdma_ctlr_create
cpia2_init_camera_struct
cpufreq_policy_alloc
create_bio_slab
create_doorbell_sg
create_durable_buf
create_durable_v2_buf
create_event_attributes
create_field_var
create_foo_obj
create_hist_field
create_i2c
create_l2
create_namespace_io
create_new_subsystem
create_osd
create_pmu_entry
create_port
create_posix_buf
create_primary_plane
create_query_id_buf
create_reconnect_durable_buf
create_reconnect_durable_v2_buf
create_reg_rules_from_wmi
create_regulator
create_rmpp_recv
create_root_ns
create_sd_buf
create_serial
create_sort_entry
create_trap_node
create_twarp_buf
create_unique_id
create_var
create_vblank_event
create_wlan
__create_xol_area
crypto_alloc_context
__crypto_alloc_tfm
crypto_create_tfm_node
crypto_engine_alloc_init_and_set
crypt_page_alloc
cs46xx_dsp_spos_create
cs5535_mfgpt_alloc_timer
cs8409_alloc_spec
cs_alloc_spec
csio_hw_alloc
ct_alloc_msg
ct_timer_instance_new
ct_timer_new
cx88_core_create
cxgbi_device_register
cxgbi_sock_create
cxgbit_np_hash_add
cyberpro_alloc_fb_info
da7213_fw_to_pdata
da7218_of_to_pdata
da7219_aad_fw_to_pdata
da7219_fw_to_pdata
da9150_fg_dt_pdata
dal_ddc_service_create
dal_gpio_create
dal_gpio_create_ddc
dal_gpio_service_create
dal_irq_service_dce110_create
dal_irq_service_dce120_create
dal_irq_service_dce60_create
dal_irq_service_dce80_create
dal_vector_create
dal_vector_presized_create
damon_new_ctx
damon_new_region
damon_new_target
dapm_cnew_widget
datablob_format
dbc_alloc_ctx
dbc_alloc_request
dca_allocate_domain
dc_copy_state
dc_copy_stream
dccp_feat_clone_entry
dc_create
dc_create_stream_for_sink
dc_dmub_srv_create
dce100_hwseq_create
dce100_i2c_hw_create
dce110_hwseq_create
dce110_i2c_hw_create
dce112_hwseq_create
dce112_i2c_hw_create
dce120_hwseq_create
dce120_i2c_hw_create
dce121_hwseq_create
dce60_hwseq_create
dce60_i2c_hw_create
dce60_i2c_sw_create
dce80_hwseq_create
dce80_i2c_hw_create
dce80_i2c_sw_create
dc_sink_create
descriptor_list_allocate
devdata_create
device_alloc
device_link_add
device_queue_manager_init
devinfo_seq_start
devlink_alloc_ns
devlink_fmsg_alloc
devm_get_free_pages
devm_irq_alloc_generic_chip
devm_kmemdup
devm_kstrdup
devm_kvasprintf
devm_otg_ulpi_create
dev_new
dev_seq_start
dfl_fpga_enum_info_alloc
dfs_pattern_detector_init
dib8000_init
dib9000_attach
dj_get_receiver_dev
dlm_allocate_lvb
dlm_alloc_ctxt
dlm_alloc_pagevec
dlm_lowcomms_new_msg_con
dlm_midcomms_get_mhandle
dln2_prep_buf
dma_alloc_desc_resource
dma_attach
dma_common_alloc_pages
dma_fence_array_create
dm_alloc_md_mempools
dmam_alloc_attrs
dma_pool_create
dma_port_alloc
dmar_alloc_pci_notify_info
dma_resv_list_alloc
dm_bio_prison_create
dm_bio_prison_create_v2
dm_deferred_set_create
dm_dirty_log_create
dm_ima_alloc
dm_tm_create_non_blocking_clone
dmub_psr_create
dn_dev_alloc_ifa
dn_dev_create
dn_new_zone
do_kimage_alloc_init
dpaa2_io_create
dpaa2_io_store_create
dr_action_create_generic
drbd_create_resource
dr_create_cq
dr_create_rc_qp
drm_atomic_helper_bridge_duplicate_state
drm_atomic_helper_bridge_propagate_bus_fmt
drm_atomic_helper_connector_duplicate_state
drm_atomic_helper_crtc_duplicate_state
drm_atomic_helper_plane_duplicate_state
drm_crtc_create_fence
drm_dp_add_mst_branch_device
drm_dp_mst_add_port
drm_flip_work_allocate_task
drm_legacy_agp_init
drm_master_create
drm_mode_create
drm_mode_create_tile_group
drm_property_create
drm_random_order
drm_writeback_get_out_fence
dr_reg_mr
dr_rule_create_rule
dsa_tree_alloc
dsp_cmx_new_conf
dst_cow_metrics_generic
dtpm_alloc
dtsec_config
dummy_alloc
dup_and_fixup_symbol_prop
dup_token
dw_apb_clockevent_init
dw_apb_clocksource_init
dwc2_hcd_qh_create
dwc2_hcd_urb_alloc
dwc2_host_get_tt_info
dw_dma_parse_dt
dw_edma_alloc_burst
dw_edma_alloc_chunk
dw_edma_alloc_desc
dw_hdmi_bridge_atomic_get_input_bus_fmts
dw_hdmi_bridge_atomic_get_output_bus_fmts
dw_i3c_master_alloc_xfer
ecc_alloc_point
edac_device_alloc_ctl_info
edac_mc_alloc
edac_pci_alloc_ctl_info
ef4_alloc_channel
ef4_copy_channel
efa_vmalloc_buf_to_sg
efc_domain_alloc
efc_nport_alloc
efct_device_alloc
efct_hw_new_cq
efct_hw_new_eq
efct_hw_new_mq
efct_hw_new_wq
efct_hw_reqtag_pool_alloc
efct_hw_rx_buffer_alloc
efct_io_pool_create
efct_xport_alloc
efc_vport_create_spec
efx_alloc_channel
efx_alloc_rss_context_entry
efx_copy_channel
eg_cache_add_entry
ehci_qh_alloc
elevator_alloc
endpoint_alloc
erofs_allocpage
esp_get_ent
event_queue_new
exfat_get_dentry_set
expr_str
ext4_htree_create_dir_info
ext4_li_request_new
extent_changeset_alloc
extract_fw_ver_from_str
exynos_drm_ipp_task_alloc
exynos_srom_alloc_reg_dump
ezusb_alloc_ctx
f2fs_acl_clone
fake_alloc_consistent
fan53555_parse_dt
fanotify_alloc_merge_hash
fb_create_modedb
fb_do_probe_ddc_edid
fc_exch_mgr_add
fc_exch_mgr_alloc
fcoe_ctlr_device_add
fc_remote_port_create
fei_attr_new
ff_layout_alloc_mirror
ffs_build_sg_list
ffs_data_new
fib6_alloc_table
fib6_info_alloc
fib_trie_table
fifo_alloc
fill_up_crash_elf_data
find_or_allocate_block
find_quotarealm_inode
fir16_create
fl_create
flctl_parse_dt
flexcop_device_kmalloc
flow_action_cookie_create
flow_indr_dev_alloc
flow_offload_alloc
flow_resources_alloc
flow_rule_alloc
fman_muram_init
fnic_dev_register
folio_alloc
fotg210_qh_alloc
fpga_bridge_create
fpga_image_info_alloc
fpga_mgr_create
fpga_region_create
frame_create
frame_vector_create
fscache_alloc_retrieval
fsi_create_device
fsl_edma_alloc_desc
fs_path_alloc
ftrace_alloc_direct_func
fuse_dev_alloc
fuse_file_alloc
fuse_io_alloc
fuse_pages_alloc
fuse_writepage_args_alloc
fw_create_instance
fwnet_pd_new
fw_node_create
gameport_allocate_port
gaudi_dma_alloc_coherent
gb_bundle_create
gb_interface_create
gb_module_create
gb_svc_create
gcov_info_dup
gcov_iter_new
gen_pool_create
genprobe_ident_chips
genradix_alloc_node
get_a_page
get_builtin_and_secondary_restriction
get_cert_list
get_client
get_device_details
get_dname
geth_freeq_alloc_map_page
get_image_page
get_indirect_ea
get_lznt_ctx
get_new_pps
get_policy_node_type
get_random_order
get_rndis_device
get_rndis_request
get_scq
get_tracing_log_err
__get_vm_area_node
get_vm_block
get_workaround_page
get_writeback_formats
gf128mul_init_4k_bbe
gf128mul_init_4k_lle
gf128mul_init_64k_bbe
gfs2_alloc_sort_buffer
gnss_allocate_device
gntdev_alloc_map
go7007_alloc
goya_dma_alloc_coherent
gpiochip_populate_parent_fwspec_fourcell
gpiochip_populate_parent_fwspec_twocell
gpio_mockup_make_line_names
gpio_nand_get_io_sync_of
groups_alloc
gru_alloc_vma_data
gsm_alloc_mux
gsm_control_send
gsm_data_alloc
gsm_dlci_alloc
gsmi_buf_alloc
gss_alloc_context
gss_dup_cred
gss_stringify_acceptor
gt_record_uc
hci_add_irk
hci_add_link_key
hci_add_ltk
hci_alloc_dev_priv
hci_chan_create
hci_conn_add
hd44780_common_alloc
hdcp_create_workqueue
hem_list_alloc_item
hfs_btree_open
hfsplus_btree_open
hidinput_allocate
hidma_create_sysfs_entry
hidma_ll_init
hidpp_get_device_name
hidpp_unifying_get_name
hid_register_field
hl_cb_alloc
hl_cs_allocate_job
hns3_backup_ringparam
hns_dsaf_alloc_dev
hns_gmac_config
hns_misc_op_get
hns_roce_alloc_db_pgdir
hns_roce_alloc_hem
hns_xgmac_config
__hostap_add_bss
hostif_generic_request
hotadd_new_pgdat
hpda_alloc_ctlr_info
hpfs_load_bitmap_directory
hpfs_load_code_page
hpi_alloc_control_cache
hpsa_alloc_sas_node
hpsa_alloc_sas_phy
hpsa_alloc_sas_port
hsi_alloc_controller
hsi_alloc_msg
hsi_new_client
hso_create_device
hso_create_shared_int
hsu_dma_alloc_desc
hugepage_new_subpool
hvutil_transport_init
__hw_addr_create
hwinfo_try_fetch
__hwrm_acquire_token
hwsim_alloc_edge
i2c_matroxfb_probe
i2c_mux_alloc
i3c_ccc_cmd_dest_init
i40e_add_filter
__i8254_init
i8xx_alloc_pages
i915_gpu_coredump_alloc
i915_random_order
i915_sched_engine_create
i915_vma_capture_prepare
i915_vma_coredump_create
i915_vma_work
ia_css_3a_statistics_allocate
ia_css_dvs2_6axis_config_allocate
ia_css_dvs2_coefficients_allocate
ia_css_dvs2_statistics_allocate
ia_css_dvs_coefficients_allocate
ia_css_dvs_statistics_allocate
ia_css_host_data_allocate
ia_css_isp_3a_statistics_allocate
ia_css_isp_3a_statistics_map_allocate
ia_css_isp_dvs2_statistics_allocate
ia_css_isp_dvs_statistics_allocate
ia_css_isp_dvs_statistics_map_allocate
ia_css_metadata_allocate
ia_css_morph_table_allocate
ia_css_shading_table_alloc
iavf_add_filter
iavf_add_vlan
iavf_client_add_instance
_ib_alloc_device
ibmasm_new_command
ibm_slot_from_id
ice_arfs_build_entry
ice_create_vsi_list_map
ice_get_opt_fw_name
ice_pkg_buf_alloc
ice_vsi_alloc
ics5342_init
idle_inject_register
idma64_alloc_desc
idt77252_init_est
idxd_alloc
ieee80211_alloc_chanctx
ieee80211_alloc_txb
ieee80211_ccmp_init
ieee80211_ibss_build_presp
ieee80211_tkip_init
iio_alloc_pollfunc
iio_dma_buffer_alloc_block
il4965_sta_alloc_lq
ima_alloc_key_entry
ima_alloc_pages
ima_lsm_copy_rule
imgu_mmu_alloc_page_table
imon_init_intf0
imx319_get_hwcfg
imx355_get_hwcfg
imx_pd_bridge_atomic_get_input_bus_fmts
in_cache_add_entry
info_create
ingenic_cgu_new
init_i2c_bus
init_opal_dev
init_peer
init_pseudo
init_rs_internal
init_rsttbl
init_sbd
init_sg
init_temp_data
input_allocate_device
intel_breadcrumbs_create
intel_connector_alloc
intel_crtc_state_alloc
intel_dp_create_fake_mst_encoder
intel_dsi_host_init
intel_encoder_current_mode
intel_engine_coredump_alloc
intel_gt_coredump_alloc
intel_overlay_capture_error_state
intel_sdvo_connector_alloc
intel_th_device_alloc
io_alloc_page_table
ioasid_alloc_allocator
ioat_alloc_ring
io_mapping_create_wc
iommu_alloc_4k_pages
iommu_alloc_resv_region
iopf_queue_alloc
io_ring_ctx_alloc
io_rsrc_node_alloc
ipack_bus_register
ipc_imem_init
ipc_mmio_init
ipc_msg_alloc
ipc_mux_init
ipc_port_init
ipc_protocol_init
ipc_wwan_init
ipmi_alloc_recv_msg
ipmi_alloc_smi_msg
ipmi_dev_alloc
ipmi_msg_alloc
ipoib_cm_create_tx
ipoib_mcast_alloc
ipoib_mcast_iter_init
ipoib_neigh_ctor
ipoib_path_iter_init
ipr_alloc_ucode_buffer
ipv6_dup_options
ipv6_icmp_sysctl_init
ipv6_route_sysctl_init
ip_vs_lblcr_new
ip_vs_sync_buff_create
ip_vs_sync_buff_create_v0
ipw_alloc_error_log
ipwireless_hardware_create
ipwireless_network_create
ipw_rx_queue_alloc
irda_usb_find_class_desc
irdma_alloc_and_get_cqp_request
irdma_create_event
irdma_make_cm_node
irdma_make_listen_node
irq_alloc_generic_chip
irq_alloc_matrix
irq_create_affinity_masks
__irq_domain_add
irq_domain_insert_irq_data
isci_host_alloc
isci_request_firmware
isci_request_oprom
iscsi_alloc_session
iscsi_boot_create_kobj
iscsi_boot_create_kset
iscsi_create_conn
iscsi_create_endpoint
iscsi_create_flashnode_conn
iscsi_create_flashnode_sess
iscsi_create_iface
iscsi_login_init_conn
iscsi_set_default_param
iscsit_alloc_conn
iscsit_alloc_portal_group
iser_device_find_by_ib_device
ish_dev_init
ishtp_cl_allocate
ishtp_io_rb_init
iso_sched_alloc
iso_stream_alloc
it66121_bridge_atomic_get_input_bus_fmts
it66121_bridge_atomic_get_output_bus_fmts
it821x_firmware_command
iwl_dbgfs_fw_info_seq_start
iwl_dbgfs_tx_queue_seq_start
iwl_fw_error_dump_file
iwl_mvm_prepare_multicast
iwl_parse_eeprom_data
iwl_parse_nvm_data
_iwl_pcie_ctxt_info_dma_alloc_coherent
iwl_phy_db_init
iwl_sta_alloc_lq
iwl_trans_alloc
iwl_trans_pcie_dump_data
iwpm_get_nlmsg_request
j1939_priv_create
j1939_session_new
jbd2_alloc
jffs2_alloc_full_dirent
journal_init_common
jz4780_dma_desc_alloc
k3_dma_alloc_desc_resource
kbuf_alloc_2_sgl
kcalloc
kernel_queue_init
keygen_init
keypair_create
kfd_create_process_device_data
kfd_create_topology_device
kgd2kfd_probe