Newer
Older
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
ffffff80081d5f58 T trace_define_field
ffffff80081d6050 T trace_event_get_offsets
ffffff80081d6088 T trace_event_raw_init
ffffff80081d60b0 T trace_event_ignore_this_pid
ffffff80081d60e0 T trace_event_buffer_reserve
ffffff80081d6170 T trace_event_reg
ffffff80081d6230 T trace_event_enable_cmd_record
ffffff80081d6300 T trace_event_enable_tgid_record
ffffff80081d63d0 T trace_event_enable_disable
ffffff80081d63e8 t __ftrace_event_enable_disable
ffffff80081d6658 T trace_event_follow_fork
ffffff80081d66e0 t event_filter_pid_sched_process_fork
ffffff80081d66f8 t event_filter_pid_sched_process_exit
ffffff80081d6718 T trace_set_clr_event
ffffff80081d67c8 T trace_event_eval_update
ffffff80081d6ab8 T trace_add_event_call_nolock
ffffff80081d6bb8 t __register_event
ffffff80081d6c90 T trace_add_event_call
ffffff80081d6cd8 T trace_remove_event_call_nolock
ffffff80081d6d98 T trace_remove_event_call
ffffff80081d6de0 T __find_event_file
ffffff80081d6e80 T find_event_file
ffffff80081d6f30 T event_trace_add_tracer
ffffff80081d7068 t create_event_toplevel_files
ffffff80081d71c8 T event_trace_del_tracer
ffffff80081d72b8 t __ftrace_clear_event_pids
ffffff80081d7440 t __ftrace_set_clr_event_nolock
ffffff80081d75f8 t __trace_remove_event_call
ffffff80081d7798 t remove_event_file_dir
ffffff80081d78e0 t __put_system
ffffff80081d7970 t event_create_dir
ffffff80081d7da8 t subsystem_filter_read
ffffff80081d7e80 t subsystem_filter_write
ffffff80081d7f10 t subsystem_open
ffffff80081d8158 t subsystem_release
ffffff80081d8200 t system_enable_read
ffffff80081d83a8 t system_enable_write
ffffff80081d85a0 t event_enable_read
ffffff80081d86a8 t event_enable_write
ffffff80081d8790 t event_id_read
ffffff80081d8828 t event_filter_read
ffffff80081d8930 t event_filter_write
ffffff80081d89e8 t trace_format_open
ffffff80081d8a28 t f_start
ffffff80081d8b38 t f_stop
ffffff80081d8b58 t f_next
ffffff80081d8c00 t f_show
ffffff80081d8d70 t ftrace_event_write
ffffff80081d8e60 t ftrace_event_set_open
ffffff80081d8f30 t ftrace_event_release
ffffff80081d8f68 t ftrace_set_clr_event
ffffff80081d9088 t s_start
ffffff80081d9110 t t_stop
ffffff80081d9130 t s_next
ffffff80081d9170 t t_show
ffffff80081d9200 t system_tr_open
ffffff80081d92b8 t ftrace_event_pid_write
ffffff80081d94e0 t ftrace_event_set_pid_open
ffffff80081d9588 t event_filter_pid_sched_switch_probe_pre
ffffff80081d9620 t event_filter_pid_sched_switch_probe_post
ffffff80081d9690 t event_filter_pid_sched_wakeup_probe_pre
ffffff80081d9750 t event_filter_pid_sched_wakeup_probe_post
ffffff80081d9808 t ignore_task_cpu
ffffff80081d9878 t p_start
ffffff80081d98c8 t p_stop
ffffff80081d9908 t p_next
ffffff80081d9928 t show_header
ffffff80081d99f0 t ftrace_event_avail_open
ffffff80081d9a30 t t_start
ffffff80081d9ad0 t t_next
ffffff80081d9b20 t trace_module_notify
ffffff80081d9d08 T ftrace_event_is_function
ffffff80081d9d20 t ftrace_event_register
ffffff80081d9d28 t update_symbol_cache
ffffff80081d9d30 t free_symbol_cache
ffffff80081d9d38 t alloc_symbol_cache
ffffff80081d9d40 T perf_trace_init
ffffff80081d9df0 t perf_trace_event_init
ffffff80081da0a0 T perf_trace_destroy
ffffff80081da0f8 t perf_trace_event_unreg
ffffff80081da1b0 T perf_uprobe_init
ffffff80081da280 T perf_uprobe_destroy
ffffff80081da2e0 T perf_trace_add
ffffff80081da368 T perf_trace_del
ffffff80081da3c0 T perf_trace_buf_alloc
ffffff80081da488 T perf_trace_buf_update
ffffff80081da4c0 T filter_parse_regex
ffffff80081da5b8 T filter_match_preds
ffffff80081da650 T print_event_filter
ffffff80081da698 T print_subsystem_event_filter
ffffff80081da708 T free_event_filter
ffffff80081da770 T filter_assign_type
ffffff80081da7e8 T create_event_filter
ffffff80081da800 t create_filter
ffffff80081da8e0 T apply_event_filter
ffffff80081daa90 T apply_subsystem_event_filter
ffffff80081db0a0 T ftrace_profile_free_filter
ffffff80081db110 T ftrace_profile_set_filter
ffffff80081db268 t create_filter_start
ffffff80081db388 t process_preds
ffffff80081dc540 t append_filter_err
ffffff80081dc688 t filter_pred_none
ffffff80081dc690 t filter_pred_comm
ffffff80081dc6d0 t filter_pred_string
ffffff80081dc710 t filter_pred_strloc
ffffff80081dc758 t filter_pred_pchar
ffffff80081dc7a0 t filter_pred_cpu
ffffff80081dc830 t regex_match_full
ffffff80081dc860 t regex_match_front
ffffff80081dc8a0 t regex_match_middle
ffffff80081dc8d0 t regex_match_end
ffffff80081dc918 t regex_match_glob
ffffff80081dc940 t filter_pred_64
ffffff80081dc960 t filter_pred_32
ffffff80081dc980 t filter_pred_16
ffffff80081dc9a0 t filter_pred_8
ffffff80081dc9c0 t filter_pred_LE_s64
ffffff80081dc9d8 t filter_pred_LT_s64
ffffff80081dc9f0 t filter_pred_GE_s64
ffffff80081dca08 t filter_pred_GT_s64
ffffff80081dca20 t filter_pred_BAND_s64
ffffff80081dca38 t filter_pred_LE_u64
ffffff80081dca50 t filter_pred_LT_u64
ffffff80081dca68 t filter_pred_GE_u64
ffffff80081dca80 t filter_pred_GT_u64
ffffff80081dca98 t filter_pred_BAND_u64
ffffff80081dcab0 t filter_pred_LE_s32
ffffff80081dcac8 t filter_pred_LT_s32
ffffff80081dcae0 t filter_pred_GE_s32
ffffff80081dcaf8 t filter_pred_GT_s32
ffffff80081dcb10 t filter_pred_BAND_s32
ffffff80081dcb28 t filter_pred_LE_u32
ffffff80081dcb40 t filter_pred_LT_u32
ffffff80081dcb58 t filter_pred_GE_u32
ffffff80081dcb70 t filter_pred_GT_u32
ffffff80081dcb88 t filter_pred_BAND_u32
ffffff80081dcba0 t filter_pred_LE_s16
ffffff80081dcbb8 t filter_pred_LT_s16
ffffff80081dcbd0 t filter_pred_GE_s16
ffffff80081dcbe8 t filter_pred_GT_s16
ffffff80081dcc00 t filter_pred_BAND_s16
ffffff80081dcc18 t filter_pred_LE_u16
ffffff80081dcc30 t filter_pred_LT_u16
ffffff80081dcc48 t filter_pred_GE_u16
ffffff80081dcc60 t filter_pred_GT_u16
ffffff80081dcc78 t filter_pred_BAND_u16
ffffff80081dcc90 t filter_pred_LE_s8
ffffff80081dcca8 t filter_pred_LT_s8
ffffff80081dccc0 t filter_pred_GE_s8
ffffff80081dccd8 t filter_pred_GT_s8
ffffff80081dccf0 t filter_pred_BAND_s8
ffffff80081dcd08 t filter_pred_LE_u8
ffffff80081dcd20 t filter_pred_LT_u8
ffffff80081dcd38 t filter_pred_GE_u8
ffffff80081dcd50 t filter_pred_GT_u8
ffffff80081dcd68 t filter_pred_BAND_u8
ffffff80081dcd80 T trigger_data_free
ffffff80081dcdd0 T event_triggers_call
ffffff80081dceb8 T event_triggers_post_call
ffffff80081dcf30 t event_trigger_write
ffffff80081dd0d0 t event_trigger_open
ffffff80081dd1a0 t event_trigger_release
ffffff80081dd1f0 T event_trigger_init
ffffff80081dd208 T trace_event_trigger_enable_disable
ffffff80081dd290 T clear_event_triggers
ffffff80081dd390 T update_cond_flag
ffffff80081dd3f0 T set_trigger_filter
ffffff80081dd518 T find_named_trigger
ffffff80081dd588 T is_named_trigger
ffffff80081dd5c8 T save_named_trigger
ffffff80081dd648 T del_named_trigger
ffffff80081dd698 T pause_named_trigger
ffffff80081dd708 T unpause_named_trigger
ffffff80081dd770 T set_named_trigger_data
ffffff80081dd778 T get_named_trigger_data
ffffff80081dd780 T event_enable_trigger_print
ffffff80081dd888 T event_enable_trigger_free
ffffff80081dd928 T event_enable_trigger_func
ffffff80081ddcc8 t event_trigger_free
ffffff80081ddd38 T event_enable_register_trigger
ffffff80081ddf20 T event_enable_unregister_trigger
ffffff80081de058 t trigger_start
ffffff80081de0c0 t trigger_stop
ffffff80081de0e0 t trigger_next
ffffff80081de130 t trigger_show
ffffff80081de1f8 t event_trigger_callback
ffffff80081de460 t register_trigger
ffffff80081de628 t unregister_trigger
ffffff80081de748 t onoff_get_trigger_ops
ffffff80081de7a8 t traceon_count_trigger
ffffff80081de7e8 t traceon_trigger_print
ffffff80081de880 t traceon_trigger
ffffff80081de8a8 t traceoff_count_trigger
ffffff80081de8e8 t traceoff_trigger_print
ffffff80081de980 t traceoff_trigger
ffffff80081de9a0 t stacktrace_get_trigger_ops
ffffff80081de9c0 t stacktrace_count_trigger
ffffff80081de9f8 t stacktrace_trigger_print
ffffff80081dea90 t stacktrace_trigger
ffffff80081deaa8 t event_enable_get_trigger_ops
ffffff80081deb08 t event_enable_count_trigger
ffffff80081deb70 t event_enable_trigger
ffffff80081deba8 t update_symbol_cache
ffffff80081debb0 t free_symbol_cache
ffffff80081debb8 t alloc_symbol_cache
ffffff80081debc0 T trace_call_bpf
ffffff80081ded30 T bpf_probe_read
ffffff80081ded88 T bpf_probe_write_user
ffffff80081dee10 T bpf_trace_printk
ffffff80081df0e8 T bpf_get_trace_printk_proto
ffffff80081df108 T bpf_perf_event_read
ffffff80081df1c8 T bpf_perf_event_read_value
ffffff80081df288 T bpf_perf_event_output
ffffff80081df498 T bpf_event_output
ffffff80081df5d8 T bpf_get_current_task
ffffff80081df5e0 T bpf_current_task_under_cgroup
ffffff80081df660 T bpf_probe_read_str
ffffff80081df6b8 t kprobe_prog_func_proto
ffffff80081df728 t kprobe_prog_is_valid_access
ffffff80081df768 T bpf_perf_event_output_tp
ffffff80081df978 T bpf_get_stackid_tp
ffffff80081df998 T bpf_get_stack_tp
ffffff80081df9b8 t tp_prog_func_proto
ffffff80081dfa08 t tp_prog_is_valid_access
ffffff80081dfa40 T bpf_perf_prog_read_value
ffffff80081dfab0 T bpf_perf_event_output_raw_tp
ffffff80081dfd38 T bpf_get_stackid_raw_tp
ffffff80081dfdf8 T bpf_get_stack_raw_tp
ffffff80081dfeb8 t raw_tp_prog_func_proto
ffffff80081dff08 t raw_tp_prog_is_valid_access
ffffff80081dff38 t pe_prog_func_proto
ffffff80081dffa8 t pe_prog_is_valid_access
ffffff80081e0050 t pe_prog_convert_ctx_access
ffffff80081e0110 T perf_event_attach_bpf_prog
ffffff80081e0200 T perf_event_detach_bpf_prog
ffffff80081e02c0 T perf_event_query_prog_array
ffffff80081e0528 T bpf_find_raw_tracepoint
ffffff80081e0598 T bpf_trace_run1
ffffff80081e0630 T bpf_trace_run2
ffffff80081e06c8 T bpf_trace_run3
ffffff80081e0760 T bpf_trace_run4
ffffff80081e07f8 T bpf_trace_run5
ffffff80081e0898 T bpf_trace_run6
ffffff80081e0938 T bpf_trace_run7
ffffff80081e09d8 T bpf_trace_run8
ffffff80081e0a80 T bpf_trace_run9
ffffff80081e0b28 T bpf_trace_run10
ffffff80081e0bd8 T bpf_trace_run11
ffffff80081e0c88 T bpf_trace_run12
ffffff80081e0d40 T bpf_probe_register
ffffff80081e0d80 T bpf_probe_unregister
ffffff80081e0da8 T bpf_get_perf_event_info
ffffff80081e0e48 t tracing_func_proto
ffffff80081e0fe0 t get_bpf_raw_tp_regs
ffffff80081e10e0 t trace_event_raw_event_cpu
ffffff80081e1198 t perf_trace_cpu
ffffff80081e1268 t trace_event_raw_event_powernv_throttle
ffffff80081e1370 t perf_trace_powernv_throttle
ffffff80081e14a0 t trace_event_raw_event_pstate_sample
ffffff80081e15a0 t perf_trace_pstate_sample
ffffff80081e16b0 t trace_event_raw_event_cpu_frequency_limits
ffffff80081e1778 t perf_trace_cpu_frequency_limits
ffffff80081e1850 t trace_event_raw_event_find_freq
ffffff80081e1950 t perf_trace_find_freq
ffffff80081e1a60 t trace_event_raw_event_cpu_frequency_select
ffffff80081e1b40 t perf_trace_cpu_frequency_select
ffffff80081e1c30 t trace_event_raw_event_cpu_frequency_switch_start
ffffff80081e1cf8 t perf_trace_cpu_frequency_switch_start
ffffff80081e1dd0 t trace_event_raw_event_cpu_frequency_switch_end
ffffff80081e1e88 t perf_trace_cpu_frequency_switch_end
ffffff80081e1f50 t trace_event_raw_event_device_pm_callback_start
ffffff80081e21a8 t perf_trace_device_pm_callback_start
ffffff80081e2438 t trace_event_raw_event_device_pm_callback_end
ffffff80081e25c8 t perf_trace_device_pm_callback_end
ffffff80081e2780 t trace_event_raw_event_suspend_resume
ffffff80081e2850 t perf_trace_suspend_resume
ffffff80081e2930 t trace_event_raw_event_wakeup_source
ffffff80081e2a38 t perf_trace_wakeup_source
ffffff80081e2b60 t trace_event_raw_event_clock
ffffff80081e2c70 t perf_trace_clock
ffffff80081e2da8 t trace_event_raw_event_power_domain
ffffff80081e2eb8 t perf_trace_power_domain
ffffff80081e2ff0 t trace_event_raw_event_pm_qos_request
ffffff80081e30a8 t perf_trace_pm_qos_request
ffffff80081e3178 t trace_event_raw_event_pm_qos_update_request_timeout
ffffff80081e3240 t perf_trace_pm_qos_update_request_timeout
ffffff80081e3318 t trace_event_raw_event_pm_qos_update
ffffff80081e33e0 t perf_trace_pm_qos_update
ffffff80081e34b8 t trace_event_raw_event_dev_pm_qos_request
ffffff80081e35c0 t perf_trace_dev_pm_qos_request
ffffff80081e36f0 t trace_event_raw_event_sugov_util_update
ffffff80081e37e8 t perf_trace_sugov_util_update
ffffff80081e38f0 t trace_event_raw_event_sugov_next_freq
ffffff80081e39d0 t perf_trace_sugov_next_freq
ffffff80081e3ac0 t trace_event_raw_event_bw_hwmon_meas
ffffff80081e3bd8 t perf_trace_bw_hwmon_meas
ffffff80081e3d10 t trace_event_raw_event_bw_hwmon_update
ffffff80081e3e28 t perf_trace_bw_hwmon_update
ffffff80081e3f68 t trace_event_raw_event_cache_hwmon_meas
ffffff80081e4098 t perf_trace_cache_hwmon_meas
ffffff80081e41e8 t trace_event_raw_event_cache_hwmon_update
ffffff80081e42e8 t perf_trace_cache_hwmon_update
ffffff80081e4408 t trace_event_raw_event_memlat_dev_meas
ffffff80081e4548 t perf_trace_memlat_dev_meas
ffffff80081e46b0 t trace_event_raw_event_memlat_dev_update
ffffff80081e47d8 t perf_trace_memlat_dev_update
ffffff80081e4920 t __bpf_trace_cpu
ffffff80081e49b0 t __bpf_trace_powernv_throttle
ffffff80081e4a60 t __bpf_trace_pstate_sample
ffffff80081e4be8 t __bpf_trace_cpu_frequency_limits
ffffff80081e4c50 t __bpf_trace_find_freq
ffffff80081e4dc0 t __bpf_trace_cpu_frequency_select
ffffff80081e4eb8 t __bpf_trace_cpu_frequency_switch_start
ffffff80081e4f68 t __bpf_trace_cpu_frequency_switch_end
ffffff80081e4fd0 t __bpf_trace_device_pm_callback_start
ffffff80081e5080 t __bpf_trace_device_pm_callback_end
ffffff80081e5110 t __bpf_trace_suspend_resume
ffffff80081e51c0 t __bpf_trace_wakeup_source
ffffff80081e5250 t __bpf_trace_clock
ffffff80081e5300 t __bpf_trace_power_domain
ffffff80081e53b0 t __bpf_trace_pm_qos_request
ffffff80081e5440 t __bpf_trace_pm_qos_update_request_timeout
ffffff80081e54f0 t __bpf_trace_pm_qos_update
ffffff80081e55a0 t __bpf_trace_dev_pm_qos_request
ffffff80081e5650 t __bpf_trace_sugov_util_update
ffffff80081e57c0 t __bpf_trace_sugov_next_freq
ffffff80081e58b8 t __bpf_trace_bw_hwmon_meas
ffffff80081e5990 t __bpf_trace_bw_hwmon_update
ffffff80081e5a88 t __bpf_trace_cache_hwmon_meas
ffffff80081e5ba8 t __bpf_trace_cache_hwmon_update
ffffff80081e5c38 t __bpf_trace_memlat_dev_meas
ffffff80081e5da8 t __bpf_trace_memlat_dev_update
ffffff80081e5ec8 t trace_raw_output_cpu
ffffff80081e5f20 t trace_raw_output_powernv_throttle
ffffff80081e5f80 t trace_raw_output_pstate_sample
ffffff80081e5ff8 t trace_raw_output_cpu_frequency_limits
ffffff80081e6050 t trace_raw_output_find_freq
ffffff80081e60c8 t trace_raw_output_cpu_frequency_select
ffffff80081e6128 t trace_raw_output_cpu_frequency_switch_start
ffffff80081e6180 t trace_raw_output_cpu_frequency_switch_end
ffffff80081e61d8 t trace_raw_output_device_pm_callback_start
ffffff80081e6280 t trace_raw_output_device_pm_callback_end
ffffff80081e62e8 t trace_raw_output_suspend_resume
ffffff80081e6360 t trace_raw_output_wakeup_source
ffffff80081e63c0 t trace_raw_output_clock
ffffff80081e6420 t trace_raw_output_power_domain
ffffff80081e6480 t trace_raw_output_pm_qos_request
ffffff80081e64f8 t trace_raw_output_pm_qos_update_request_timeout
ffffff80081e6570 t trace_raw_output_pm_qos_update
ffffff80081e65e8 t trace_raw_output_pm_qos_update_flags
ffffff80081e6678 t trace_raw_output_dev_pm_qos_request
ffffff80081e66f8 t trace_raw_output_sugov_util_update
ffffff80081e6770 t trace_raw_output_sugov_next_freq
ffffff80081e67d0 t trace_raw_output_bw_hwmon_meas
ffffff80081e6830 t trace_raw_output_bw_hwmon_update
ffffff80081e6890 t trace_raw_output_cache_hwmon_meas
ffffff80081e6900 t trace_raw_output_cache_hwmon_update
ffffff80081e6960 t trace_raw_output_memlat_dev_meas
ffffff80081e69e0 t trace_raw_output_memlat_dev_update
ffffff80081e6a48 t trace_event_raw_event_rpm_internal
ffffff80081e6ba8 t perf_trace_rpm_internal
ffffff80081e6d30 t trace_event_raw_event_rpm_return_int
ffffff80081e6e58 t perf_trace_rpm_return_int
ffffff80081e6fb0 t __bpf_trace_rpm_internal
ffffff80081e7040 t __bpf_trace_rpm_return_int
ffffff80081e70f0 t trace_raw_output_rpm_internal
ffffff80081e7168 t trace_raw_output_rpm_return_int
ffffff80081e71c8 t update_symbol_cache
ffffff80081e71d0 t free_symbol_cache
ffffff80081e71d8 t alloc_symbol_cache
ffffff80081e71e0 T print_type_u8
ffffff80081e7238 T print_type_u16
ffffff80081e7290 T print_type_u32
ffffff80081e72e8 T print_type_u64
ffffff80081e7340 T print_type_s8
ffffff80081e7398 T print_type_s16
ffffff80081e73f0 T print_type_s32
ffffff80081e7448 T print_type_s64
ffffff80081e74a0 T print_type_x8
ffffff80081e74f8 T print_type_x16
ffffff80081e7550 T print_type_x32
ffffff80081e75a8 T print_type_x64
ffffff80081e7600 T print_type_string
ffffff80081e7680 T fetch_reg_u8
ffffff80081e7710 T fetch_reg_u16
ffffff80081e77a0 T fetch_reg_u32
ffffff80081e7830 T fetch_reg_u64
ffffff80081e78c0 T fetch_retval_u8
ffffff80081e78d0 T fetch_retval_u16
ffffff80081e78e0 T fetch_retval_u32
ffffff80081e78f0 T fetch_retval_u64
ffffff80081e7900 T fetch_deref_u8
ffffff80081e7990 T fetch_deref_u16
ffffff80081e7a20 T fetch_deref_u32
ffffff80081e7ab0 T fetch_deref_u64
ffffff80081e7b40 T fetch_deref_string
ffffff80081e7bd0 T fetch_deref_string_size
ffffff80081e7c68 T fetch_bitfield_u8
ffffff80081e7ce8 T fetch_bitfield_u16
ffffff80081e7d68 T fetch_bitfield_u32
ffffff80081e7de8 T fetch_bitfield_u64
ffffff80081e7e68 T fetch_comm_string
ffffff80081e7ea8 T fetch_comm_string_size
ffffff80081e7ed8 T traceprobe_split_symbol_offset
ffffff80081e7f30 T traceprobe_parse_probe_arg
ffffff80081e8290 t find_fetch_type
ffffff80081e83b0 t parse_probe_arg
ffffff80081e8770 T traceprobe_conflict_field_name
ffffff80081e8878 T traceprobe_update_arg
ffffff80081e8880 T traceprobe_free_probe_arg
ffffff80081e8a20 t free_deref_fetch_param
ffffff80081e8ad0 T set_print_fmt
ffffff80081e8b48 t __set_print_fmt
ffffff80081e8da0 t fetch_kernel_stack_address
ffffff80081e8db0 t fetch_user_stack_address
ffffff80081e8dd8 t update_symbol_cache
ffffff80081e8de0 t free_symbol_cache
ffffff80081e8de8 t alloc_symbol_cache
ffffff80081e8df0 T bpf_get_uprobe_info
ffffff80081e8f10 T create_local_trace_uprobe
ffffff80081e9080 t alloc_trace_uprobe
ffffff80081e9220 t free_trace_uprobe
ffffff80081e9298 T destroy_local_trace_uprobe
ffffff80081e92d0 t uprobe_dispatcher
ffffff80081e95c0 t uretprobe_dispatcher
ffffff80081e9828 t __uprobe_trace_func
ffffff80081e9ad8 t uprobe_perf_filter
ffffff80081e9b58 t __uprobe_perf_func
ffffff80081e9d40 t uprobe_event_define_fields
ffffff80081e9e60 t trace_uprobe_register
ffffff80081ea138 t print_uprobe_event
ffffff80081ea240 t probe_event_enable
ffffff80081ea598 t uprobe_perf_close
ffffff80081ea690 t uprobe_buffer_disable
ffffff80081ea760 t probes_write
ffffff80081ea780 t probes_open
ffffff80081ea870 t create_trace_uprobe
ffffff80081eb008 t fetch_memory_string
ffffff80081eb080 t fetch_file_offset_string
ffffff80081eb118 t fetch_memory_string_size
ffffff80081eb150 t fetch_file_offset_string_size
ffffff80081eb1a0 t fetch_stack_u8
ffffff80081eb1c8 t fetch_memory_u8
ffffff80081eb2a8 t fetch_file_offset_u8
ffffff80081eb398 t fetch_stack_u16
ffffff80081eb3c0 t fetch_memory_u16
ffffff80081eb4a0 t fetch_file_offset_u16
ffffff80081eb4d0 t fetch_stack_u32
ffffff80081eb4f8 t fetch_memory_u32
ffffff80081eb5d8 t fetch_file_offset_u32
ffffff80081eb608 t fetch_stack_u64
ffffff80081eb630 t fetch_memory_u64
ffffff80081eb710 t fetch_file_offset_u64
ffffff80081eb740 t get_user_stack_nth
ffffff80081eb828 t probes_seq_start
ffffff80081eb860 t probes_seq_stop
ffffff80081eb880 t probes_seq_next
ffffff80081eb8a0 t probes_seq_show
ffffff80081eb978 t profile_open
ffffff80081eb998 t probes_profile_seq_show
ffffff80081eb9e8 T check_and_create_debugfs
ffffff80081eb9f0 T create_ctx_debugfs
ffffff80081eb9f8 T ipc_log_write
ffffff80081ebc08 T msg_encode_start
ffffff80081ebc48 T msg_encode_end
ffffff80081ebc98 T tsv_timestamp_write
ffffff80081ebd80 T tsv_qtimer_write
ffffff80081ebee8 T tsv_pointer_write
ffffff80081ebfc8 T tsv_int32_write
ffffff80081ec0a8 T tsv_byte_array_write
ffffff80081ec198 T ipc_log_string
ffffff80081ec320 T ipc_log_extract
ffffff80081ec520 T tsv_timestamp_read
ffffff80081ec6c0 T tsv_qtimer_read
ffffff80081ec830 T tsv_pointer_read
ffffff80081ec998 T tsv_int32_read
ffffff80081ecb10 T tsv_byte_array_read
ffffff80081ecc78 T add_deserialization_func
ffffff80081ecd58 T ipc_log_context_create
ffffff80081ed058 T ipc_log_context_free
ffffff80081ed130 T ipc_log_context_destroy
ffffff80081ed288 t ipc_log_drop
ffffff80081ed448 t ipc_log_read
ffffff80081ed538 T irq_work_queue
ffffff80081ed638 T irq_work_queue_on
ffffff80081ed7c0 T irq_work_needs_cpu
ffffff80081ed840 T irq_work_run
ffffff80081ed998 T irq_work_tick
ffffff80081edb08 T irq_work_sync
ffffff80081edb20 T cpu_pm_register_notifier
ffffff80081edb40 T cpu_pm_unregister_notifier
ffffff80081edb60 T cpu_pm_enter
ffffff80081edc18 T cpu_pm_exit
ffffff80081edc70 T cpu_cluster_pm_enter
ffffff80081edd28 T cpu_cluster_pm_exit
ffffff80081edd80 t cpu_pm_init
ffffff80081edda0 t cpu_pm_suspend
ffffff80081eddd0 t cpu_pm_resume
ffffff80081ede40 T bpf_internal_load_pointer_neg_helper
ffffff80081edec0 T bpf_prog_alloc
ffffff80081edf98 T bpf_prog_realloc
ffffff80081ee078 T __bpf_prog_free
ffffff80081ee0a8 T bpf_prog_calc_tag
ffffff80081ee290 T bpf_patch_insn_single
ffffff80081ee398 t bpf_adj_branches
ffffff80081ee5b0 T bpf_prog_kallsyms_del_subprogs
ffffff80081ee600 T bpf_prog_kallsyms_del
ffffff80081ee6d0 T bpf_prog_kallsyms_del_all
ffffff80081ee728 T bpf_prog_kallsyms_add
ffffff80081ee918 T __bpf_address_lookup
ffffff80081eeac0 T is_bpf_text_address
ffffff80081eebc0 T bpf_get_kallsym
ffffff80081eece8 W bpf_jit_alloc_exec_limit
ffffff80081eecf0 T bpf_jit_binary_alloc
ffffff80081eee00 T bpf_jit_binary_free
ffffff80081eee38 W bpf_jit_free
ffffff80081eeef8 T bpf_jit_prog_release_other
ffffff80081eef30 T bpf_jit_blind_constants
ffffff80081ef2f8 T __bpf_call_base
ffffff80081ef300 T bpf_opcode_in_insntable
ffffff80081ef318 T bpf_prog_array_compatible
ffffff80081ef370 T bpf_prog_select_runtime
ffffff80081ef488 T bpf_prog_array_alloc
ffffff80081ef4c0 T bpf_prog_array_free
ffffff80081ef4f0 T bpf_prog_array_length
ffffff80081ef550 T bpf_prog_array_copy_to_user
ffffff80081ef6a0 T bpf_prog_array_delete_safe
ffffff80081ef6d0 T bpf_prog_array_copy
ffffff80081ef828 T bpf_prog_array_copy_info
ffffff80081ef920 T bpf_prog_free
ffffff80081ef960 t bpf_prog_free_deferred
ffffff80081efa08 T bpf_user_rnd_init_once
ffffff80081efa90 T bpf_user_rnd_u32
ffffff80081efb08 W bpf_jit_compile
ffffff80081efb20 t trace_event_raw_event_xdp_exception
ffffff80081efbf8 t perf_trace_xdp_exception
ffffff80081efce0 t trace_event_raw_event_xdp_redirect_template
ffffff80081efde8 t perf_trace_xdp_redirect_template
ffffff80081eff08 t trace_event_raw_event_xdp_cpumap_kthread
ffffff80081efff0 t perf_trace_xdp_cpumap_kthread
ffffff80081f00f0 t trace_event_raw_event_xdp_cpumap_enqueue
ffffff80081f01d8 t perf_trace_xdp_cpumap_enqueue
ffffff80081f02d8 t trace_event_raw_event_xdp_devmap_xmit
ffffff80081f03e0 t perf_trace_xdp_devmap_xmit
ffffff80081f04f8 t __bpf_trace_xdp_exception
ffffff80081f05a8 t __bpf_trace_xdp_redirect_template
ffffff80081f06c8 t __bpf_trace_xdp_cpumap_kthread
ffffff80081f07a0 t __bpf_trace_xdp_cpumap_enqueue
ffffff80081f0878 t __bpf_trace_xdp_devmap_xmit
ffffff80081f09b8 t __bpf_prog_ret0_warn
ffffff80081f09c8 t __bpf_prog_ret1
ffffff80081f09d0 t trace_raw_output_xdp_exception
ffffff80081f0a48 t trace_raw_output_xdp_redirect_template
ffffff80081f0ac8 t trace_raw_output_xdp_redirect_map
ffffff80081f0b80 t trace_raw_output_xdp_redirect_map_err
ffffff80081f0c38 t trace_raw_output_xdp_cpumap_kthread
ffffff80081f0cc8 t trace_raw_output_xdp_cpumap_enqueue
ffffff80081f0d58 t trace_raw_output_xdp_devmap_xmit
ffffff80081f0df8 T bpf_check_uarg_tail_zero
ffffff80081f0fa0 T map_check_no_btf
ffffff80081f0fa8 T bpf_map_area_alloc
ffffff80081f1008 T bpf_map_area_free
ffffff80081f1020 T bpf_map_init_from_attr
ffffff80081f1068 T bpf_map_precharge_memlock
ffffff80081f10c0 T bpf_map_charge_memlock
ffffff80081f1128 T bpf_map_uncharge_memlock
ffffff80081f1160 T bpf_map_free_id
ffffff80081f11e0 T bpf_map_put
ffffff80081f1290 T bpf_map_put_with_uref
ffffff80081f12e0 t bpf_dummy_read
ffffff80081f12e8 t bpf_dummy_write
ffffff80081f12f0 t bpf_map_release
ffffff80081f1358 t bpf_map_show_fdinfo
ffffff80081f1400 T bpf_map_new_fd
ffffff80081f1450 T bpf_get_file_flag
ffffff80081f1480 T __bpf_map_get
ffffff80081f14d0 T bpf_map_inc
ffffff80081f1530 T bpf_map_get_with_uref
ffffff80081f15f0 T __bpf_prog_charge
ffffff80081f1648 T __bpf_prog_uncharge
ffffff80081f1670 T bpf_prog_free_id
ffffff80081f16f0 T bpf_prog_put
ffffff80081f1780 t bpf_prog_release
ffffff80081f17a0 t bpf_prog_show_fdinfo
ffffff80081f1838 T bpf_prog_new_fd
ffffff80081f1880 T bpf_prog_add
ffffff80081f18c8 T bpf_prog_sub
ffffff80081f1910 T bpf_prog_inc
ffffff80081f1950 T bpf_prog_inc_not_zero
ffffff80081f1a10 T bpf_prog_get_ok
ffffff80081f1a50 T bpf_prog_get
ffffff80081f1af0 T bpf_prog_get_type_dev
ffffff80081f1bc8 T __arm64_sys_bpf
ffffff80081f1be8 t __se_sys_bpf
ffffff80081f48f8 t bpf_map_free_deferred
ffffff80081f4950 t __bpf_prog_put_rcu
ffffff80081f49f0 t bpf_obj_get_next_id
ffffff80081f4be0 t bpf_raw_tracepoint_release
ffffff80081f4c20 t bpf_task_fd_query_copy
ffffff80081f5528 T bpf_verifier_vlog
ffffff80081f5698 T bpf_verifier_log_write
ffffff80081f5760 T bpf_check
ffffff80081f7620 t do_check
ffffff80081fc020 t verbose
ffffff80081fc0e8 t push_insn
ffffff80081fc248 t cmp_subprogs
ffffff80081fc258 t init_func_state
ffffff80081fc510 t print_verifier_state
ffffff80081fc918 t check_mem_access
ffffff80081fd990 t mark_reg_known_zero
ffffff80081fda60 t __mark_reg_unknown
ffffff80081fdab8 t __mark_reg_known_zero
ffffff80081fdaf8 t copy_verifier_state
ffffff80081fdc78 t regsafe
ffffff80081fde90 t mark_reg_read
ffffff80081fe088 t realloc_func_state
ffffff80081fe198 t mark_reg_unknown
ffffff80081fe268 t adjust_ptr_min_max_vals
ffffff80081fea38 t check_reg_sane_offset
ffffff80081feb18 t sanitize_ptr_alu
ffffff80081fed28 t check_map_access
ffffff80081feea8 t push_stack
ffffff80081ff038 t check_packet_access
ffffff80081ff108 t check_func_arg
ffffff80081ff520 t check_helper_mem_access
ffffff80081ff830 t reg_set_min_max
ffffff80081ffbb0 t mark_map_regs
ffffff80081ffd58 t __reg_combine_min_max
ffffff8008200010 t mark_map_reg
ffffff8008200110 t find_good_pkt_pointers
ffffff8008200230 t bpf_patch_insn_data
ffffff8008200350 T bpf_obj_pin_user
ffffff8008200500 T bpf_obj_get_user
ffffff80082006e0 T bpf_prog_get_type_path
ffffff80082007f0 t bpf_mkprog
ffffff80082008f0 t bpf_mkmap
ffffff8008200a10 t bpf_lookup
ffffff8008200a68 t bpf_symlink
ffffff8008200b48 t bpf_mkdir
ffffff8008200c30 t bpffs_obj_open
ffffff8008200c38 t bpffs_map_open
ffffff8008200cf8 t bpffs_map_release
ffffff8008200d48 t map_seq_start
ffffff8008200d78 t map_seq_stop
ffffff8008200d80 t map_seq_next
ffffff8008200e00 t map_seq_show
ffffff8008200e70 t bpf_mount
ffffff8008200e90 t bpf_fill_super
ffffff8008200fd0 t bpf_destroy_inode
ffffff8008200ff0 t bpf_show_options
ffffff8008201028 t bpf_destroy_inode_deferred
ffffff80082010a8 T bpf_map_lookup_elem
ffffff80082010c8 T bpf_map_update_elem
ffffff80082010e8 T bpf_map_delete_elem
ffffff8008201108 T bpf_get_smp_processor_id
ffffff8008201120 T bpf_get_numa_node_id
ffffff8008201128 T bpf_ktime_get_ns
ffffff8008201140 T bpf_get_current_pid_tgid
ffffff8008201160 T bpf_get_current_uid_gid
ffffff8008201180 T bpf_get_current_comm
ffffff80082011d8 T bpf_get_current_cgroup_id
ffffff80082011f0 T bpf_get_local_storage
ffffff8008201250 T tnum_const
ffffff8008201258 T tnum_range
ffffff8008201290 T tnum_lshift
ffffff80082012a0 T tnum_rshift
ffffff80082012b0 T tnum_arshift
ffffff80082012d8 T tnum_add
ffffff80082012f8 T tnum_sub
ffffff8008201318 T tnum_and
ffffff8008201330 T tnum_or
ffffff8008201340 T tnum_xor
ffffff8008201350 T tnum_mul
ffffff80082013d0 T tnum_intersect
ffffff80082013e0 T tnum_cast
ffffff8008201400 T tnum_is_aligned
ffffff8008201420 T tnum_in
ffffff8008201440 T tnum_strn
ffffff8008201468 T tnum_sbin
ffffff80082014d8 t htab_map_alloc_check
ffffff80082015e0 t htab_map_alloc
ffffff8008201b00 t htab_map_free
ffffff8008201c58 t htab_map_get_next_key
ffffff8008201ef8 t htab_map_lookup_elem
ffffff8008201f38 t htab_map_update_elem
ffffff8008202280 t htab_map_delete_elem
ffffff8008202538 t htab_map_gen_lookup
ffffff8008202580 t htab_map_seq_show_elem
ffffff8008202628 t htab_lru_map_lookup_elem_sys
ffffff8008202668 t htab_lru_map_lookup_elem
ffffff80082026b8 t htab_lru_map_update_elem
ffffff8008202a10 t htab_lru_map_delete_elem
ffffff8008202c70 t htab_lru_map_gen_lookup
ffffff8008202cd8 T bpf_percpu_hash_copy
ffffff8008202df0 t __htab_map_lookup_elem
ffffff8008203000 T bpf_percpu_hash_update
ffffff8008203070 t __htab_lru_percpu_map_update_elem
ffffff8008203520 t __htab_percpu_map_update_elem
ffffff80082038c8 t htab_percpu_map_lookup_elem
ffffff8008203900 t htab_percpu_map_update_elem
ffffff8008203918 t htab_lru_percpu_map_lookup_elem
ffffff8008203960 t htab_lru_percpu_map_update_elem
ffffff8008203978 T bpf_fd_htab_map_lookup_elem
ffffff8008203a10 T bpf_fd_htab_map_update_elem
ffffff8008203ac8 t fd_htab_map_alloc_check
ffffff8008203be0 t htab_of_map_alloc
ffffff8008203c40 t htab_of_map_free
ffffff8008203ce0 t htab_of_map_lookup_elem
ffffff8008203d30 t htab_of_map_gen_lookup
ffffff8008203d80 t htab_lru_map_delete_node
ffffff8008203e20 t alloc_htab_elem
ffffff8008204088 t htab_elem_free_rcu
ffffff8008204130 T array_map_alloc_check
ffffff80082041a8 T bpf_percpu_array_copy
ffffff80082042b8 T bpf_percpu_array_update
ffffff80082043e8 t array_map_alloc
ffffff80082045d0 t array_map_free
ffffff8008204630 t array_map_get_next_key
ffffff8008204678 t array_map_lookup_elem
ffffff80082046b0 t array_map_update_elem
ffffff8008204758 t array_map_delete_elem
ffffff8008204760 t array_map_gen_lookup
ffffff8008204850 t array_map_seq_show_elem
ffffff80082048e8 t array_map_check_btf
ffffff8008204928 t percpu_array_map_lookup_elem
ffffff8008204960 T bpf_fd_array_map_lookup_elem
ffffff8008204a00 T bpf_fd_array_map_update_elem
ffffff8008204a90 t fd_array_map_alloc_check
ffffff8008204af8 t fd_array_map_free
ffffff8008204b50 t bpf_fd_array_map_clear
ffffff8008204bc8 t fd_array_map_lookup_elem
ffffff8008204bd0 t fd_array_map_delete_elem
ffffff8008204c40 t prog_fd_array_get_ptr
ffffff8008204c90 t prog_fd_array_put_ptr
ffffff8008204ca8 t prog_fd_array_sys_lookup_elem
ffffff8008204cb8 t perf_event_fd_array_release
ffffff8008204d58 t perf_event_fd_array_get_ptr
ffffff8008204e28 t perf_event_fd_array_put_ptr
ffffff8008204e48 t cgroup_fd_array_free
ffffff8008204ef8 t cgroup_fd_array_get_ptr
ffffff8008204f10 t cgroup_fd_array_put_ptr
ffffff8008204ff0 t array_of_map_alloc
ffffff8008205050 t array_of_map_free
ffffff8008205108 t array_of_map_lookup_elem
ffffff8008205148 t array_of_map_gen_lookup
ffffff8008205248 t __bpf_event_entry_free
ffffff8008205278 T pcpu_freelist_init
ffffff8008205318 T pcpu_freelist_destroy
ffffff8008205330 T __pcpu_freelist_push
ffffff8008205380 T pcpu_freelist_push
ffffff80082053e0 T pcpu_freelist_populate
ffffff8008205500 T __pcpu_freelist_pop
ffffff80082055c8 T pcpu_freelist_pop
ffffff8008205698 T bpf_lru_pop_free
ffffff8008205cd8 T bpf_lru_push_free
ffffff8008205f50 T bpf_lru_populate
ffffff80082060e0 T bpf_lru_init
ffffff8008206290 T bpf_lru_destroy
ffffff80082062b8 t __bpf_lru_list_rotate
ffffff8008206598 t __bpf_lru_list_shrink
ffffff8008206830 t trie_alloc
ffffff8008206950 t trie_free
ffffff80082069c8 t trie_get_next_key
ffffff8008206bc0 t trie_lookup_elem
ffffff8008206cc8 t trie_update_elem
ffffff8008206ff0 t trie_delete_elem
ffffff8008207218 t trie_check_btf
ffffff8008207238 T bpf_map_meta_alloc
ffffff8008207380 T bpf_map_meta_free
ffffff8008207398 T bpf_map_meta_equal
ffffff80082073f8 T bpf_map_fd_get_ptr
ffffff80082074c8 T bpf_map_fd_put_ptr
ffffff80082074e0 T bpf_map_fd_sys_lookup_elem
ffffff80082074e8 t cgroup_storage_map_alloc
ffffff8008207598 t cgroup_storage_map_free
ffffff8008207600 t cgroup_storage_get_next_key
ffffff80082076d8 t cgroup_storage_lookup_elem
ffffff8008207780 t cgroup_storage_update_elem
ffffff80082078a0 t cgroup_storage_delete_elem
ffffff80082078a8 T bpf_cgroup_storage_assign
ffffff8008207928 T bpf_cgroup_storage_release
ffffff80082079a0 T bpf_cgroup_storage_alloc
ffffff8008207a78 T bpf_cgroup_storage_free
ffffff8008207ad0 T bpf_cgroup_storage_link
ffffff8008207be0 T bpf_cgroup_storage_unlink
ffffff8008207c58 T func_id_name
ffffff8008207c80 T print_bpf_insn
ffffff8008208218 T btf_put
ffffff8008208290 t btf_free_rcu
ffffff80082082d8 T btf_type_id_size
ffffff80082083e8 T btf_type_seq_show
ffffff8008208440 t btf_release
ffffff80082084b8 T btf_new_fd
ffffff80082091a0 T btf_get_by_fd
ffffff8008209220 T btf_get_info_by_fd
ffffff8008209570 T btf_get_fd_by_id
ffffff8008209650 T btf_id
ffffff8008209658 t btf_int_check_meta
ffffff8008209760 t btf_df_resolve
ffffff8008209788 t btf_int_check_member
ffffff8008209820 t btf_int_log
ffffff8008209880 t btf_int_seq_show
ffffff8008209a18 t __btf_verifier_log_type
ffffff8008209bc8 t __btf_verifier_log
ffffff8008209c68 t btf_verifier_log_member
ffffff8008209dd0 t btf_verifier_log
ffffff8008209e98 t btf_ref_type_check_meta
ffffff8008209fa0 t btf_ptr_resolve
ffffff800820a348 t btf_ptr_check_member
ffffff800820a3a0 t btf_ref_type_log
ffffff800820a3c0 t btf_ptr_seq_show
ffffff800820a3e8 t btf_array_check_meta
ffffff800820a4b8 t btf_array_resolve
ffffff800820a9c8 t btf_array_check_member
ffffff800820aaf8 t btf_array_log
ffffff800820ab20 t btf_array_seq_show
ffffff800820ad20 t btf_struct_check_meta
ffffff800820b078 t btf_struct_resolve
ffffff800820b368 t btf_struct_check_member
ffffff800820b3c0 t btf_struct_log
ffffff800820b3e8 t btf_struct_seq_show
ffffff800820b560 t btf_enum_check_meta
ffffff800820b778 t btf_enum_check_member
ffffff800820b7d0 t btf_enum_log
ffffff800820b7f8 t btf_enum_seq_show
ffffff800820b898 t btf_fwd_check_meta
ffffff800820b980 t btf_df_check_member
ffffff800820b9a8 t btf_df_seq_show
ffffff800820b9d0 t btf_modifier_resolve
ffffff800820bce8 t btf_modifier_check_member
ffffff800820be28 t btf_modifier_seq_show
ffffff800820be78 t btf_sec_info_cmp
ffffff800820bea0 T __dev_map_insert_ctx
ffffff800820bee0 T __dev_map_flush
ffffff800820bfb0 t bq_xmit_all
ffffff800820c168 T __dev_map_lookup_elem
ffffff800820c188 T dev_map_enqueue
ffffff800820c2c0 T dev_map_generic_redirect
ffffff800820c328 t dev_map_alloc
ffffff800820c4d0 t dev_map_free
ffffff800820c678 t dev_map_get_next_key
ffffff800820c6c0 t dev_map_lookup_elem
ffffff800820c6f8 t dev_map_update_elem
ffffff800820c830 t dev_map_delete_elem
ffffff800820c898 t __dev_map_entry_free
ffffff800820ca00 t dev_map_notification
ffffff800820cad0 T __cpu_map_lookup_elem
ffffff800820caf0 t cpu_map_alloc
ffffff800820cc58 t cpu_map_free
ffffff800820cdc0 t cpu_map_get_next_key
ffffff800820ce08 t cpu_map_lookup_elem
ffffff800820ce38 t cpu_map_update_elem
ffffff800820d080 t cpu_map_delete_elem
ffffff800820d118 T cpu_map_enqueue
ffffff800820d1e0 T __cpu_map_insert_ctx
ffffff800820d220 T __cpu_map_flush
ffffff800820d2f8 t bq_flush_to_queue
ffffff800820d4f8 t __cpu_map_entry_free
ffffff800820d5a8 t cpu_map_kthread_stop
ffffff800820d5d0 t put_cpu_map_entry
ffffff800820d6e0 t cpu_map_kthread_run
ffffff800820da00 t local_bh_enable
ffffff800820da20 T bpf_prog_offload_init
ffffff800820dc00 t bpf_offload_find_netdev
ffffff800820dd98 T bpf_prog_offload_verifier_prep
ffffff800820de98 T bpf_prog_offload_verify_insn
ffffff800820df18 T bpf_prog_offload_destroy
ffffff800820df68 t __bpf_prog_offload_destroy
ffffff800820e088 T bpf_prog_offload_compile
ffffff800820e160 t bpf_prog_warn_on_exec
ffffff800820e188 T bpf_prog_offload_info_fill
ffffff800820e328 t bpf_prog_offload_info_fill_ns
ffffff800820e3b0 T bpf_map_offload_map_alloc
ffffff800820e588 T bpf_map_offload_map_free
ffffff800820e5e0 t __bpf_map_offload_destroy
ffffff800820e6d8 T bpf_map_offload_lookup_elem
ffffff800820e750 T bpf_map_offload_update_elem
ffffff800820e7e0 T bpf_map_offload_delete_elem
ffffff800820e848 T bpf_map_offload_get_next_key
ffffff800820e8c0 T bpf_map_offload_info_fill
ffffff800820e978 t bpf_map_offload_info_fill_ns
ffffff800820e9f8 T bpf_offload_dev_match
ffffff800820ea90 T bpf_offload_prog_map_match
ffffff800820eb50 T bpf_offload_dev_netdev_register
ffffff800820ee30 T bpf_offload_dev_netdev_unregister
ffffff800820f348 T bpf_offload_dev_create
ffffff800820f3f0 T bpf_offload_dev_destroy
ffffff800820f438 T bpf_get_stackid
ffffff800820f7a0 T bpf_get_stack
ffffff800820f908 T bpf_stackmap_copy
ffffff800820f9d0 t stack_map_alloc
ffffff800820fba8 t stack_map_free
ffffff800820fbe8 t stack_map_get_next_key
ffffff800820fc60 t stack_map_lookup_elem
ffffff800820fc68 t stack_map_update_elem
ffffff800820fc70 t stack_map_delete_elem
ffffff800820fcd8 t stack_map_get_build_id_offset
ffffff8008210188 t do_up_read
ffffff80082101b0 T cgroup_bpf_put
ffffff80082102d0 T cgroup_bpf_inherit
ffffff8008210700 t compute_effective_progs
ffffff8008210810 T __cgroup_bpf_attach
ffffff8008210bd0 t update_effective_progs
ffffff8008210cc8 T __cgroup_bpf_detach
ffffff8008210e18 T __cgroup_bpf_query
ffffff80082110b0 T cgroup_bpf_prog_attach
ffffff80082111d8 T cgroup_bpf_prog_detach
ffffff8008211310 T cgroup_bpf_prog_query
ffffff8008211438 T __cgroup_bpf_run_filter_skb
ffffff8008211658 T __cgroup_bpf_run_filter_sk
ffffff8008211758 T __cgroup_bpf_run_filter_sock_addr
ffffff80082118b8 T __cgroup_bpf_run_filter_sock_ops
ffffff80082119b8 T __cgroup_bpf_check_dev_permission
ffffff8008211af8 t cgroup_dev_func_proto
ffffff8008211b98 t cgroup_dev_is_valid_access
ffffff8008211c38 T bpf_sk_reuseport_detach
ffffff8008211c78 T bpf_fd_reuseport_array_lookup_elem
ffffff8008211cf8 t reuseport_array_lookup_elem
ffffff8008211d20 T bpf_fd_reuseport_array_update_elem
ffffff8008211fb0 t reuseport_array_alloc_check
ffffff8008211fe0 t reuseport_array_alloc
ffffff8008212098 t reuseport_array_free
ffffff8008212128 t reuseport_array_get_next_key
ffffff8008212170 t reuseport_array_delete_elem
ffffff8008212210 T perf_proc_update_handler
ffffff80082122d8 T perf_cpu_time_max_percent_handler
ffffff8008212370 T perf_sample_event_took
ffffff8008212430 W perf_event_print_debug
ffffff8008212448 T perf_cgroup_switch
ffffff8008212450 T perf_pmu_disable
ffffff8008212488 T perf_pmu_enable
ffffff80082124c0 T perf_event_disable_local
ffffff80082125c8 t __perf_event_disable
ffffff80082127c0 T perf_event_disable
ffffff8008212830 t _perf_event_disable
ffffff8008212888 T perf_event_disable_inatomic
ffffff80082128b8 T perf_event_enable
ffffff8008212948 t _perf_event_enable
ffffff80082129b8 T perf_event_addr_filters_sync
ffffff8008212a28 T perf_event_refresh
ffffff8008212ae8 T perf_sched_cb_dec
ffffff8008212b98 T perf_sched_cb_inc
ffffff8008212c60 T __perf_event_task_sched_out
ffffff8008212fd0 t perf_pmu_sched_task
ffffff80082130e8 T __perf_event_task_sched_in
ffffff80082132b8 T perf_event_task_tick
ffffff8008213558 T perf_event_read_local
ffffff80082136d0 T perf_event_release_kernel
ffffff8008213ca0 T perf_event_read_value
ffffff8008213d00 t __perf_event_read_value
ffffff8008213e08 T ht_perf_read
ffffff8008213ef8 t perf_event_read
ffffff8008214210 T perf_event_task_enable
ffffff80082143b0 T perf_event_task_disable
ffffff8008214500 T perf_event_update_userpage
ffffff8008214650 T ring_buffer_get
ffffff80082146b8 T ring_buffer_put
ffffff8008214710 t rb_free_rcu
ffffff8008214728 T perf_event_wakeup
ffffff80082147b0 T perf_register_guest_info_callbacks
ffffff80082147c8 T perf_unregister_guest_info_callbacks
ffffff80082147d8 T perf_event_header__init_id
ffffff80082147f8 t __perf_event_header__init_id
ffffff8008214900 T perf_event__output_id_sample
ffffff80082149d0 T perf_output_sample
ffffff8008215170 t perf_output_read
ffffff8008215640 T perf_callchain
ffffff80082156c0 T perf_prepare_sample
ffffff8008215bb0 T perf_event_output_forward
ffffff8008215c58 T perf_event_output_backward
ffffff8008215d00 T perf_event_output
ffffff8008215da8 T perf_event_exec
ffffff8008216160 T perf_event_fork
ffffff8008216200 T perf_event_namespaces
ffffff80082163e0 T perf_event_comm
ffffff80082164b0 t perf_iterate_sb
ffffff8008216820 t perf_event_namespaces_output
ffffff8008216950 T perf_event_mmap
ffffff8008216df0 T perf_event_aux_event
ffffff8008216ea8 T perf_log_lost_samples
ffffff8008216f60 T perf_event_itrace_started
ffffff8008216f70 T perf_event_account_interrupt
ffffff8008216f88 t __perf_event_account_interrupt
ffffff8008217068 T perf_event_overflow
ffffff8008217088 t __perf_event_overflow
ffffff8008217168 T perf_swevent_set_period
ffffff80082171c0 T perf_swevent_get_recursion_context
ffffff8008217228 T perf_swevent_put_recursion_context
ffffff8008217250 T ___perf_sw_event
ffffff80082173a0 T __perf_sw_event
ffffff8008217460 T perf_trace_run_bpf_submit
ffffff8008217520 T perf_tp_event
ffffff8008217720 t perf_swevent_event
ffffff8008217870 T perf_bp_event
ffffff8008217918 t nr_addr_filters_show
ffffff8008217948 T perf_pmu_register
ffffff8008217d10 t pmu_dev_alloc
ffffff8008217e00 t perf_pmu_start_txn
ffffff8008217e50 t perf_pmu_commit_txn
ffffff8008217ea0 t perf_pmu_cancel_txn