Newer
Older
8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
8018
8019
8020
8021
8022
8023
8024
8025
8026
8027
8028
8029
8030
8031
8032
8033
8034
8035
8036
8037
8038
8039
8040
8041
8042
8043
8044
8045
8046
8047
8048
8049
8050
8051
8052
8053
8054
8055
8056
8057
8058
8059
8060
8061
8062
8063
8064
8065
8066
8067
8068
8069
8070
8071
8072
8073
8074
8075
8076
8077
8078
8079
8080
8081
8082
8083
8084
8085
8086
8087
8088
8089
8090
8091
8092
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
8195
8196
8197
8198
8199
8200
8201
8202
8203
8204
8205
8206
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
8235
8236
8237
8238
8239
8240
8241
8242
8243
8244
8245
8246
8247
8248
8249
8250
8251
8252
8253
8254
8255
8256
8257
8258
8259
8260
8261
8262
8263
8264
8265
8266
8267
8268
8269
8270
8271
8272
8273
8274
8275
8276
8277
8278
8279
8280
8281
8282
8283
8284
8285
8286
8287
8288
8289
8290
8291
8292
8293
8294
8295
8296
8297
8298
8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
8335
8336
8337
8338
8339
8340
8341
8342
8343
8344
8345
8346
8347
8348
8349
8350
8351
8352
8353
8354
8355
8356
8357
8358
8359
8360
8361
8362
8363
8364
8365
8366
8367
8368
8369
8370
8371
8372
8373
8374
8375
8376
8377
8378
8379
8380
8381
8382
8383
8384
8385
8386
8387
8388
8389
8390
8391
8392
8393
8394
8395
8396
8397
8398
8399
8400
8401
8402
8403
8404
8405
8406
8407
8408
8409
8410
8411
8412
8413
8414
8415
8416
8417
8418
8419
8420
8421
8422
8423
8424
8425
8426
8427
8428
8429
8430
8431
8432
8433
8434
8435
8436
8437
8438
8439
8440
8441
8442
8443
8444
8445
8446
8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
8457
8458
8459
8460
8461
8462
8463
8464
8465
8466
8467
8468
8469
8470
8471
8472
8473
8474
8475
8476
8477
8478
8479
8480
8481
8482
8483
8484
8485
8486
8487
8488
8489
8490
8491
8492
8493
8494
8495
8496
8497
8498
8499
8500
8501
8502
8503
8504
8505
8506
8507
8508
8509
8510
8511
8512
8513
8514
8515
8516
8517
8518
8519
8520
8521
8522
8523
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
8534
8535
8536
8537
8538
8539
8540
8541
8542
8543
8544
8545
8546
8547
8548
8549
8550
8551
8552
8553
8554
8555
8556
8557
8558
8559
8560
8561
8562
8563
8564
8565
8566
8567
8568
8569
8570
8571
8572
8573
8574
8575
8576
8577
8578
8579
8580
8581
8582
8583
8584
8585
8586
8587
8588
8589
8590
8591
8592
8593
8594
8595
8596
8597
8598
8599
8600
8601
8602
8603
8604
8605
8606
8607
8608
8609
8610
8611
8612
8613
8614
8615
8616
8617
8618
8619
8620
8621
8622
8623
8624
8625
8626
8627
8628
8629
8630
8631
8632
8633
8634
8635
8636
8637
8638
8639
8640
8641
8642
8643
8644
8645
8646
8647
8648
8649
8650
8651
8652
8653
8654
8655
8656
8657
8658
8659
8660
8661
8662
8663
8664
8665
8666
8667
8668
8669
8670
8671
8672
8673
8674
8675
8676
8677
8678
8679
8680
8681
8682
8683
8684
8685
8686
8687
8688
8689
8690
8691
8692
8693
8694
8695
8696
8697
8698
8699
8700
8701
8702
8703
8704
8705
8706
8707
8708
8709
8710
8711
8712
8713
8714
8715
8716
8717
8718
8719
8720
8721
8722
8723
8724
8725
8726
8727
8728
8729
8730
8731
8732
8733
8734
8735
8736
8737
8738
8739
8740
8741
8742
8743
8744
8745
8746
8747
8748
8749
8750
8751
8752
8753
8754
8755
8756
8757
8758
8759
8760
8761
8762
8763
8764
8765
8766
8767
8768
8769
8770
8771
8772
8773
8774
8775
8776
8777
8778
8779
8780
8781
8782
8783
8784
8785
8786
8787
8788
8789
8790
8791
8792
8793
8794
8795
8796
8797
8798
8799
8800
8801
8802
8803
8804
8805
8806
8807
8808
8809
8810
8811
8812
8813
8814
8815
8816
8817
8818
8819
8820
8821
8822
8823
8824
8825
8826
8827
8828
8829
8830
8831
8832
8833
8834
8835
8836
8837
8838
8839
8840
8841
8842
8843
8844
8845
8846
8847
8848
8849
8850
8851
8852
8853
8854
8855
8856
8857
8858
8859
8860
8861
8862
8863
8864
8865
8866
8867
8868
8869
8870
8871
8872
8873
8874
8875
8876
8877
8878
8879
8880
8881
8882
8883
8884
8885
8886
8887
8888
8889
8890
8891
8892
8893
8894
8895
8896
8897
8898
8899
8900
8901
8902
8903
8904
8905
8906
8907
8908
8909
8910
8911
8912
8913
8914
8915
8916
8917
8918
8919
8920
8921
8922
8923
8924
8925
8926
8927
8928
8929
8930
8931
8932
8933
8934
8935
8936
8937
8938
8939
8940
8941
8942
8943
8944
8945
8946
8947
8948
8949
8950
8951
8952
8953
8954
8955
8956
8957
8958
8959
8960
8961
8962
8963
8964
8965
8966
8967
8968
8969
8970
8971
8972
8973
8974
8975
8976
8977
8978
8979
8980
8981
8982
8983
8984
8985
8986
8987
8988
8989
8990
8991
8992
8993
8994
8995
8996
8997
8998
8999
9000
ffffffc008399ce8 t task_file_seq_show
ffffffc008399da0 t task_file_seq_get_next
ffffffc00839a10c t task_seq_get_next
ffffffc00839a2c8 t task_seq_start
ffffffc00839a31c t task_seq_stop
ffffffc00839a45c t task_seq_next
ffffffc00839a540 t task_seq_show
ffffffc00839a5ec t bpf_prog_seq_start
ffffffc00839a634 t bpf_prog_seq_stop
ffffffc00839a6e4 t bpf_prog_seq_next
ffffffc00839a738 t bpf_prog_seq_show
ffffffc00839a7d8 T bpf_percpu_hash_copy
ffffffc00839a9e4 t htab_map_hash
ffffffc00839ab94 T bpf_percpu_hash_update
ffffffc00839ac20 t __htab_lru_percpu_map_update_elem
ffffffc00839b0dc t __htab_percpu_map_update_elem
ffffffc00839b49c t alloc_htab_elem
ffffffc00839b7c8 t pcpu_init_value
ffffffc00839ba5c T bpf_fd_htab_map_lookup_elem
ffffffc00839bbec T bpf_fd_htab_map_update_elem
ffffffc00839bd30 t htab_map_update_elem
ffffffc00839c0f0 t free_htab_elem
ffffffc00839c1f4 t htab_elem_free_rcu
ffffffc00839c248 t htab_map_alloc_check
ffffffc00839c544 t htab_map_alloc
ffffffc00839cbec t htab_map_free
ffffffc00839cd14 t htab_map_get_next_key
ffffffc00839ce64 t htab_map_lookup_batch
ffffffc00839ce94 t htab_map_lookup_and_delete_batch
ffffffc00839cec4 t htab_map_lookup_elem
ffffffc00839cfa0 t htab_map_delete_elem
ffffffc00839d1c8 t htab_map_gen_lookup
ffffffc00839d21c t htab_map_seq_show_elem
ffffffc00839d5a0 t bpf_iter_init_hash_map
ffffffc00839d6b4 t bpf_iter_fini_hash_map
ffffffc00839d798 t bpf_hash_map_seq_start
ffffffc00839d8a4 t bpf_hash_map_seq_stop
ffffffc00839d980 t bpf_hash_map_seq_next
ffffffc00839daf4 t bpf_hash_map_seq_show
ffffffc00839dce4 t __htab_map_lookup_elem
ffffffc00839dda0 t __htab_map_lookup_and_delete_batch
ffffffc00839eecc t _copy_from_user.10300
ffffffc00839f088 t _copy_to_user.10301
ffffffc00839f20c t prealloc_destroy
ffffffc00839f2ec t htab_lru_map_delete_node
ffffffc00839f4d4 t htab_lru_map_lookup_elem_sys
ffffffc00839f5b0 t htab_lru_map_lookup_batch
ffffffc00839f5e0 t htab_lru_map_lookup_and_delete_batch
ffffffc00839f610 t htab_lru_map_lookup_elem
ffffffc00839f708 t htab_lru_map_update_elem
ffffffc00839fb48 t htab_lru_map_delete_elem
ffffffc00839fdfc t htab_lru_map_gen_lookup
ffffffc00839fe70 t htab_percpu_map_lookup_batch
ffffffc00839fea0 t htab_percpu_map_lookup_and_delete_batch
ffffffc00839fed0 t htab_percpu_map_lookup_elem
ffffffc00839ffac t htab_percpu_map_update_elem
ffffffc00839ffd4 t htab_percpu_map_seq_show_elem
ffffffc0083a046c t htab_lru_percpu_map_lookup_batch
ffffffc0083a049c t htab_lru_percpu_map_lookup_and_delete_batch
ffffffc0083a04cc t htab_lru_percpu_map_lookup_elem
ffffffc0083a05c4 t htab_lru_percpu_map_update_elem
ffffffc0083a05ec t fd_htab_map_alloc_check
ffffffc0083a0624 t htab_of_map_alloc
ffffffc0083a0698 t htab_of_map_free
ffffffc0083a0790 t htab_of_map_lookup_elem
ffffffc0083a0878 t htab_of_map_gen_lookup
ffffffc0083a08d4 T array_map_alloc_check
ffffffc0083a0988 T bpf_percpu_array_copy
ffffffc0083a0afc T bpf_percpu_array_update
ffffffc0083a0c90 T bpf_fd_array_map_lookup_elem
ffffffc0083a0db8 T bpf_fd_array_map_update_elem
ffffffc0083a0fb4 t array_map_alloc
ffffffc0083a145c t array_map_free
ffffffc0083a14f8 t array_map_get_next_key
ffffffc0083a154c t array_map_lookup_elem
ffffffc0083a1590 t array_map_update_elem
ffffffc0083a16b8 t array_map_delete_elem
ffffffc0083a16c8 t array_map_gen_lookup
ffffffc0083a17fc t array_map_seq_show_elem
ffffffc0083a1a18 t array_map_check_btf
ffffffc0083a1aa0 t array_map_direct_value_addr
ffffffc0083a1aec t array_map_direct_value_meta
ffffffc0083a1b40 t array_map_mmap
ffffffc0083a1bb4 t array_map_meta_equal
ffffffc0083a1c2c t bpf_iter_init_array_map
ffffffc0083a1d3c t bpf_iter_fini_array_map
ffffffc0083a1e20 t bpf_array_map_seq_start
ffffffc0083a1e90 t bpf_array_map_seq_stop
ffffffc0083a1f40 t bpf_array_map_seq_next
ffffffc0083a1fb0 t bpf_array_map_seq_show
ffffffc0083a2184 t percpu_array_map_lookup_elem
ffffffc0083a21c8 t percpu_array_map_seq_show_elem
ffffffc0083a24dc t fd_array_map_alloc_check
ffffffc0083a2590 t prog_array_map_alloc
ffffffc0083a2658 t prog_array_map_free
ffffffc0083a2740 t prog_array_map_clear
ffffffc0083a2820 t fd_array_map_lookup_elem
ffffffc0083a2830 t fd_array_map_delete_elem
ffffffc0083a29b4 t prog_fd_array_get_ptr
ffffffc0083a2a14 t prog_fd_array_put_ptr
ffffffc0083a2a38 t prog_fd_array_sys_lookup_elem
ffffffc0083a2a4c t prog_array_map_seq_show_elem
ffffffc0083a2c88 t prog_array_map_poke_track
ffffffc0083a2d5c t prog_array_map_poke_untrack
ffffffc0083a2dec t prog_array_map_poke_run
ffffffc0083a3068 t prog_array_map_clear_deferred
ffffffc0083a30f8 t perf_event_fd_array_release
ffffffc0083a3200 t perf_event_fd_array_map_free
ffffffc0083a32f0 t perf_event_fd_array_get_ptr
ffffffc0083a33fc t perf_event_fd_array_put_ptr
ffffffc0083a3430 t __bpf_event_entry_free
ffffffc0083a3474 t cgroup_fd_array_free
ffffffc0083a3554 t cgroup_fd_array_get_ptr
ffffffc0083a357c t cgroup_fd_array_put_ptr
ffffffc0083a35ac t percpu_ref_put_many.10341
ffffffc0083a3788 t array_of_map_alloc
ffffffc0083a37fc t array_of_map_free
ffffffc0083a38e4 t array_of_map_lookup_elem
ffffffc0083a3934 t array_of_map_gen_lookup
ffffffc0083a3a64 T pcpu_freelist_init
ffffffc0083a3b8c T pcpu_freelist_destroy
ffffffc0083a3bb4 T __pcpu_freelist_push
ffffffc0083a3e40 T pcpu_freelist_push
ffffffc0083a3ea4 T pcpu_freelist_populate
ffffffc0083a3fd8 T __pcpu_freelist_pop
ffffffc0083a44b4 T pcpu_freelist_pop
ffffffc0083a4518 T bpf_lru_pop_free
ffffffc0083a5228 t __bpf_lru_list_rotate
ffffffc0083a5518 t __bpf_lru_list_shrink
ffffffc0083a582c T bpf_lru_push_free
ffffffc0083a5e80 T bpf_lru_populate
ffffffc0083a6090 T bpf_lru_init
ffffffc0083a6330 T bpf_lru_destroy
ffffffc0083a6368 t trie_alloc
ffffffc0083a65b4 t trie_free
ffffffc0083a6644 t trie_get_next_key
ffffffc0083a681c t trie_lookup_elem
ffffffc0083a6908 t trie_update_elem
ffffffc0083a6ce8 t trie_delete_elem
ffffffc0083a7034 t trie_check_btf
ffffffc0083a7058 t longest_prefix_match
ffffffc0083a71b0 T bpf_map_meta_alloc
ffffffc0083a7390 T bpf_map_meta_free
ffffffc0083a73b4 T bpf_map_meta_equal
ffffffc0083a740c T bpf_map_fd_get_ptr
ffffffc0083a75d8 T bpf_map_fd_put_ptr
ffffffc0083a75fc T bpf_map_fd_sys_lookup_elem
ffffffc0083a760c T cgroup_storage_lookup
ffffffc0083a777c T bpf_percpu_cgroup_storage_copy
ffffffc0083a7a10 T bpf_percpu_cgroup_storage_update
ffffffc0083a7cb4 T bpf_cgroup_storage_assign
ffffffc0083a7cf8 T bpf_cgroup_storage_alloc
ffffffc0083a7f54 T bpf_cgroup_storage_free
ffffffc0083a8060 t free_percpu_cgroup_storage_rcu
ffffffc0083a809c t free_shared_cgroup_storage_rcu
ffffffc0083a80d8 T bpf_cgroup_storage_link
ffffffc0083a82b0 T bpf_cgroup_storage_unlink
ffffffc0083a83c8 t cgroup_storage_map_alloc
ffffffc0083a8550 t cgroup_storage_map_free
ffffffc0083a8704 t cgroup_storage_get_next_key
ffffffc0083a88ac t cgroup_storage_lookup_elem
ffffffc0083a8a10 t cgroup_storage_update_elem
ffffffc0083a8c5c t cgroup_storage_delete_elem
ffffffc0083a8c6c t cgroup_storage_seq_show_elem
ffffffc0083a9310 t cgroup_storage_check_btf
ffffffc0083a9508 t queue_stack_map_alloc_check
ffffffc0083a96a4 t queue_stack_map_alloc
ffffffc0083a9804 t queue_stack_map_free
ffffffc0083a9850 t queue_stack_map_get_next_key
ffffffc0083a9860 t queue_stack_map_lookup_elem
ffffffc0083a9870 t queue_stack_map_update_elem
ffffffc0083a9880 t queue_stack_map_delete_elem
ffffffc0083a9890 t queue_stack_map_push_elem
ffffffc0083a9ae0 t queue_map_pop_elem
ffffffc0083a9b08 t queue_map_peek_elem
ffffffc0083a9d1c t __queue_map_get
ffffffc0083a9f48 t stack_map_pop_elem
ffffffc0083a9f70 t stack_map_peek_elem
ffffffc0083a9f98 t __stack_map_get
ffffffc0083aa1e0 T bpf_ringbuf_reserve
ffffffc0083aa218 t ____bpf_ringbuf_reserve
ffffffc0083aa250 t __bpf_ringbuf_reserve
ffffffc0083aa534 T bpf_ringbuf_submit
ffffffc0083aa5c4 t ____bpf_ringbuf_submit
ffffffc0083aa654 T bpf_ringbuf_discard
ffffffc0083aa6e8 t ____bpf_ringbuf_discard
ffffffc0083aa77c T bpf_ringbuf_output
ffffffc0083aa864 t ____bpf_ringbuf_output
ffffffc0083aa94c T bpf_ringbuf_query
ffffffc0083aa9dc t ____bpf_ringbuf_query
ffffffc0083aaa6c t ringbuf_map_alloc
ffffffc0083aada4 t ringbuf_map_free
ffffffc0083aae68 t ringbuf_map_get_next_key
ffffffc0083aae78 t ringbuf_map_lookup_elem
ffffffc0083aae88 t ringbuf_map_update_elem
ffffffc0083aae98 t ringbuf_map_delete_elem
ffffffc0083aaea8 t ringbuf_map_mmap
ffffffc0083aaf20 t ringbuf_map_poll
ffffffc0083aafe4 t bpf_ringbuf_notify
ffffffc0083ab018 T func_id_name
ffffffc0083ab048 T print_bpf_insn
ffffffc0083abc44 T bpf_jit_alloc_exec_page
ffffffc0083abe28 T bpf_image_ksym_add
ffffffc0083abe7c T bpf_image_ksym_del
ffffffc0083abec4 T bpf_trampoline_link_prog
ffffffc0083ac060 t bpf_trampoline_update
ffffffc0083ac4d8 t __bpf_tramp_image_put_rcu_tasks
ffffffc0083ac520 t __bpf_tramp_image_release
ffffffc0083ac554 W arch_prepare_bpf_trampoline
ffffffc0083ac564 t __bpf_tramp_image_put_rcu
ffffffc0083ac630 t __bpf_tramp_image_put_deferred
ffffffc0083ac810 T bpf_trampoline_unlink_prog
ffffffc0083ac948 T bpf_trampoline_get
ffffffc0083ac9c0 t bpf_trampoline_lookup
ffffffc0083acb5c T bpf_trampoline_put
ffffffc0083accac T __bpf_prog_enter
ffffffc0083acda8 T __bpf_prog_exit
ffffffc0083acf88 T __bpf_prog_enter_sleepable
ffffffc0083acfac T __bpf_prog_exit_sleepable
ffffffc0083ad088 T __bpf_tramp_enter
ffffffc0083ad1f8 T __bpf_tramp_exit
ffffffc0083ad220 t percpu_ref_put_many.10666
ffffffc0083ad3fc T btf_type_is_void
ffffffc0083ad418 T btf_find_by_name_kind
ffffffc0083ad4c4 T btf_name_by_offset
ffffffc0083ad4f0 T btf_type_skip_modifiers
ffffffc0083ad560 T btf_type_by_id
ffffffc0083ad58c T btf_type_resolve_ptr
ffffffc0083ad678 T btf_type_resolve_func_ptr
ffffffc0083ad778 T btf_member_is_reg_int
ffffffc0083ad884 T btf_type_id_size
ffffffc0083ada2c T btf_put
ffffffc0083adc60 t btf_free_rcu
ffffffc0083add48 T btf_resolve_size
ffffffc0083ade48 T btf_find_spin_lock
ffffffc0083adf9c T btf_parse_vmlinux
ffffffc0083ae2c0 t btf_parse_hdr
ffffffc0083ae700 t btf_verifier_log
ffffffc0083ae7d0 t btf_check_all_metas
ffffffc0083aea54 t btf_datasec_check_meta
ffffffc0083aecc4 t btf_datasec_resolve
ffffffc0083aef9c t btf_df_check_member
ffffffc0083aefd0 t btf_df_check_kflag_member
ffffffc0083af004 t btf_datasec_log
ffffffc0083af038 t btf_datasec_show
ffffffc0083af34c t btf_show_start_type
ffffffc0083af53c t btf_show_name
ffffffc0083af878 t btf_show
ffffffc0083af95c t __btf_verifier_log_type
ffffffc0083afb64 t __btf_verifier_log
ffffffc0083afbe4 t btf_verifier_log_vsi
ffffffc0083afd30 t btf_var_check_meta
ffffffc0083afe90 t btf_var_resolve
ffffffc0083b01c0 t btf_var_log
ffffffc0083b01f0 t btf_var_show
ffffffc0083b02b8 t btf_func_proto_check_meta
ffffffc0083b0350 t btf_df_resolve
ffffffc0083b0388 t btf_func_proto_log
ffffffc0083b055c t btf_df_show
ffffffc0083b0594 t btf_func_check_meta
ffffffc0083b06a0 t btf_ref_type_log
ffffffc0083b06d0 t btf_ref_type_check_meta
ffffffc0083b0814 t btf_modifier_resolve
ffffffc0083b0b20 t btf_modifier_check_member
ffffffc0083b0c4c t btf_modifier_check_kflag_member
ffffffc0083b0d78 t btf_modifier_show
ffffffc0083b0e9c t btf_verifier_log_member
ffffffc0083b1088 t btf_fwd_check_meta
ffffffc0083b11a8 t btf_fwd_type_log
ffffffc0083b11f0 t btf_enum_check_meta
ffffffc0083b14ac t btf_enum_check_member
ffffffc0083b1510 t btf_enum_check_kflag_member
ffffffc0083b15a0 t btf_enum_log
ffffffc0083b15d4 t btf_enum_show
ffffffc0083b1878 t btf_struct_check_meta
ffffffc0083b1b6c t btf_struct_resolve
ffffffc0083b1fb0 t btf_struct_check_member
ffffffc0083b2014 t btf_generic_check_kflag_member
ffffffc0083b20c4 t btf_struct_log
ffffffc0083b20f8 t btf_struct_show
ffffffc0083b21c4 t __btf_struct_show
ffffffc0083b2578 t btf_int128_print
ffffffc0083b277c t btf_array_check_meta
ffffffc0083b2868 t btf_array_resolve
ffffffc0083b2d88 t btf_array_check_member
ffffffc0083b2e5c t btf_array_log
ffffffc0083b2e90 t btf_array_show
ffffffc0083b2f70 t __btf_array_show
ffffffc0083b32c8 t btf_ptr_resolve
ffffffc0083b36a4 t btf_ptr_check_member
ffffffc0083b3704 t btf_ptr_show
ffffffc0083b3934 t btf_int_check_meta
ffffffc0083b3a54 t btf_int_check_member
ffffffc0083b3af0 t btf_int_check_kflag_member
ffffffc0083b3c00 t btf_int_log
ffffffc0083b3c60 t btf_int_show
ffffffc0083b44b8 t btf_sec_info_cmp
ffffffc0083b44ec T bpf_prog_get_target_btf
ffffffc0083b451c T btf_ctx_access
ffffffc0083b49e4 t btf_get_prog_ctx_type
ffffffc0083b4bd8 T btf_struct_access
ffffffc0083b4cf8 t btf_struct_walk
ffffffc0083b5268 T btf_struct_ids_match
ffffffc0083b533c T btf_distill_func_proto
ffffffc0083b5584 T btf_check_type_match
ffffffc0083b5b08 T btf_check_func_arg_match
ffffffc0083b5e94 T btf_prepare_func_args
ffffffc0083b61f8 T btf_type_seq_show_flags
ffffffc0083b6350 t btf_seq_show
ffffffc0083b640c T btf_type_seq_show
ffffffc0083b6564 T btf_type_snprintf_show
ffffffc0083b66d0 t btf_snprintf_show
ffffffc0083b6790 T btf_new_fd
ffffffc0083b72bc t _copy_from_user.10909
ffffffc0083b7480 t btf_resolve
ffffffc0083b77d0 t btf_release
ffffffc0083b77fc t bpf_btf_show_fdinfo
ffffffc0083b7830 T btf_get_by_fd
ffffffc0083b79f8 T btf_get_info_by_fd
ffffffc0083b7c98 t _copy_to_user.10925
ffffffc0083b7e1c T btf_get_fd_by_id
ffffffc0083b8064 T btf_id
ffffffc0083b8074 T btf_id_set_contains
ffffffc0083b80cc t btf_id_cmp_func
ffffffc0083b80e4 W arch_prepare_bpf_dispatcher
ffffffc0083b80f4 T bpf_dispatcher_change_prog
ffffffc0083b8304 t bpf_dispatcher_remove_prog
ffffffc0083b8418 t bpf_dispatcher_add_prog
ffffffc0083b85a4 t dev_map_notification
ffffffc0083b8a0c t __dev_map_entry_free
ffffffc0083b8b2c T __dev_map_hash_lookup_elem
ffffffc0083b8b98 T dev_map_can_have_prog
ffffffc0083b8bd4 T __dev_flush
ffffffc0083b8c34 t bq_xmit_all
ffffffc0083b8eb0 T __dev_map_lookup_elem
ffffffc0083b8ee4 T dev_xdp_enqueue
ffffffc0083b8f08 t __xdp_enqueue
ffffffc0083b90f0 T dev_map_enqueue
ffffffc0083b9144 t dev_map_run_prog
ffffffc0083b9508 T dev_map_generic_redirect
ffffffc0083b9574 t dev_map_alloc
ffffffc0083b99a0 t dev_map_free
ffffffc0083b9e50 t dev_map_get_next_key
ffffffc0083b9ea4 t dev_map_lookup_elem
ffffffc0083b9ee4 t dev_map_update_elem
ffffffc0083ba024 t dev_map_delete_elem
ffffffc0083ba0ac t __dev_map_alloc_node
ffffffc0083ba2ac t dev_map_hash_get_next_key
ffffffc0083ba3ac t dev_map_hash_lookup_elem
ffffffc0083ba420 t dev_map_hash_update_elem
ffffffc0083ba870 t dev_map_hash_delete_elem
ffffffc0083baa90 T cpu_map_prog_allowed
ffffffc0083baac0 T __cpu_map_lookup_elem
ffffffc0083baaf4 T cpu_map_enqueue
ffffffc0083bac84 t bq_flush_to_queue
ffffffc0083bafa8 T __cpu_map_flush
ffffffc0083bb024 t cpu_map_alloc
ffffffc0083bb2b4 t cpu_map_free
ffffffc0083bb504 t cpu_map_get_next_key
ffffffc0083bb558 t cpu_map_lookup_elem
ffffffc0083bb598 t cpu_map_update_elem
ffffffc0083bb7d8 t cpu_map_delete_elem
ffffffc0083bb90c t __cpu_map_entry_free
ffffffc0083bb94c t cpu_map_kthread_stop
ffffffc0083bb984 t put_cpu_map_entry
ffffffc0083bbd10 t __cpu_map_entry_alloc
ffffffc0083bc05c t cpu_map_kthread_run
ffffffc0083bc66c t cpu_map_bpf_prog_run_xdp
ffffffc0083bcb58 t local_bh_enable.10947
ffffffc0083bcb80 T bpf_selem_alloc
ffffffc0083bccec T bpf_selem_unlink_storage_nolock
ffffffc0083bced8 T bpf_selem_link_storage_nolock
ffffffc0083bcf00 T bpf_selem_unlink_map
ffffffc0083bd01c T bpf_selem_link_map
ffffffc0083bd134 T bpf_selem_unlink
ffffffc0083bd344 T bpf_local_storage_lookup
ffffffc0083bd4d0 T bpf_local_storage_alloc
ffffffc0083bd868 T bpf_local_storage_update
ffffffc0083bdeac T bpf_local_storage_cache_idx_get
ffffffc0083be174 T bpf_local_storage_cache_idx_free
ffffffc0083be2c4 T bpf_local_storage_map_free
ffffffc0083be49c T bpf_local_storage_map_alloc_check
ffffffc0083be644 T bpf_local_storage_map_alloc
ffffffc0083be830 T bpf_local_storage_map_check_btf
ffffffc0083be870 T bpf_prog_offload_init
ffffffc0083bebb0 t rhashtable_lookup_fast
ffffffc0083bee8c T bpf_prog_offload_verifier_prep
ffffffc0083bef4c T bpf_prog_offload_verify_insn
ffffffc0083beff8 T bpf_prog_offload_finalize
ffffffc0083bf098 T bpf_prog_offload_replace_insn
ffffffc0083bf174 T bpf_prog_offload_remove_insns
ffffffc0083bf250 T bpf_prog_offload_destroy
ffffffc0083bf338 T bpf_prog_offload_compile
ffffffc0083bf3f4 t bpf_prog_warn_on_exec
ffffffc0083bf428 T bpf_prog_offload_info_fill
ffffffc0083bf5cc t bpf_prog_offload_info_fill_ns
ffffffc0083bf708 t _copy_to_user.10970
ffffffc0083bf88c T bpf_map_offload_map_alloc
ffffffc0083bfbec T bpf_map_offload_map_free
ffffffc0083bfc58 t __bpf_map_offload_destroy
ffffffc0083bfda0 T bpf_map_offload_lookup_elem
ffffffc0083bfe40 T bpf_map_offload_update_elem
ffffffc0083bff00 T bpf_map_offload_delete_elem
ffffffc0083bff98 T bpf_map_offload_get_next_key
ffffffc0083c0038 T bpf_map_offload_info_fill
ffffffc0083c0130 t bpf_map_offload_info_fill_ns
ffffffc0083c0264 T bpf_offload_dev_match
ffffffc0083c03a8 T bpf_offload_prog_map_match
ffffffc0083c0514 T bpf_offload_dev_netdev_register
ffffffc0083c066c t __rhashtable_insert_fast
ffffffc0083c0d5c t local_bh_enable.10990
ffffffc0083c0d84 T bpf_offload_dev_netdev_unregister
ffffffc0083c1154 t __rhashtable_remove_fast_one
ffffffc0083c17b4 T bpf_offload_dev_create
ffffffc0083c1878 T bpf_offload_dev_destroy
ffffffc0083c18b8 T bpf_offload_dev_priv
ffffffc0083c18c8 t netns_bpf_pernet_init
ffffffc0083c18f0 t netns_bpf_pernet_pre_exit
ffffffc0083c1a38 T netns_bpf_prog_query
ffffffc0083c1c28 t _copy_to_user.10996
ffffffc0083c1db0 T netns_bpf_prog_attach
ffffffc0083c1f4c T netns_bpf_prog_detach
ffffffc0083c209c T netns_bpf_link_create
ffffffc0083c24c8 t bpf_netns_link_release
ffffffc0083c2700 t bpf_netns_link_dealloc
ffffffc0083c2724 t bpf_netns_link_detach
ffffffc0083c274c t bpf_netns_link_update_prog
ffffffc0083c28b8 t bpf_netns_link_show_fdinfo
ffffffc0083c2944 t bpf_netns_link_fill_info
ffffffc0083c29c8 t do_up_read
ffffffc0083c29f4 T bpf_get_stackid
ffffffc0083c2a9c t ____bpf_get_stackid
ffffffc0083c2b44 t __bpf_get_stackid
ffffffc0083c2f7c t stack_map_get_build_id_offset
ffffffc0083c31a0 t stack_map_get_build_id
ffffffc0083c3588 T bpf_get_stackid_pe
ffffffc0083c36d4 t ____bpf_get_stackid_pe
ffffffc0083c3820 T bpf_get_stack
ffffffc0083c3854 t ____bpf_get_stack
ffffffc0083c3888 t __bpf_get_stack
ffffffc0083c3b70 T bpf_get_task_stack
ffffffc0083c3cb4 t ____bpf_get_task_stack
ffffffc0083c3e00 T bpf_get_stack_pe
ffffffc0083c406c t ____bpf_get_stack_pe
ffffffc0083c42dc T bpf_stackmap_copy
ffffffc0083c441c t stack_map_alloc
ffffffc0083c4854 t stack_map_free
ffffffc0083c4924 t stack_map_get_next_key
ffffffc0083c49a4 t stack_map_lookup_elem
ffffffc0083c49b4 t stack_map_update_elem
ffffffc0083c49c4 t stack_map_delete_elem
ffffffc0083c4a88 T cgroup_bpf_offline
ffffffc0083c4c24 T cgroup_bpf_inherit
ffffffc0083c4f74 t cgroup_bpf_release_fn
ffffffc0083c5040 t compute_effective_progs
ffffffc0083c51d8 t percpu_ref_put_many.11029
ffffffc0083c53b4 t cgroup_bpf_release
ffffffc0083c5590 T __cgroup_bpf_attach
ffffffc0083c5a20 t update_effective_progs
ffffffc0083c5da8 T __cgroup_bpf_detach
ffffffc0083c613c T __cgroup_bpf_query
ffffffc0083c6348 t _copy_to_user.11037
ffffffc0083c64cc T cgroup_bpf_prog_attach
ffffffc0083c65f4 T cgroup_bpf_prog_detach
ffffffc0083c66e4 T cgroup_bpf_link_attach
ffffffc0083c6860 t bpf_cgroup_link_release
ffffffc0083c68f8 t bpf_cgroup_link_dealloc
ffffffc0083c691c t bpf_cgroup_link_detach
ffffffc0083c6944 t cgroup_bpf_replace
ffffffc0083c6be8 t bpf_cgroup_link_show_fdinfo
ffffffc0083c6c68 t bpf_cgroup_link_fill_link_info
ffffffc0083c6ce0 T cgroup_bpf_prog_query
ffffffc0083c6d74 T __cgroup_bpf_run_filter_skb
ffffffc0083c786c t bpf_cgroup_storage_set
ffffffc0083c7c70 T __cgroup_bpf_run_filter_sk
ffffffc0083c815c T __cgroup_bpf_run_filter_sock_addr
ffffffc0083c86dc T __cgroup_bpf_run_filter_sock_ops
ffffffc0083c8bc8 T __cgroup_bpf_check_dev_permission
ffffffc0083c9110 T __cgroup_bpf_run_filter_sysctl
ffffffc0083c97c8 T __cgroup_bpf_run_filter_setsockopt
ffffffc0083c9e70 t _copy_from_user.11047
ffffffc0083ca034 T __cgroup_bpf_run_filter_getsockopt
ffffffc0083ca9c4 T bpf_sysctl_get_name
ffffffc0083caa80 t ____bpf_sysctl_get_name
ffffffc0083cab3c t sysctl_cpy_dir
ffffffc0083cac1c T bpf_sysctl_get_current_value
ffffffc0083cacc8 t ____bpf_sysctl_get_current_value
ffffffc0083cad74 T bpf_sysctl_get_new_value
ffffffc0083cae2c t ____bpf_sysctl_get_new_value
ffffffc0083caee4 T bpf_sysctl_set_new_value
ffffffc0083caf6c t ____bpf_sysctl_set_new_value
ffffffc0083caff4 t cgroup_dev_func_proto
ffffffc0083cb074 t cgroup_dev_is_valid_access
ffffffc0083cb11c t sysctl_func_proto
ffffffc0083cb210 t sysctl_is_valid_access
ffffffc0083cb2a4 t sysctl_convert_ctx_access
ffffffc0083cb414 t cg_sockopt_func_proto
ffffffc0083cb4e0 t cg_sockopt_is_valid_access
ffffffc0083cb5f4 t cg_sockopt_get_prologue
ffffffc0083cb604 t cg_sockopt_convert_ctx_access
ffffffc0083cb740 T bpf_sk_reuseport_detach
ffffffc0083cb80c T bpf_fd_reuseport_array_lookup_elem
ffffffc0083cb8cc T bpf_fd_reuseport_array_update_elem
ffffffc0083cbcfc t reuseport_array_alloc_check
ffffffc0083cbdcc t reuseport_array_alloc
ffffffc0083cc028 t reuseport_array_free
ffffffc0083cc1a8 t reuseport_array_get_next_key
ffffffc0083cc1fc t reuseport_array_lookup_elem
ffffffc0083cc234 t reuseport_array_delete_elem
ffffffc0083cc3d8 T bpf_struct_ops_init
ffffffc0083cc890 T bpf_struct_ops_find
ffffffc0083cc8cc T bpf_struct_ops_map_sys_lookup_elem
ffffffc0083cc960 T bpf_struct_ops_get
ffffffc0083cca3c T bpf_struct_ops_put
ffffffc0083ccae8 t bpf_struct_ops_map_alloc_check
ffffffc0083ccb30 t bpf_struct_ops_map_alloc
ffffffc0083ccedc t bpf_struct_ops_map_free
ffffffc0083cd238 t bpf_struct_ops_map_get_next_key
ffffffc0083cd264 t bpf_struct_ops_map_lookup_elem
ffffffc0083cd274 t bpf_struct_ops_map_update_elem
ffffffc0083cdbc0 t bpf_struct_ops_map_delete_elem
ffffffc0083cdd54 t bpf_struct_ops_map_seq_show_elem
ffffffc0083cdf58 t check_zero_holes
ffffffc0083ce13c T scs_alloc
ffffffc0083ce4d8 T scs_free
ffffffc0083ce7cc t scs_cleanup
ffffffc0083ce838 T scs_prepare
ffffffc0083ce884 T scs_release
ffffffc0083ce8fc T __cfi_slowpath
ffffffc0083ceb44 t handle_cfi_failure
ffffffc0083ceb64 T cfi_module_add
ffffffc0083ceb90 t add_module_to_shadow
ffffffc0083cec40 t update_shadow
ffffffc0083cee48 t remove_module_from_shadow
ffffffc0083cee9c T cfi_module_remove
ffffffc0083ceec8 T __ubsan_handle_cfi_check_fail_abort
ffffffc0083ceee0 t __cfi_check_fail
ffffffc0083ceef8 T __arm64_sys_perf_event_open
ffffffc0083cef34 t __do_sys_perf_event_open
ffffffc0083d0854 t perf_copy_attr
ffffffc0083d0ea4 t find_lively_task_by_vpid
ffffffc0083d109c t perf_event_alloc
ffffffc0083d1a9c t ktime_get_clocktai_ns
ffffffc0083d1ac4 t ktime_get_boottime_ns
ffffffc0083d1aec t ktime_get_real_ns
ffffffc0083d1b14 t find_get_context
ffffffc0083d22dc t perf_event_set_output
ffffffc0083d24f4 t __perf_event_ctx_lock_double
ffffffc0083d2688 t put_ctx
ffffffc0083d27f0 t perf_get_aux_event
ffffffc0083d2928 t __perf_remove_from_context
ffffffc0083d2a9c t event_function_call
ffffffc0083d2e90 t perf_install_in_context
ffffffc0083d34d0 t _free_event
ffffffc0083d37f0 t unaccount_event
ffffffc0083d3da4 t ring_buffer_attach
ffffffc0083d431c t perf_addr_filters_splice
ffffffc0083d45c8 t free_event_rcu
ffffffc0083d4654 t perf_uprobe_event_init
ffffffc0083d47f8 t perf_swevent_start
ffffffc0083d4808 t perf_swevent_stop
ffffffc0083d481c t perf_swevent_read
ffffffc0083d4828 t ref_ctr_offset_show
ffffffc0083d4850 t retprobe_show
ffffffc0083d4878 t perf_kprobe_event_init
ffffffc0083d4a18 t perf_tp_event_init
ffffffc0083d4a84 t tp_perf_event_destroy
ffffffc0083d4b38 t __perf_event_stop
ffffffc0083d4c5c t remote_function
ffffffc0083d4d1c t rb_free_rcu
ffffffc0083d4ddc t perf_sched_delayed
ffffffc0083d4e7c t add_event_to_ctx
ffffffc0083d51f0 t __perf_install_in_context
ffffffc0083d55b4 t ctx_sched_out
ffffffc0083d5abc t ctx_resched
ffffffc0083d5c78 t ctx_sched_in
ffffffc0083d5e3c t visit_groups_merge
ffffffc0083d6184 t merge_sched_in
ffffffc0083d695c t perf_less_group_idx
ffffffc0083d6980 t swap_ptr
ffffffc0083d699c t event_sched_in
ffffffc0083d70cc t event_sched_out
ffffffc0083d73f0 T perf_event_update_userpage
ffffffc0083d76ec t perf_log_throttle
ffffffc0083d7918 t __perf_event_header__init_id
ffffffc0083d7b88 T perf_event__output_id_sample
ffffffc0083d7f3c t event_function.11135
ffffffc0083d8254 t __perf_event_disable
ffffffc0083d8578 t __perf_event_enable
ffffffc0083d8850 t __perf_event_period
ffffffc0083d8a44 t perf_group_detach
ffffffc0083d8ec4 t list_del_event
ffffffc0083d9084 t perf_put_aux_event
ffffffc0083d92b4 t free_ctx
ffffffc0083d9304 T ring_buffer_get
ffffffc0083d9450 T ring_buffer_put
ffffffc0083d9520 t perf_lock_task_context
ffffffc0083d98cc t perf_pending_event
ffffffc0083d99f0 t local_clock
ffffffc0083d9ac8 t bpf_overflow_handler
ffffffc0083d9dcc T perf_event_output_backward
ffffffc0083d9eec T perf_event_output_forward
ffffffc0083da00c t perf_try_init_event
ffffffc0083da16c t exclusive_event_init
ffffffc0083da27c t account_event
ffffffc0083da8d8 t perf_event_ctx_lock_nested
ffffffc0083daa44 T perf_prepare_sample
ffffffc0083db054 T perf_output_sample
ffffffc0083dc590 t perf_output_read
ffffffc0083dcaf4 t perf_output_sample_ustack
ffffffc0083dceec t perf_aux_sample_output
ffffffc0083dd16c t arch_perf_out_copy_user
ffffffc0083dd2f8 t perf_virt_to_phys
ffffffc0083dd610 t perf_prepare_sample_aux
ffffffc0083dd78c T perf_event_disable_local
ffffffc0083dda90 T perf_event_wakeup
ffffffc0083ddb80 t perf_read
ffffffc0083dde58 t perf_poll
ffffffc0083ddf8c t perf_ioctl
ffffffc0083df458 t perf_compat_ioctl
ffffffc0083df4b4 t perf_mmap
ffffffc0083dfd00 t perf_release
ffffffc0083dfd2c t perf_fasync
ffffffc0083dfe08 T perf_event_release_kernel
ffffffc0083e06c8 t perf_remove_from_owner
ffffffc0083e0900 t perf_mmap_open
ffffffc0083e0a18 t perf_mmap_close
ffffffc0083e100c t perf_mmap_fault
ffffffc0083e11c0 t __perf_pmu_output_stop
ffffffc0083e1650 t __perf_event_output_stop
ffffffc0083e175c t _perf_event_disable
ffffffc0083e18e0 t _perf_event_reset
ffffffc0083e1920 t _perf_event_refresh
ffffffc0083e1ba0 t _copy_from_user.11148
ffffffc0083e1d64 t _copy_to_user.11149
ffffffc0083e1ee8 t perf_event_addr_filters_apply
ffffffc0083e229c t _perf_event_enable
ffffffc0083e24d0 t perf_event_read
ffffffc0083e2a1c t __perf_event_read
ffffffc0083e2efc t __perf_read_group_add
ffffffc0083e3204 t __perf_event_read_value
ffffffc0083e3340 T perf_trace_run_bpf_submit
ffffffc0083e341c T perf_tp_event
ffffffc0083e38c4 t perf_swevent_event
ffffffc0083e3a88 t __perf_event_overflow
ffffffc0083e403c t __perf_event_account_interrupt
ffffffc0083e41e8 t perf_adjust_period
ffffffc0083e445c T perf_pmu_unregister
ffffffc0083e45e0 t nr_addr_filters_show
ffffffc0083e4620 T perf_pmu_register
ffffffc0083e4bec t pmu_dev_alloc
ffffffc0083e4d64 t perf_mux_hrtimer_handler
ffffffc0083e5624 t perf_pmu_start_txn
ffffffc0083e56cc t perf_pmu_commit_txn
ffffffc0083e577c t perf_pmu_nop_txn
ffffffc0083e5788 t perf_pmu_nop_int
ffffffc0083e5798 t perf_pmu_nop_void
ffffffc0083e57a4 t perf_pmu_cancel_txn
ffffffc0083e5850 t perf_event_nop_int
ffffffc0083e5860 t perf_event_idx_default
ffffffc0083e5870 t pmu_dev_release
ffffffc0083e5894 t perf_event_mux_interval_ms_show
ffffffc0083e58d4 t perf_event_mux_interval_ms_store
ffffffc0083e5cb8 t perf_mux_hrtimer_restart_ipi
ffffffc0083e5f64 t type_show.11169
ffffffc0083e5fa4 T perf_pmu_migrate_context
ffffffc0083e63e0 T perf_event_read_value
ffffffc0083e644c T perf_event_read_local
ffffffc0083e66dc T perf_event_pause
ffffffc0083e68ac T perf_event_enable
ffffffc0083e6af8 T perf_event_disable
ffffffc0083e6c9c T perf_event_create_kernel_counter
ffffffc0083e7130 T perf_event_addr_filters_sync
ffffffc0083e72e0 T perf_proc_update_handler
ffffffc0083e7428 T perf_cpu_time_max_percent_handler
ffffffc0083e752c T perf_sample_event_took
ffffffc0083e7608 t perf_duration_warn
ffffffc0083e7668 W perf_event_print_debug
ffffffc0083e7674 T perf_pmu_disable
ffffffc0083e7700 T perf_pmu_enable
ffffffc0083e778c T perf_event_disable_inatomic
ffffffc0083e77cc T perf_pmu_resched
ffffffc0083e7a2c T perf_event_refresh
ffffffc0083e7a90 T perf_sched_cb_dec
ffffffc0083e7bd8 T perf_sched_cb_inc
ffffffc0083e7d28 T __perf_event_task_sched_out
ffffffc0083e8f9c t perf_event_switch_output
ffffffc0083e9328 t perf_iterate_sb
ffffffc0083e9940 T __perf_event_task_sched_in
ffffffc0083ea3a0 T perf_event_task_tick
ffffffc0083ea988 T perf_event_period
ffffffc0083eaab0 T perf_event_task_enable
ffffffc0083eafb4 T perf_event_task_disable
ffffffc0083eb33c T perf_register_guest_info_callbacks
ffffffc0083eb37c T perf_unregister_guest_info_callbacks
ffffffc0083eb45c T perf_pmu_snapshot_aux
ffffffc0083eb51c T perf_event_header__init_id
ffffffc0083eb548 T perf_callchain
ffffffc0083eb5d8 T perf_event_output
ffffffc0083eb700 T perf_event_exec
ffffffc0083eb7ec t perf_event_enable_on_exec
ffffffc0083ebc14 t perf_event_addr_filters_exec
ffffffc0083ebf38 T perf_event_fork
ffffffc0083ec00c t perf_event_task_output
ffffffc0083ec6a4 T perf_event_namespaces
ffffffc0083ec974 t perf_event_namespaces_output
ffffffc0083eccbc T perf_event_comm
ffffffc0083ecda4 t perf_event_comm_output
ffffffc0083ed170 T perf_event_mmap
ffffffc0083ed51c t __perf_addr_filters_adjust
ffffffc0083ed8c8 t perf_event_mmap_output
ffffffc0083edff8 T perf_event_aux_event
ffffffc0083ee1bc T perf_log_lost_samples
ffffffc0083ee37c T perf_event_ksymbol
ffffffc0083ee518 t perf_event_ksymbol_output
ffffffc0083ee758 T perf_event_bpf_event
ffffffc0083ee8a8 t perf_event_bpf_output
ffffffc0083eea5c T perf_event_text_poke
ffffffc0083eeb20 t perf_event_text_poke_output
ffffffc0083eef78 T perf_event_itrace_started
ffffffc0083eef90 T perf_event_account_interrupt
ffffffc0083eefb8 T perf_event_overflow
ffffffc0083eefe8 T perf_swevent_set_period
ffffffc0083ef070 T perf_swevent_get_recursion_context
ffffffc0083ef0ec T perf_swevent_put_recursion_context
ffffffc0083ef11c T ___perf_sw_event
ffffffc0083ef2f8 T __perf_sw_event
ffffffc0083ef43c T perf_bp_event
ffffffc0083ef520 T perf_event_exit_task
ffffffc0083ef670 t perf_event_exit_task_context
ffffffc0083efb28 t perf_event_exit_event
ffffffc0083f0024 t sync_child_event
ffffffc0083f0428 T perf_event_free_task
ffffffc0083f079c t perf_free_event
ffffffc0083f0a34 T perf_event_delayed_put
ffffffc0083f0a68 T perf_event_get
ffffffc0083f0ab8 T perf_get_event
ffffffc0083f0ae8 T perf_event_attrs
ffffffc0083f0b04 T perf_event_init_task
ffffffc0083f0b90 t perf_event_init_context
ffffffc0083f12d0 t inherit_task_group
ffffffc0083f1534 t inherit_event
ffffffc0083f1ac4 T perf_event_init_cpu
ffffffc0083f1c20 T perf_event_exit_cpu
ffffffc0083f1c48 t perf_event_exit_cpu_context
ffffffc0083f1d60 t __perf_event_exit_context
ffffffc0083f1eec t perf_reboot
ffffffc0083f1fcc t task_clock_event_init
ffffffc0083f2088 t task_clock_event_add
ffffffc0083f211c t task_clock_event_del
ffffffc0083f21dc t task_clock_event_start
ffffffc0083f2254 t task_clock_event_stop
ffffffc0083f2314 t task_clock_event_read
ffffffc0083f2464 t perf_swevent_hrtimer
ffffffc0083f26ec t cpu_clock_event_init
ffffffc0083f27a4 t cpu_clock_event_add
ffffffc0083f28e8 t cpu_clock_event_del
ffffffc0083f2a50 t cpu_clock_event_start
ffffffc0083f2b84 t cpu_clock_event_stop
ffffffc0083f2cec t cpu_clock_event_read
ffffffc0083f2e2c t perf_swevent_init
ffffffc0083f3130 t perf_swevent_add
ffffffc0083f3260 t perf_swevent_del
ffffffc0083f3288 t sw_perf_event_destroy
ffffffc0083f3438 T perf_event_sysfs_show
ffffffc0083f3480 T perf_get_aux
ffffffc0083f34a8 T perf_aux_output_flag
ffffffc0083f34d0 T perf_aux_output_end
ffffffc0083f36a8 T rb_free_aux
ffffffc0083f3880 T perf_aux_output_begin
ffffffc0083f3b34 T perf_output_begin_forward
ffffffc0083f3f00 t perf_output_put_handle
ffffffc0083f4280 T perf_output_begin_backward
ffffffc0083f4650 T perf_output_begin
ffffffc0083f4a44 T perf_output_copy
ffffffc0083f4b10 T perf_output_skip
ffffffc0083f4b90 T perf_output_end
ffffffc0083f4be0 T perf_aux_output_skip
ffffffc0083f4cb8 T perf_output_copy_aux
ffffffc0083f4e0c T rb_alloc_aux
ffffffc0083f5250 T rb_alloc
ffffffc0083f547c T rb_free
ffffffc0083f5538 T perf_mmap_to_page
ffffffc0083f55d4 T get_callchain_buffers
ffffffc0083f5870 T put_callchain_buffers
ffffffc0083f58d0 t release_callchain_buffers_rcu
ffffffc0083f59c4 T get_callchain_entry
ffffffc0083f5ac0 T put_callchain_entry
ffffffc0083f5af0 T get_perf_callchain
ffffffc0083f5dfc T perf_event_max_stack_handler
ffffffc0083f5f10 W hw_breakpoint_weight
ffffffc0083f5f20 W arch_reserve_bp_slot
ffffffc0083f5f30 W arch_release_bp_slot
ffffffc0083f5f3c W arch_unregister_hw_breakpoint
ffffffc0083f5f48 T reserve_bp_slot
ffffffc0083f5fa0 t __reserve_bp_slot
ffffffc0083f627c t toggle_bp_slot
ffffffc0083f6594 T release_bp_slot
ffffffc0083f6618 T dbg_reserve_bp_slot
ffffffc0083f6660 T dbg_release_bp_slot
ffffffc0083f66dc T register_perf_hw_breakpoint
ffffffc0083f6994 T register_user_hw_breakpoint
ffffffc0083f69cc T modify_user_hw_breakpoint_check
ffffffc0083f6d48 T modify_user_hw_breakpoint
ffffffc0083f6de0 T unregister_hw_breakpoint
ffffffc0083f6e0c T register_wide_hw_breakpoint
ffffffc0083f7030 T unregister_wide_hw_breakpoint
ffffffc0083f713c t hw_breakpoint_event_init
ffffffc0083f71a8 t hw_breakpoint_add
ffffffc0083f7264 t hw_breakpoint_del
ffffffc0083f728c t hw_breakpoint_start
ffffffc0083f729c t hw_breakpoint_stop
ffffffc0083f72b0 t bp_perf_event_destroy
ffffffc0083f7334 W is_swbp_insn
ffffffc0083f7354 W is_trap_insn
ffffffc0083f737c T uprobe_write_opcode
ffffffc0083f79cc t verify_opcode
ffffffc0083f7b48 t update_ref_ctr
ffffffc0083f7e0c t __replace_page
ffffffc0083f8588 t __update_ref_ctr
ffffffc0083f87cc W set_swbp
ffffffc0083f87f8 W set_orig_insn
ffffffc0083f8820 T uprobe_unregister
ffffffc0083f8ac0 t __find_uprobe
ffffffc0083f8be8 t __uprobe_unregister
ffffffc0083f8c8c t register_for_each_vma
ffffffc0083f8fc4 t delete_uprobe
ffffffc0083f9250 t build_map_info
ffffffc0083f9634 t install_breakpoint
ffffffc0083f9750 t prepare_uprobe
ffffffc0083f9904 t __copy_insn
ffffffc0083f9bc4 T uprobe_register
ffffffc0083f9bf0 t __uprobe_register
ffffffc0083f9e5c t alloc_uprobe
ffffffc0083fa158 t __insert_uprobe
ffffffc0083fa2c4 T uprobe_register_refctr
ffffffc0083fa2e8 T uprobe_apply
ffffffc0083fa5c0 T uprobe_mmap
ffffffc0083faa30 t build_probe_list
ffffffc0083faed0 T uprobe_munmap
ffffffc0083fb1e8 T uprobe_clear_state
ffffffc0083fb350 T uprobe_start_dup_mmap
ffffffc0083fb50c T uprobe_end_dup_mmap
ffffffc0083fb7d8 T uprobe_dup_mmap
ffffffc0083fb854 T uprobe_get_trap_addr
ffffffc0083fb884 T uprobe_free_utask
ffffffc0083fbb50 t xol_free_insn_slot
ffffffc0083fbc68 T uprobe_copy_process
ffffffc0083fbe00 t dup_utask
ffffffc0083fbf9c t dup_xol_work
ffffffc0083fc010 t __create_xol_area
ffffffc0083fc23c T uprobe_deny_signal
ffffffc0083fc470 W arch_uprobe_ignore
ffffffc0083fc480 T uprobe_notify_resume
ffffffc0083fc4fc t handle_singlestep
ffffffc0083fc84c t handle_swbp
ffffffc0083fccec t handle_trampoline
ffffffc0083fcfcc t find_active_uprobe
ffffffc0083fd27c t prepare_uretprobe
ffffffc0083fd4d4 t unapply_uprobe
ffffffc0083fd5e4 t xol_take_insn_slot
ffffffc0083fd7c4 t cleanup_return_instances
ffffffc0083fd9a8 t is_trap_at_addr
ffffffc0083fdd4c t mmf_recalc_uprobes
ffffffc0083fe00c T uprobe_pre_sstep_notifier
ffffffc0083fe078 T uprobe_post_sstep_notifier
ffffffc0083fe0e8 T static_key_slow_inc
ffffffc0083fe124 T static_key_slow_inc_cpuslocked
ffffffc0083fe254 t jump_label_update
ffffffc0083fe3e8 t __jump_label_update
ffffffc0083fe4f8 T static_key_slow_dec
ffffffc0083fe564 t __static_key_slow_dec_cpuslocked
ffffffc0083fe678 T static_key_enable_cpuslocked
ffffffc0083fe738 T static_key_enable
ffffffc0083fe800 T static_key_disable_cpuslocked
ffffffc0083fe8f4 T static_key_disable
ffffffc0083fe930 t jump_label_module_notify
ffffffc0083fec70 t jump_label_cmp
ffffffc0083fecdc t jump_label_swap
ffffffc0083fed2c t jump_label_del_module
ffffffc0083feeb8 T jump_label_lock
ffffffc0083feee4 T jump_label_unlock
ffffffc0083fef10 T static_key_count
ffffffc0083fef2c T jump_label_update_timeout
ffffffc0083fef68 T static_key_slow_dec_cpuslocked
ffffffc0083fefcc T __static_key_slow_dec_deferred
ffffffc0083ff0d4 T __static_key_deferred_flush
ffffffc0083ff1bc T jump_label_rate_limit
ffffffc0083ff250 T jump_label_apply_nops
ffffffc0083ff27c T jump_label_text_reserved
ffffffc0083ff4fc T memunmap
ffffffc0083ff57c T memremap
ffffffc0083ff8d8 T devm_memremap
ffffffc0083ff9f8 t devm_memremap_release
ffffffc0083ffa7c T devm_memunmap
ffffffc0083ffb00 t devm_memremap_match
ffffffc0083ffb18 T verify_pkcs7_signature
ffffffc0083ffbbc T verify_pkcs7_message_sig
ffffffc0083ffcc4 T restrict_link_by_builtin_trusted
ffffffc0083ffcf0 T load_certificate_list
ffffffc0083ffe08 t trace_raw_output_mm_filemap_op_page_cache
ffffffc0083fff38 t trace_raw_output_filemap_set_wb_err
ffffffc008400040 t trace_raw_output_file_check_and_advance_wb_err
ffffffc00840014c t trace_event_raw_event_mm_filemap_op_page_cache
ffffffc00840032c t perf_trace_mm_filemap_op_page_cache
ffffffc00840054c t trace_event_raw_event_filemap_set_wb_err
ffffffc008400708 t perf_trace_filemap_set_wb_err
ffffffc0084008f8 t trace_event_raw_event_file_check_and_advance_wb_err
ffffffc008400ac4 t perf_trace_file_check_and_advance_wb_err
ffffffc008400cc4 T __add_to_page_cache_locked
ffffffc00840159c T __traceiter_mm_filemap_delete_from_page_cache
ffffffc0084015f4 T __traceiter_mm_filemap_add_to_page_cache
ffffffc00840164c T __traceiter_filemap_set_wb_err
ffffffc0084016b4 T __traceiter_file_check_and_advance_wb_err
ffffffc00840171c t __bpf_trace_mm_filemap_op_page_cache
ffffffc008401740 t __bpf_trace_filemap_set_wb_err
ffffffc008401768 t __bpf_trace_file_check_and_advance_wb_err
ffffffc008401790 t wake_page_function
ffffffc0084018c4 T unlock_page
ffffffc00840193c t wake_up_page_bit
ffffffc008401cf4 T try_to_release_page
ffffffc008401dd4 T read_cache_page_gfp
ffffffc008401e04 t do_read_cache_page
ffffffc008402364 T pagecache_get_page
ffffffc0084029b8 T add_to_page_cache_lru
ffffffc008402aac t wait_on_page_read
ffffffc008402bfc T find_get_entry
ffffffc008402ed0 T read_cache_page
ffffffc008402ef8 T pagecache_write_end
ffffffc008402f94 T pagecache_write_begin
ffffffc008403030 T page_endio
ffffffc0084033a0 T __filemap_set_wb_err
ffffffc0084035b0 T end_page_writeback
ffffffc008403738 T page_cache_prev_miss
ffffffc008403828 T page_cache_next_miss
ffffffc00840391c T grab_cache_page_write_begin
ffffffc008403998 T generic_perform_write
ffffffc008403db8 T generic_file_read_iter
ffffffc008403fd8 T filemap_write_and_wait_range
ffffffc008404178 T generic_file_buffered_read
ffffffc00840539c t __wait_on_page_locked_async
ffffffc008405638 T __filemap_fdatawrite_range
ffffffc0084057d0 T filemap_fdatawait_range
ffffffc0084058a0 t __filemap_fdatawait_range
ffffffc008405a30 T generic_file_mmap
ffffffc008405a94 T filemap_fault
ffffffc008406808 T filemap_map_pages
ffffffc008406d48 T filemap_page_mkwrite
ffffffc008407310 T filemap_allow_speculation
ffffffc008407320 t next_uptodate_page
ffffffc0084076e4 t filemap_map_pmd
ffffffc008407ba8 t do_async_mmap_readahead
ffffffc008407ce0 t do_sync_mmap_readahead
ffffffc008408024 t lock_page_maybe_drop_mmap
ffffffc0084081c4 T generic_file_direct_write
ffffffc008408428 T dio_warn_stale_pagecache
ffffffc00840859c T filemap_flush
ffffffc0084085cc T filemap_fdatawrite
ffffffc0084085fc T filemap_check_errors
ffffffc0084086b0 T file_write_and_wait_range
ffffffc008408754 T file_check_and_advance_wb_err
ffffffc008408ad0 T delete_from_page_cache
ffffffc008408d10 T __delete_from_page_cache
ffffffc008408f90 t page_cache_free_page
ffffffc0084090e4 t unaccount_page_cache_page
ffffffc0084098e8 T add_to_page_cache_locked
ffffffc008409910 T __generic_file_write_iter
ffffffc008409a88 T delete_from_page_cache_batch
ffffffc008409f90 T filemap_fdatawrite_range
ffffffc008409fb8 T filemap_range_has_page
ffffffc00840a0bc T filemap_fdatawait_range_keep_errors
ffffffc00840a10c T file_fdatawait_range
ffffffc00840a148 T filemap_fdatawait_keep_errors
ffffffc00840a1a0 T replace_page_cache_page
ffffffc00840ac34 T put_and_wait_on_page_locked
ffffffc00840aca4 T add_page_wait_queue
ffffffc00840aea8 T find_lock_entry
ffffffc00840b0b0 T find_get_entries
ffffffc00840b440 T find_get_pages_range
ffffffc00840b7d0 T find_get_pages_contig
ffffffc00840bbb0 T find_get_pages_range_tag
ffffffc00840bf58 T generic_file_readonly_mmap
ffffffc00840bfd8 T generic_file_write_iter
ffffffc00840c12c T mempool_resize
ffffffc00840c9f4 T mempool_alloc_slab
ffffffc00840ca24 T mempool_kmalloc
ffffffc00840ca54 T mempool_alloc_pages
ffffffc00840ca80 T mempool_kfree
ffffffc00840caa4 T mempool_init
ffffffc00840cacc T mempool_init_node
ffffffc00840cc80 T mempool_exit
ffffffc00840cda4 T mempool_free_slab
ffffffc00840cdd4 T mempool_free_pages
ffffffc00840cdf8 T mempool_free
ffffffc00840d124 T mempool_destroy
ffffffc00840d164 T mempool_create_node
ffffffc00840d20c T mempool_create
ffffffc00840d2a4 T mempool_alloc
ffffffc00840d7a8 t trace_raw_output_wake_reaper
ffffffc00840d8a4 t trace_raw_output_start_task_reaping