Skip to content
Snippets Groups Projects
kallsyms.txt 4.73 MiB
Newer Older
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
[+] Kernel successfully decompressed in-memory (the offsets that follow will be given relative to the decompressed binary)
[+] Kernel successfully decompressed in-memory (the offsets that follow will be given relative to the decompressed binary)
[+] Version string: Linux version 6.6.30-android15-8-o-g807e77dcecec-4k (kleaf@build-host) (Android (11368308, +pgo, +bolt, +lto, +mlgo, based on r510928) clang version 18.0.0 (https://android.googlesource.com/toolchain/llvm-project 477610d4d0d988e69dbc3fae4fe86bff3f07f2b5), LLD 18.0.0) #1 SMP PREEMPT Sat Feb  8 14:05:23 UTC 2025
[+] Guessed architecture: aarch64 successfully in 0.00 seconds
[+] Found kallsyms_token_table at file offset 0x01463f88
[+] Found kallsyms_token_index at file offset 0x01464330
[+] Found kallsyms_markers at file offset 0x01463898
[+] Found kallsyms_names at file offset 0x012de6b8
[+] Found kallsyms_num_syms at file offset 0x012de6b0
[!] WARNING: Less than half (0%) of offsets are negative
             You may want to re-run this utility, overriding the relative base
[!] WARNING: More than half (100%) of offsets look like absolute addresses
[!]          You may want to re-run this utility, overriding the relative base
[i] Note: sometimes there is junk at the beginning of the kernel and the load address is not the guessed
          base address provided. You may need to play around with different load addresses to get everything
          to line up.  There may be some decent tables in the kernel with known patterns to line things up
          heuristically, but I have not explored this yet.
[i] Negative offsets overall: 0 %
[i] Null addresses overall: 0 %
[+] Found kallsyms_offsets at file offset 0x01464530
Symbol types => ['B', 'D', 'R', 'T', 'V', 'W', 'b', 'd', 'r', 't']

ffffffc080000000 T _text
ffffffc080010000 T _stext
ffffffc080010000 T __irqentry_text_start
ffffffc080010004 t gic_handle_irq
ffffffc0800100f8 t gic_handle_irq
ffffffc08001020c T __irqentry_text_end
ffffffc08001020c T __softirqentry_text_start
ffffffc080010210 T __do_softirq
ffffffc080010610 T __entry_text_start
ffffffc080010610 T __softirqentry_text_end
ffffffc080010800 T vectors
ffffffc080011000 t __bad_stack
ffffffc080011080 t el1t_64_sync
ffffffc0800110ec t el1t_64_irq
ffffffc080011158 t el1t_64_fiq
ffffffc0800111c4 t el1t_64_error
ffffffc080011230 t el1h_64_sync
ffffffc08001129c t el1h_64_irq
ffffffc080011308 t el1h_64_fiq
ffffffc080011374 t el1h_64_error
ffffffc0800113e0 t el0t_64_sync
ffffffc08001158c t el0t_64_irq
ffffffc080011738 t el0t_64_fiq
ffffffc0800118e4 t el0t_64_error
ffffffc080011a90 t el0t_32_sync
ffffffc080011c40 t el0t_32_irq
ffffffc080011df0 t el0t_32_fiq
ffffffc080011fa0 t el0t_32_error
ffffffc080012150 t ret_to_kernel
ffffffc0800121b8 t ret_to_user
ffffffc080012800 T __bp_harden_el1_vectors
ffffffc0800143b0 T __entry_text_end
ffffffc0800143b4 T __traceiter_initcall_level
ffffffc08001441c T __probestub_initcall_level
ffffffc080014424 T __traceiter_initcall_start
ffffffc08001448c T __probestub_initcall_start
ffffffc080014494 T __traceiter_initcall_finish
ffffffc08001450c T __probestub_initcall_finish
ffffffc080014514 t trace_event_raw_event_initcall_level
ffffffc0800145fc t perf_trace_initcall_level
ffffffc08001472c t trace_event_raw_event_initcall_start
ffffffc0800147d8 t perf_trace_initcall_start
ffffffc0800148b8 t trace_event_raw_event_initcall_finish
ffffffc08001496c t perf_trace_initcall_finish
ffffffc080014a5c t __bpf_trace_initcall_level
ffffffc080014a7c t __bpf_trace_initcall_start
ffffffc080014a9c t __bpf_trace_initcall_finish
ffffffc080014abc t rcu_read_unlock
ffffffc080014adc T do_one_initcall
ffffffc080014e3c t trace_raw_output_initcall_level
ffffffc080014ea8 t trace_raw_output_initcall_start
ffffffc080014f08 t trace_raw_output_initcall_finish
ffffffc080014f6c t trace_initcall_start_cb
ffffffc080014fb0 t trace_initcall_finish_cb
ffffffc080015020 t run_init_process
ffffffc080015100 t rootfs_init_fs_context
ffffffc080015138 T wait_for_initramfs
ffffffc080015194 t show_mem
ffffffc0800151c0 W calibrate_delay_is_known
ffffffc0800151cc W calibration_delay_done
ffffffc0800151d4 T calibrate_delay
ffffffc08001543c T debug_monitors_arch
ffffffc080015468 t mdscr_write
ffffffc080015484 t mdscr_read
ffffffc080015490 t create_debug_debugfs_entry
ffffffc0800154cc T enable_debug_monitors
ffffffc080015600 T disable_debug_monitors
ffffffc08001572c t set_user_regs_spsr_ss
ffffffc080015740 t clear_user_regs_spsr_ss
ffffffc080015754 T register_user_step_hook
ffffffc0800157d4 T unregister_user_step_hook
ffffffc080015858 T register_kernel_step_hook
ffffffc0800158d8 T unregister_kernel_step_hook
ffffffc08001595c t call_step_hook
ffffffc0800159f8 t single_step_handler
ffffffc080015b28 T register_user_break_hook
ffffffc080015ba8 T unregister_user_break_hook
ffffffc080015c2c T register_kernel_break_hook
ffffffc080015cac T unregister_kernel_break_hook
ffffffc080015d30 t call_break_hook
ffffffc080015dd0 t brk_handler
ffffffc080015ee0 T aarch32_break_handler
ffffffc0800161b0 T user_rewind_single_step
ffffffc0800161d0 T user_fastforward_single_step
ffffffc0800161f0 T user_regs_reset_single_step
ffffffc08001620c T kernel_enable_single_step
ffffffc080016268 T kernel_disable_single_step
ffffffc0800162b4 T kernel_active_single_step
ffffffc0800162d4 T kernel_rewind_single_step
ffffffc0800162e8 T user_enable_single_step
ffffffc080016330 T user_disable_single_step
ffffffc080016360 t clear_os_lock
ffffffc0800163e0 t __swpan_entry_el1
ffffffc0800163f4 t __swpan_entry_el0
ffffffc080016414 t __swpan_exit_el1
ffffffc080016440 t __swpan_exit_el0
ffffffc080016464 T cpu_switch_to
ffffffc0800164e0 T ret_from_fork
ffffffc080016500 T call_on_irq_stack
ffffffc080016574 T do_softirq_own_stack
ffffffc0800165a0 t ____do_softirq
ffffffc0800165c0 t default_handle_irq
ffffffc0800165dc t default_handle_fiq
ffffffc0800165f8 T task_get_vl
ffffffc080016614 T task_set_vl
ffffffc080016630 T task_get_vl_onexec
ffffffc08001664c T task_set_vl_onexec
ffffffc080016668 T sve_state_size
ffffffc0800166c8 T sve_alloc
ffffffc0800167c8 T fpsimd_force_sync_to_sve
ffffffc080016868 T fpsimd_sync_to_sve
ffffffc080016934 T sve_sync_to_fpsimd
ffffffc0800169e0 T sve_sync_from_fpsimd_zeropad
ffffffc080016ac0 T vec_set_vector_length
ffffffc080016e54 t find_supported_vector_length
ffffffc080016f8c t fpsimd_save
ffffffc080017168 T fpsimd_flush_task_state
ffffffc0800171b0 t put_cpu_fpsimd_context
ffffffc0800171f0 T sve_set_current_vl
ffffffc080017280 T sve_get_current_vl
ffffffc0800172c4 T sme_set_current_vl
ffffffc080017354 T sme_get_current_vl
ffffffc080017394 t vec_probe_vqs
ffffffc0800174a0 T vec_update_vq_map
ffffffc080017550 T vec_verify_vq_map
ffffffc080017724 T sve_kernel_enable
ffffffc08001773c T read_zcr_features
ffffffc08001777c T fpsimd_release_task
ffffffc0800177bc T sme_alloc
ffffffc08001785c T sme_kernel_enable
ffffffc080017890 T sme2_kernel_enable
ffffffc0800178a4 T fa64_kernel_enable
ffffffc0800178b8 T read_smcr_features
ffffffc080017918 T sme_suspend_exit
ffffffc080017980 T do_sve_acc
ffffffc080017b5c T do_sme_acc
ffffffc080017d54 t fpsimd_bind_task_to_cpu
ffffffc080017e74 T do_fpsimd_acc
ffffffc080017e80 T do_fpsimd_exc
ffffffc080017efc T fpsimd_thread_switch
ffffffc080018000 T fpsimd_flush_thread
ffffffc080018390 T fpsimd_preserve_current_state
ffffffc080018420 T fpsimd_signal_preserve_current_state
ffffffc080018558 T fpsimd_kvm_prepare
ffffffc0800186b0 T fpsimd_bind_state_to_cpu
ffffffc080018724 T fpsimd_restore_current_state
ffffffc080018814 t task_fpsimd_load
ffffffc080018bc8 T fpsimd_update_current_state
ffffffc080018d40 T fpsimd_save_and_flush_cpu_state
ffffffc080018e44 T kernel_neon_begin
ffffffc080018f8c T kernel_neon_end
ffffffc080018fe4 T __efi_fpsimd_begin
ffffffc0800191d4 T __efi_fpsimd_end
ffffffc080019354 t local_bh_enable
ffffffc080019380 t fpsimd_cpu_pm_notifier
ffffffc0800193b8 t fpsimd_cpu_dead
ffffffc0800193e8 t vec_proc_do_default_vl
ffffffc080019724 t trace_android_rvh_fiq_dump
ffffffc080019750 t local_daif_restore
ffffffc080019758 t trace_android_rvh_handle_bad_stack
ffffffc08001978c t mte_check_tfsr_exit
ffffffc0800197b4 t local_daif_mask
ffffffc0800197bc t __kern_my_cpu_offset
ffffffc0800197c4 t trace_android_rvh_panic_unhandled
ffffffc0800197f8 t local_daif_inherit
ffffffc080019808 t mte_check_tfsr_entry
ffffffc080019828 t mte_disable_tco_entry
ffffffc08001985c t do_interrupt_handler
ffffffc0800198e0 t preempt_count
ffffffc0800198ec t __preempt_count_add
ffffffc080019900 t __preempt_count_sub
ffffffc080019914 t cortex_a76_erratum_1463225_svc_handler
ffffffc080019988 t fp_user_discard
ffffffc0800199f8 t test_ti_thread_flag
ffffffc080019a08 t instruction_pointer
ffffffc080019a30 T fpsimd_save_state
ffffffc080019a88 T fpsimd_load_state
ffffffc080019aec T sve_save_state
ffffffc080019bdc T sve_load_state
ffffffc080019cc0 T sve_get_vl
ffffffc080019ccc T sve_set_vq
ffffffc080019cec T sve_flush_live
ffffffc080019dc0 T sme_get_vl
ffffffc080019dcc T sme_set_vq
ffffffc080019dec T sme_save_state
ffffffc080019e18 T sme_load_state
ffffffc080019e48 T arch_cpu_idle_dead
ffffffc080019e5c T machine_shutdown
ffffffc080019e84 T machine_halt
ffffffc080019ea0 T machine_power_off
ffffffc080019ec8 T machine_restart
ffffffc080019f1c T __show_regs
ffffffc08001a294 T show_regs
ffffffc08001a2d4 T flush_thread
ffffffc08001a36c T arch_release_task_struct
ffffffc08001a38c T arch_dup_task_struct
ffffffc08001a508 T copy_thread
ffffffc08001a6b0 T tls_preserve_current_state
ffffffc08001a700 T update_sctlr_el1
ffffffc08001a730 T __get_wchan
ffffffc08001a834 t get_wchan_cb
ffffffc08001a888 T arch_align_stack
ffffffc08001a8d8 T compat_elf_check_arch
ffffffc08001a960 T arch_setup_new_exec
ffffffc08001ab68 T set_tagged_addr_ctrl
ffffffc08001ac4c T get_tagged_addr_ctrl
ffffffc08001ac90 T arch_elf_adjust_prot
ffffffc08001ace8 T __traceiter_sys_enter
ffffffc08001ad60 T __probestub_sys_enter
ffffffc08001ad68 T __traceiter_sys_exit
ffffffc08001ade0 T __probestub_sys_exit
ffffffc08001ade8 t trace_event_raw_event_sys_enter
ffffffc08001aeb8 t perf_trace_sys_enter
ffffffc08001afc4 t trace_event_raw_event_sys_exit
ffffffc08001b078 t perf_trace_sys_exit
ffffffc08001b168 t __bpf_trace_sys_enter
ffffffc08001b188 t __bpf_trace_sys_exit
ffffffc08001b1a8 T regs_query_register_offset
ffffffc08001b200 T regs_get_kernel_stack_nth
ffffffc08001b260 T ptrace_disable
ffffffc08001b280 T flush_ptrace_hw_breakpoint
ffffffc08001b4a8 T ptrace_hw_copy_thread
ffffffc08001b4d8 T compat_arch_ptrace
ffffffc08001be60 T task_user_regset_view
ffffffc08001be9c T arch_ptrace
ffffffc08001bed4 T syscall_trace_enter
ffffffc08001c07c T syscall_trace_exit
ffffffc08001c25c T valid_user_regs
ffffffc08001c330 t trace_raw_output_sys_enter
ffffffc08001c3a8 t trace_raw_output_sys_exit
ffffffc08001c408 t compat_gpr_get
ffffffc08001c510 t compat_gpr_set
ffffffc08001c84c t compat_vfp_get
ffffffc08001c964 t compat_vfp_set
ffffffc08001ca6c t fpr_active
ffffffc08001ca94 t user_regset_copyin
ffffffc08001cc0c t ptrace_hbp_set_ctrl
ffffffc08001cd34 t ptrace_hbp_get_initialised_bp
ffffffc08001ceb8 t ptrace_hbptriggered
ffffffc08001d188 t compat_tls_get
ffffffc08001d21c t compat_tls_set
ffffffc08001d2ac t hw_break_get
ffffffc08001d5ac t hw_break_set
ffffffc08001d7f8 t system_call_get
ffffffc08001d890 t system_call_set
ffffffc08001d928 t gpr_get
ffffffc08001d984 t gpr_set
ffffffc08001daf4 t fpr_get
ffffffc08001db8c t fpr_set
ffffffc08001dc74 t tls_get
ffffffc08001dda4 t tls_set
ffffffc08001de74 t sve_get
ffffffc08001debc t sve_set
ffffffc08001df0c t ssve_get
ffffffc08001df54 t ssve_set
ffffffc08001dfa4 t za_get
ffffffc08001e17c t za_set
ffffffc08001e394 t zt_get
ffffffc08001e444 t zt_set
ffffffc08001e5a0 t pac_mask_get
ffffffc08001e648 t pac_enabled_keys_get
ffffffc08001e6e8 t pac_enabled_keys_set
ffffffc08001e78c t tagged_addr_ctrl_get
ffffffc08001e828 t tagged_addr_ctrl_set
ffffffc08001e8b4 t sve_get_common
ffffffc08001eb74 t sve_set_common
ffffffc08001efa0 T arch_match_cpu_phys_id
ffffffc08001efc8 T cpu_logical_map
ffffffc08001efe8 T kvm_arm_init_hyp_services
ffffffc08001f010 t arm64_panic_block_dump
ffffffc08001f084 T __arm64_sys_rt_sigreturn
ffffffc0800208bc T do_notify_resume
ffffffc080021020 t setup_sigframe_layout
ffffffc08002149c t uaccess_ttbr0_enable
ffffffc0800214e4 t uaccess_ttbr0_disable
ffffffc080021524 t setup_sigframe
ffffffc0800238d4 T __arm64_sys_mmap
ffffffc080023918 T __arm64_sys_arm64_personality
ffffffc080023998 T __arm64_sys_ni_syscall
ffffffc0800239b4 t stackinfo_get_task
ffffffc0800239c0 t preempt_count
ffffffc0800239cc t arch_local_save_flags
ffffffc0800239d4 t arch_irqs_disabled_flags
ffffffc0800239dc t stackinfo_get_irq
ffffffc0800239f4 t stackinfo_get_overflow
ffffffc080023a0c t on_task_stack
ffffffc080023a28 t stackinfo_get_efi
ffffffc080023a3c T dump_backtrace
ffffffc080023b44 t dump_backtrace_entry
ffffffc080023b78 T show_stack
ffffffc080023ba0 T arch_stack_walk_user
ffffffc080023ec0 t unwind_init_common
ffffffc080023ecc t unwind_next_frame_record
ffffffc080023f98 T profile_pc
ffffffc080024000 t profile_pc_cb
ffffffc080024044 T die
ffffffc08002434c T arm64_force_sig_fault
ffffffc0800243ac t arm64_show_signal
ffffffc08002449c T arm64_force_sig_mceerr
ffffffc0800244f0 T arm64_force_sig_ptrace_errno_trap
ffffffc080024534 T arm64_notify_die
ffffffc0800245e4 T arm64_skip_faulting_instruction
ffffffc08002468c T force_signal_inject
ffffffc0800247bc T arm64_notify_segfault
ffffffc080024880 T do_el0_undef
ffffffc080024b38 T do_el1_undef
ffffffc080024be0 T do_el0_bti
ffffffc080024c10 T do_el1_bti
ffffffc080024c88 T do_el0_fpac
ffffffc080024cb8 T do_el1_fpac
ffffffc080024d08 T do_el0_mops
ffffffc080024e20 T do_el0_cp15
ffffffc080024fe4 T do_el0_sys
ffffffc080025104 T esr_get_class_string
ffffffc08002511c T bad_el0_sync
ffffffc080025170 T panic_bad_stack
ffffffc08002528c T arm64_serror_panic
ffffffc080025320 T arm64_is_fatal_ras_serror
ffffffc0800253d0 T do_serror
ffffffc080025498 T is_valid_bugaddr
ffffffc0800254a4 t cfi_handler
ffffffc0800255f8 t ubsan_handler
ffffffc08002563c t bug_handler
ffffffc080025728 t compat_cntfrq_read_handler
ffffffc0800257e8 t compat_cntvct_read_handler
ffffffc0800258e4 t user_cache_maint_handler
ffffffc080025d6c t ctr_read_handler
ffffffc080025e64 t cntvct_read_handler
ffffffc080025f40 t cntfrq_read_handler
ffffffc080026000 t mrs_handler
ffffffc080026070 t wfi_handler
ffffffc080026118 t reserved_fault_handler
ffffffc0800261a8 T __memcpy_fromio
ffffffc080026318 T __memcpy_toio
ffffffc0800264a0 T __memset_io
ffffffc0800265dc T arch_get_vdso_data
ffffffc0800265e4 T vdso_join_timens
ffffffc080026738 T aarch32_setup_additional_pages
ffffffc080026910 T arch_setup_additional_pages
ffffffc080026a5c t aarch32_sigpage_mremap
ffffffc080026a78 t vvar_fault
ffffffc080026b10 t vdso_mremap
ffffffc080026b28 T __hyp_set_vectors
ffffffc080026b3c T __hyp_reset_vectors
ffffffc080026b4c T finalise_el2
ffffffc080026b74 t cpu_psci_cpu_boot
ffffffc080026c08 t cpu_psci_cpu_can_disable
ffffffc080026c30 t cpu_psci_cpu_disable
ffffffc080026c68 t cpu_psci_cpu_die
ffffffc080026cac t cpu_psci_cpu_kill
ffffffc080026d94 T get_cpu_ops
ffffffc080026db4 t save_return_addr
ffffffc080026ddc T return_address
ffffffc080026e58 t c_start
ffffffc080026e6c t c_stop
ffffffc080026e74 t c_next
ffffffc080026e8c t c_show
ffffffc08002728c T cpuinfo_store_cpu
ffffffc0800272e4 t __cpuinfo_store_cpu
ffffffc080027554 t cpuid_cpu_online
ffffffc08002761c t cpuid_cpu_offline
ffffffc08002769c t midr_el1_show
ffffffc0800276e0 t revidr_el1_show
ffffffc080027728 t smidr_el1_show
ffffffc080027780 t is_affected_midr_range_list
ffffffc0800277f8 t cpu_enable_cache_maint_trap
ffffffc080027814 t is_affected_midr_range
ffffffc0800278b8 t cpucap_multi_entry_cap_matches
ffffffc08002792c t has_mismatched_cache_type
ffffffc0800279a8 t cpu_enable_trap_ctr_access
ffffffc0800279f8 t has_cortex_a76_erratum_1463225
ffffffc080027a7c t needs_tx2_tvm_workaround
ffffffc080027b94 t has_neoverse_n1_erratum_1542419
ffffffc080027be0 t cpu_clear_bf16_from_user_emulation
ffffffc080027c44 t is_kryo_midr
ffffffc080027c84 T dump_cpu_features
ffffffc080027cb8 T get_arm64_ftr_reg
ffffffc080027d08 T arm64_ftr_safe_value
ffffffc080027d5c t init_cpu_ftr_reg
ffffffc080028000 t init_32bit_cpu_features
ffffffc080028148 T read_sanitised_ftr_reg
ffffffc0800281a0 T update_cpu_features
ffffffc080028c28 t check_update_ftr_reg
ffffffc080028dc8 T __read_sysreg_by_encoding
ffffffc080029298 T system_32bit_el0_cpumask
ffffffc080029328 T kaslr_requires_kpti
ffffffc0800293a0 T cpu_has_amu_feat
ffffffc0800293c8 T get_cpu_with_amu_feat
ffffffc0800293ec T check_local_cpu_capabilities
ffffffc080029680 t update_cpu_capabilities
ffffffc0800297ec T this_cpu_has_cap
ffffffc080029870 T cpu_set_feature
ffffffc0800298bc T cpu_have_feature
ffffffc0800298e4 T cpu_get_elf_hwcap
ffffffc0800298f4 T cpu_get_elf_hwcap2
ffffffc080029900 t setup_elf_hwcaps
ffffffc080029a48 T do_emulate_mrs
ffffffc080029b78 T try_emulate_mrs
ffffffc080029bfc T arm64_get_meltdown_state
ffffffc080029c44 T cpu_show_meltdown
ffffffc080029cd0 t search_cmp_ftr_reg
ffffffc080029ce0 t has_always
ffffffc080029cec t has_useable_gicv3_cpuif
ffffffc080029d70 t has_cpuid_feature
ffffffc080029e58 t cpu_enable_pan
ffffffc080029e90 t has_no_hw_prefetch
ffffffc080029ec0 t runs_at_el2
ffffffc080029ed4 t cpu_copy_el2regs
ffffffc080029f04 t has_nested_virt_support
ffffffc080029f68 t has_32bit_el0
ffffffc080029fc0 t is_kvm_protected_mode
ffffffc080029fe8 t unmap_kernel_at_el0
ffffffc08002a2b0 t kpti_install_ng_mappings
ffffffc08002a5d0 t has_no_fpsimd
ffffffc08002a630 t cpu_clear_disr
ffffffc08002a640 t has_amu
ffffffc08002a64c t cpu_amu_enable
ffffffc08002a7a8 t has_cache_idc
ffffffc08002a7f4 t cpu_emulate_effective_ctr
ffffffc08002a818 t has_cache_dic
ffffffc08002a844 t has_hw_dbm
ffffffc08002a94c t cpu_enable_hw_dbm
ffffffc08002aa54 t has_useable_cnp
ffffffc08002aa9c t cpu_enable_cnp
ffffffc08002ace8 t has_address_auth_cpucap
ffffffc08002add8 t has_address_auth_metacap
ffffffc08002ae4c t has_generic_auth
ffffffc08002af24 t cpu_enable_e0pd
ffffffc08002afa4 t bti_enable
ffffffc08002afc4 t cpu_enable_mte
ffffffc08002b0f4 t cpu_trap_el0_impdef
ffffffc08002b110 t cpu_enable_dit
ffffffc08002b11c t cpu_enable_mops
ffffffc08002b138 t hvhe_possible
ffffffc08002b170 t kpti_ng_pgd_alloc
ffffffc08002b188 t aarch32_el0_show
ffffffc08002b23c t verify_local_cpu_caps
ffffffc08002b390 t __verify_local_elf_hwcaps
ffffffc08002b484 t cpu_enable_non_boot_scope_capabilities
ffffffc08002b564 t has_user_cpuid_feature
ffffffc08002b6b0 t cpucap_multi_entry_cap_matches
ffffffc08002b724 t compat_has_neon
ffffffc08002b7d0 t enable_mismatched_32bit_el0
ffffffc08002b9b8 T alternative_is_applied
ffffffc08002b9f0 t __apply_alternatives
ffffffc08002bbc8 T apply_alternatives_module
ffffffc08002bd04 T cache_line_size
ffffffc08002bd38 T early_cache_level
ffffffc08002bd68 t detect_cache_level
ffffffc08002be60 T init_cache_level
ffffffc08002bef4 T populate_cache_leaves
ffffffc08002bfbc T __cpu_up
ffffffc08002c1ac T secondary_start_kernel
ffffffc08002c30c t ipi_setup
ffffffc08002c380 T __cpu_disable
ffffffc08002c464 T arch_cpuhp_cleanup_dead_cpu
ffffffc08002c4d4 T cpu_die
ffffffc08002c538 T cpu_die_early
ffffffc08002c5ac t set_cpu_present
ffffffc08002c634 t __cpu_try_die
ffffffc08002c68c T arch_show_interrupts
ffffffc08002c7fc T arch_send_call_function_ipi_mask
ffffffc08002c81c t smp_cross_call
ffffffc08002c914 T arch_send_call_function_single_ipi
ffffffc08002c954 T arch_irq_work_raise
ffffffc08002c9a8 T panic_smp_self_stop
ffffffc08002c9b8 t local_cpu_stop
ffffffc08002c9f0 t ipi_handler
ffffffc08002cbb4 T arch_smp_send_reschedule
ffffffc08002cbf4 T tick_broadcast
ffffffc08002cc18 T smp_send_stop
ffffffc08002cdb4 T cpus_are_stuck_in_kernel
ffffffc08002ce3c T nr_ipi_get
ffffffc08002ce4c T ipi_desc_get
ffffffc08002ce58 t trace_android_vh_ipi_stop
ffffffc08002cf38 t smp_spin_table_cpu_init
ffffffc08002cfb4 t smp_spin_table_cpu_prepare
ffffffc08002d08c t smp_spin_table_cpu_boot
ffffffc08002d0c8 t writeq_relaxed
ffffffc08002d13c T update_freq_counters_refs
ffffffc08002d1e4 t init_amu_fie_callback
ffffffc08002d370 t amu_scale_freq_tick
ffffffc08002d5fc T __arm_smccc_sve_check
ffffffc08002d624 T __arm_smccc_smc
ffffffc08002d664 T __arm_smccc_hvc
ffffffc08002d6a4 T arm_smccc_1_2_hvc
ffffffc08002d708 T arm_smccc_1_2_smc
ffffffc08002d778 T do_el0_svc
ffffffc08002d7a0 t el0_svc_common
ffffffc08002d880 T do_el0_svc_compat
ffffffc08002d8a8 t invoke_syscall
ffffffc08002d9bc T cpu_show_spectre_v1
ffffffc08002d9f0 T cpu_show_spectre_v2
ffffffc08002db0c T arm64_get_spectre_bhb_state
ffffffc08002db1c T has_spectre_v2
ffffffc08002dc68 T arm64_get_spectre_v2_state
ffffffc08002dc78 T spectre_v2_enable_mitigation
ffffffc08002df08 T has_spectre_v3a
ffffffc08002df50 T spectre_v3a_enable_mitigation
ffffffc08002df98 T cpu_show_spec_store_bypass
ffffffc08002e030 T arm64_get_spectre_v4_state
ffffffc08002e040 T has_spectre_v4
ffffffc08002e15c T try_emulate_el1_ssbs
ffffffc08002e1b8 t spectre_v4_mitigations_off
ffffffc08002e21c t spectre_v4_mitigations_dynamic
ffffffc08002e290 T spectre_v4_enable_mitigation
ffffffc08002e5b8 T spectre_v4_enable_task_mitigation
ffffffc08002e6b0 T arch_prctl_spec_ctrl_set
ffffffc08002ea1c T arch_prctl_spec_ctrl_get
ffffffc08002eb2c T spectre_bhb_loop_affected
ffffffc08002ec8c T is_spectre_bhb_affected
ffffffc08002ef30 t is_spectre_bhb_fw_affected
ffffffc08002f000 T spectre_bhb_enable_mitigation
ffffffc08002f2b0 t this_cpu_set_vectors
ffffffc08002f328 t spectre_bhb_get_cpu_fw_mitigation_state
ffffffc08002f3a0 T unpriv_ebpf_notify
ffffffc08002f464 T __arm64_compat_sys_aarch32_statfs64
ffffffc08002f4a4 T __arm64_compat_sys_aarch32_fstatfs64
ffffffc08002f4e4 T __arm64_compat_sys_aarch32_mmap2
ffffffc08002f514 T __arm64_compat_sys_aarch32_pread64
ffffffc08002f54c T __arm64_compat_sys_aarch32_pwrite64
ffffffc08002f584 T __arm64_compat_sys_aarch32_truncate64
ffffffc08002f5b4 T __arm64_compat_sys_aarch32_ftruncate64
ffffffc08002f5e8 T __arm64_compat_sys_aarch32_readahead
ffffffc08002f61c T __arm64_compat_sys_aarch32_fadvise64_64
ffffffc08002f664 T __arm64_compat_sys_aarch32_sync_file_range2
ffffffc08002f6ac T __arm64_compat_sys_aarch32_fallocate
ffffffc08002f6f4 T __arm64_compat_sys_sigreturn
ffffffc08002f78c t compat_restore_sigframe
ffffffc080030a40 T __arm64_compat_sys_rt_sigreturn
ffffffc080030af0 T compat_setup_rt_frame
ffffffc080030d7c t compat_setup_sigframe
ffffffc0800324bc T compat_setup_frame
ffffffc08003267c T compat_setup_restart_syscall
ffffffc080032858 T compat_arm_syscall
ffffffc0800329f0 T module_alloc
ffffffc080032b20 T apply_relocate_add
ffffffc08003305c T module_finalize
ffffffc0800334f8 T get_plt_entry
ffffffc080033584 T module_emit_plt_entry
ffffffc08003376c T module_emit_veneer_for_adrp
ffffffc0800338d0 T module_frob_arch_sections
ffffffc080033c48 t cmp_rela
ffffffc080033ca4 t count_plts
ffffffc080033df8 T perf_reg_value
ffffffc080033eec T perf_reg_validate
ffffffc080033f28 T perf_reg_abi
ffffffc080033f40 T perf_get_regs_user
ffffffc080033f78 T perf_callchain_user
ffffffc080033fe8 t callchain_trace
ffffffc080034034 T perf_callchain_kernel
ffffffc0800340a8 T perf_instruction_pointer
ffffffc080034138 T perf_misc_flags
ffffffc0800341b0 T hw_breakpoint_slots
ffffffc080034218 t read_wb_reg
ffffffc080034468 t write_wb_reg
ffffffc0800346b8 t debug_exception_level
ffffffc080034708 T arch_install_hw_breakpoint
ffffffc080034728 t hw_breakpoint_control
ffffffc080034984 T arch_uninstall_hw_breakpoint
ffffffc0800349a8 T arch_check_bp_in_kernelspace
ffffffc080034a88 T arch_bp_generic_fields
ffffffc080034b48 T hw_breakpoint_arch_parse
ffffffc080034e2c t toggle_bp_registers
ffffffc080034f64 t breakpoint_handler
ffffffc080035210 t watchpoint_handler
ffffffc080035604 T reinstall_suspended_bps
ffffffc08003598c T hw_breakpoint_thread_switch
ffffffc080035b18 T hw_breakpoint_pmu_read
ffffffc080035b20 T hw_breakpoint_exceptions_notify
ffffffc080035b2c t hw_breakpoint_reset
ffffffc080035c80 T __cpu_suspend_enter
ffffffc080035d14 T _cpu_resume
ffffffc080035dac T __cpu_suspend_exit
ffffffc0800361c8 T cpu_suspend
ffffffc0800362fc T arch_jump_label_transform
ffffffc08003635c T efi_poweroff_required
ffffffc080036370 T efi_handle_corrupted_x18
ffffffc0800363cc T arch_efi_call_virt_setup
ffffffc0800363fc T arch_efi_call_virt_teardown
ffffffc08003642c T efi_runtime_fixup_exception
ffffffc080036544 T __efi_rt_asm_wrapper
ffffffc0800365c4 T __efi_rt_asm_recover
ffffffc0800365f4 T raw_pci_read
ffffffc080036674 T raw_pci_write
ffffffc0800366f4 T __traceiter_instruction_emulation
ffffffc08003676c T __probestub_instruction_emulation
ffffffc080036774 t trace_event_raw_event_instruction_emulation
ffffffc080036868 t perf_trace_instruction_emulation
ffffffc0800369a4 t __bpf_trace_instruction_emulation
ffffffc0800369c4 T try_emulate_armv8_deprecated
ffffffc080036ae0 t trace_raw_output_instruction_emulation
ffffffc080036b50 t try_emulate_swp
ffffffc080036fa4 t try_emulate_cp15_barrier
ffffffc080037014 t cp15_barrier_set_hw_mode
ffffffc08003704c t cp15barrier_handler
ffffffc080037334 t try_emulate_setend
ffffffc0800373c8 t setend_set_hw_mode
ffffffc080037434 t compat_setend_handler
ffffffc080037598 t run_all_insn_set_hw_mode
ffffffc0800376f0 t emulation_proc_handler
ffffffc080037838 t enable_insn_hw_mode
ffffffc08003787c t disable_insn_hw_mode
ffffffc080037908 t native_steal_clock
ffffffc080037914 t para_steal_clock
ffffffc080037978 t stolen_time_cpu_online
ffffffc080037a70 t stolen_time_cpu_down_prepare
ffffffc080037acc T elf_core_extra_phdrs
ffffffc080037b90 T elf_core_write_extra_phdrs
ffffffc080037cb8 T elf_core_extra_data_size
ffffffc080037d20 T elf_core_write_extra_data
ffffffc080037fcc T ptrauth_prctl_reset_keys
ffffffc0800382c8 T ptrauth_set_enabled_keys
ffffffc0800383cc T ptrauth_get_enabled_keys
ffffffc080038450 T mte_sync_tags
ffffffc08003856c T memcmp_pages
ffffffc080038638 T mte_enable_kernel_sync
ffffffc0800386c8 T mte_enable_kernel_async
ffffffc08003873c T mte_enable_kernel_asymm
ffffffc08003882c T mte_check_tfsr_el1
ffffffc080038860 T mte_thread_init_user
ffffffc0800388d4 T set_mte_ctrl
ffffffc0800389f8 T mte_thread_switch
ffffffc080038ad4 T mte_cpu_setup
ffffffc080038b50 T mte_suspend_enter
ffffffc080038ba0 T mte_suspend_exit
ffffffc080038c34 T get_mte_ctrl
ffffffc080038c74 T mte_ptrace_copy_tags
ffffffc08003923c t uaccess_ttbr0_enable
ffffffc080039284 t uaccess_ttbr0_disable
ffffffc0800392c8 t register_mte_tcf_preferred_sysctl
ffffffc080039390 T mte_probe_user_range
ffffffc0800394e8 t put_page
ffffffc08003957c t mte_tcf_preferred_show
ffffffc080039610 t mte_tcf_preferred_store
ffffffc080039750 t offset_to_ptr
ffffffc080039760 T alloc_insn_page
ffffffc0800397cc T __kretprobe_trampoline
ffffffc080039898 T arch_uprobe_copy_ixol
ffffffc080039950 T uprobe_get_swbp_addr
ffffffc08003995c T arch_uprobe_analyze_insn
ffffffc0800399d0 T arch_uprobe_pre_xol
ffffffc080039a0c T arch_uprobe_post_xol
ffffffc080039a5c T arch_uprobe_xol_was_trapped
ffffffc080039a74 T arch_uprobe_skip_sstep
ffffffc080039ad8 T arch_uprobe_abort_xol
ffffffc080039b08 T arch_uretprobe_is_alive
ffffffc080039b2c T arch_uretprobe_hijack_return_addr
ffffffc080039b44 T arch_uprobe_exception_notify
ffffffc080039b50 t uprobe_breakpoint_handler
ffffffc080039b78 t uprobe_single_step_handler
ffffffc080039bc4 t __secondary_switched
ffffffc080039c88 t __secondary_too_slow
ffffffc080039c98 t set_cpu_boot_mode_flag
ffffffc080039cc4 T arch_sync_dma_for_device
ffffffc080039cf8 T arch_sync_dma_for_cpu
ffffffc080039d34 T arch_dma_prep_coherent
ffffffc080039d74 T arch_teardown_dma_ops
ffffffc080039d80 T arch_setup_dma_ops
ffffffc080039e78 T fixup_exception
ffffffc080039f60 T __ptep_set_access_flags
ffffffc08003a060 T do_mem_abort
ffffffc08003a178 t die_kernel_fault
ffffffc08003a204 T do_sp_pc_abort
ffffffc08003a284 t debug_exception_enter
ffffffc08003a29c t debug_exception_exit
ffffffc08003a2b4 T do_debug_exception
ffffffc08003a3f4 T vma_alloc_zeroed_movable_folio
ffffffc08003a43c T tag_clear_highpage
ffffffc08003a508 t do_bad
ffffffc08003a514 t do_sea
ffffffc08003a664 t do_tag_check_fault
ffffffc08003a698 t do_alignment_fault
ffffffc08003a6b8 t do_bad_area
ffffffc08003a794 t set_thread_esr
ffffffc08003a824 t __do_kernel_fault
ffffffc08003aaa4 t vma_end_read
ffffffc08003aad8 t fault_signal_pending
ffffffc08003ab20 t mmap_read_unlock
ffffffc08003ab60 t trace_android_rvh_die_kernel_fault
ffffffc08003ab98 t mem_abort_decode
ffffffc08003ad04 t show_pte
ffffffc08003af1c T pfn_is_map_memory
ffffffc08003af54 T free_initmem
ffffffc08003afc8 T dump_mem_limit
ffffffc08003b010 T caches_clean_inval_pou
ffffffc08003b010 T __pi_caches_clean_inval_pou
ffffffc08003b094 T caches_clean_inval_user_pou
ffffffc08003b178 T icache_inval_pou
ffffffc08003b1bc T dcache_clean_inval_poc
ffffffc08003b1bc T __pi_dcache_clean_inval_poc
ffffffc08003b1f4 T dcache_clean_pou
ffffffc08003b234 T dcache_inval_poc
ffffffc08003b234 T __pi_dcache_inval_poc
ffffffc08003b28c T dcache_clean_poc
ffffffc08003b28c T __pi_dcache_clean_poc
ffffffc08003b2c4 T dcache_clean_pop
ffffffc08003b2c4 T __pi_dcache_clean_pop
ffffffc08003b3ec T copy_highpage
ffffffc08003b568 T copy_user_highpage
ffffffc08003b5a0 T sync_icache_aliases
ffffffc08003b5f4 T copy_to_user_page
ffffffc08003b684 T __sync_icache_dcache
ffffffc08003b788 T flush_dcache_folio
ffffffc08003b7c4 T flush_dcache_page
ffffffc08003b810 T arch_wb_cache_pmem
ffffffc08003b838 T arch_invalidate_pmem
ffffffc08003b868 T kvm_init_ioremap_services
ffffffc08003ba20 T ioremap_phys_range_hook
ffffffc08003bd70 T iounmap_phys_range_hook
ffffffc08003c03c T ioremap_prot
ffffffc08003c0b4 T arch_memremap_can_ram_remap
ffffffc08003c0fc T mem_encrypt_active
ffffffc08003c114 T kvm_init_memshare_services
ffffffc08003c1d4 T set_memory_encrypted
ffffffc08003c200 t set_memory_xcrypted
ffffffc08003c3c0 T set_memory_decrypted
ffffffc08003c400 T valid_phys_addr_range
ffffffc08003c444 T valid_mmap_phys_addr_range
ffffffc08003c45c T vm_get_page_prot
ffffffc08003c488 T pgd_alloc
ffffffc08003c4b4 T pgd_free
ffffffc08003c4dc T set_swapper_pgd
ffffffc08003c588 T phys_mem_access_prot
ffffffc08003c5fc T pgattr_change_is_safe
ffffffc08003c664 T create_kpti_ng_temp_pgd
ffffffc08003cdec t pgd_pgtable_alloc
ffffffc08003cefc t update_mapping_prot
ffffffc08003d030 T mark_rodata_ro
ffffffc08003d08c T pmd_set_huge
ffffffc08003d120 T vmemmap_free
ffffffc08003d190 t unmap_hotplug_range
ffffffc08003d648 t free_empty_tables
ffffffc08003da00 T pud_set_huge
ffffffc08003db50 T pud_clear_huge
ffffffc08003dc54 T pmd_clear_huge
ffffffc08003dc9c T pmd_free_pte_page
ffffffc08003dd54 T pud_free_pmd_page
ffffffc08003dfc4 T arch_get_mappable_range
ffffffc08003dfe8 T arch_add_memory
ffffffc08003e158 t __pgd_pgtable_alloc
ffffffc08003e1bc T arch_remove_memory
ffffffc08003e264 T ptep_modify_prot_start
ffffffc08003e328 T ptep_modify_prot_commit
ffffffc08003e468 t prevent_bootmem_remove_notifier
ffffffc08003e5bc T verify_cpu_asid_bits
ffffffc08003e65c T check_and_switch_context
ffffffc08003e91c t new_context
ffffffc08003ec40 T arm64_mm_context_get
ffffffc08003ee00 T arm64_mm_context_put
ffffffc08003eefc T post_ttbr_update_workaround
ffffffc08003ef10 T cpu_do_switch_mm
ffffffc08003ef8c t asids_update_limit
ffffffc08003f05c t asids_init
ffffffc08003f1c0 T cpu_do_suspend
ffffffc08003f214 T cpu_do_resume
ffffffc08003f2e0 T can_set_direct_map
ffffffc08003f304 T set_memory_ro
ffffffc08003f328 t change_memory_common
ffffffc08003f540 T set_memory_rw
ffffffc08003f568 T set_memory_nx
ffffffc08003f590 T set_memory_x
ffffffc08003f5b8 T set_memory_valid
ffffffc08003f71c T set_direct_map_invalid_noflush
ffffffc08003f7c4 t change_page_range
ffffffc08003f818 T set_direct_map_default_noflush
ffffffc08003f8c8 T kernel_page_present
ffffffc08003f9bc T __set_fixmap
ffffffc08003fb08 T __contpte_try_fold
ffffffc08003fc14 t contpte_convert
ffffffc08003fddc T __contpte_try_unfold
ffffffc08003fe20 T contpte_ptep_get
ffffffc08003fe8c T contpte_ptep_get_lockless
ffffffc08003ff68 T contpte_set_ptes
ffffffc0800401d4 T contpte_clear_full_ptes
ffffffc0800402e4 T contpte_get_and_clear_full_ptes
ffffffc080040464 T contpte_ptep_test_and_clear_young
ffffffc0800404e8 T contpte_ptep_clear_flush_young
ffffffc080040590 t __flush_tlb_range_nosync
ffffffc0800407c8 T contpte_wrprotect_ptes
ffffffc080040938 T contpte_clear_young_dirty_ptes
ffffffc080040a4c T contpte_ptep_set_access_flags
ffffffc080040d90 T kvm_init_memrelinquish_services
ffffffc080040e58 t kvm_page_relinquish
ffffffc080040f38 T page_relinquish
ffffffc080040f7c T post_page_relinquish_tlb_inv
ffffffc080040fd0 T note_page
ffffffc080041330 T ptdump_walk
ffffffc0800413dc T ptdump_check_wx
ffffffc0800414cc T mte_allocate_tag_storage
ffffffc0800414fc T mte_free_tag_storage
ffffffc08004151c T mte_save_tags
ffffffc080041618 T mte_restore_tags
ffffffc0800416f8 T mte_invalidate_tags
ffffffc080041728 T mte_invalidate_tags_area
ffffffc0800418b4 T arch_prepare_to_swap
ffffffc0800419bc T arch_swap_restore
ffffffc080041a54 T dummy_tramp
ffffffc080041a64 T ex_handler_bpf
ffffffc080041a94 T bpf_int_jit_compile
ffffffc080042050 t build_prologue
ffffffc080042390 t build_body
ffffffc08004447c t build_epilogue
ffffffc080044670 t build_plt
ffffffc08004474c t jit_fill_hole
ffffffc0800447b4 t bpf_jit_dump
ffffffc080044834 t bpf_jit_binary_lock_ro
ffffffc080044894 T bpf_jit_supports_kfunc_call
ffffffc0800448a0 T bpf_jit_alloc_exec_limit
ffffffc0800448b0 T bpf_jit_alloc_exec
ffffffc0800448d4 T bpf_jit_free_exec
ffffffc0800448f4 T bpf_jit_supports_subprog_tailcalls
ffffffc080044900 T arch_prepare_bpf_trampoline
ffffffc080044ae8 t prepare_trampoline
ffffffc08004567c T bpf_arch_text_poke
ffffffc0800458c8 t emit_a64_mov_i
ffffffc080045a28 t emit_call
ffffffc080045b18 t emit_a64_mov_i64
ffffffc080045cd0 t invoke_bpf_prog
ffffffc0800460fc T __traceiter_kvm_userspace_exit
ffffffc080046174 T __probestub_kvm_userspace_exit
ffffffc08004617c T __traceiter_kvm_vcpu_wakeup
ffffffc0800461fc T __probestub_kvm_vcpu_wakeup
ffffffc080046204 T __traceiter_kvm_set_irq
ffffffc080046284 T __probestub_kvm_set_irq
ffffffc08004628c T __traceiter_kvm_ack_irq
ffffffc080046304 T __probestub_kvm_ack_irq
ffffffc08004630c T __traceiter_kvm_mmio
ffffffc08004639c T __probestub_kvm_mmio
ffffffc0800463a4 T __traceiter_kvm_fpu
ffffffc08004640c T __probestub_kvm_fpu
ffffffc080046414 T __traceiter_kvm_halt_poll_ns
ffffffc0800464a4 T __probestub_kvm_halt_poll_ns
ffffffc0800464ac T __traceiter_kvm_dirty_ring_push
ffffffc08004652c T __probestub_kvm_dirty_ring_push
ffffffc080046534 T __traceiter_kvm_dirty_ring_reset
ffffffc08004659c T __probestub_kvm_dirty_ring_reset
ffffffc0800465a4 T __traceiter_kvm_dirty_ring_exit
ffffffc08004660c T __probestub_kvm_dirty_ring_exit
ffffffc080046614 T __traceiter_kvm_unmap_hva_range
ffffffc08004668c T __probestub_kvm_unmap_hva_range
ffffffc080046694 T __traceiter_kvm_set_spte_hva
ffffffc0800466fc T __probestub_kvm_set_spte_hva
ffffffc080046704 T __traceiter_kvm_age_hva
ffffffc08004677c T __probestub_kvm_age_hva
ffffffc080046784 T __traceiter_kvm_test_age_hva
ffffffc0800467ec T __probestub_kvm_test_age_hva
ffffffc0800467f4 t trace_event_raw_event_kvm_userspace_exit
ffffffc0800468a4 t perf_trace_kvm_userspace_exit
ffffffc080046990 t trace_event_raw_event_kvm_vcpu_wakeup
ffffffc080046a5c t perf_trace_kvm_vcpu_wakeup
ffffffc080046b5c t trace_event_raw_event_kvm_set_irq
ffffffc080046c1c t perf_trace_kvm_set_irq
ffffffc080046d10 t trace_event_raw_event_kvm_ack_irq
ffffffc080046dc0 t perf_trace_kvm_ack_irq
ffffffc080046eac t trace_event_raw_event_kvm_mmio
ffffffc080046f90 t perf_trace_kvm_mmio
ffffffc0800470b4 t trace_event_raw_event_kvm_fpu
ffffffc080047160 t perf_trace_kvm_fpu
ffffffc080047240 t trace_event_raw_event_kvm_halt_poll_ns
ffffffc080047310 t perf_trace_kvm_halt_poll_ns
ffffffc080047418 t trace_event_raw_event_kvm_dirty_ring_push
ffffffc0800474ec t perf_trace_kvm_dirty_ring_push
ffffffc0800475f4 t trace_event_raw_event_kvm_dirty_ring_reset
ffffffc0800476b4 t perf_trace_kvm_dirty_ring_reset
ffffffc0800477a8 t trace_event_raw_event_kvm_dirty_ring_exit
ffffffc080047858 t perf_trace_kvm_dirty_ring_exit
ffffffc08004793c t trace_event_raw_event_kvm_unmap_hva_range
ffffffc0800479ec t perf_trace_kvm_unmap_hva_range
ffffffc080047ad8 t trace_event_raw_event_kvm_set_spte_hva
ffffffc080047b84 t perf_trace_kvm_set_spte_hva
ffffffc080047c64 t trace_event_raw_event_kvm_age_hva
ffffffc080047d14 t perf_trace_kvm_age_hva
ffffffc080047e00 t trace_event_raw_event_kvm_test_age_hva
ffffffc080047eac t perf_trace_kvm_test_age_hva
ffffffc080047f8c t __bpf_trace_kvm_userspace_exit
ffffffc080047fb4 t __bpf_trace_kvm_vcpu_wakeup
ffffffc080047fdc t __bpf_trace_kvm_set_irq
ffffffc080048008 t __bpf_trace_kvm_ack_irq
ffffffc080048030 t __bpf_trace_kvm_mmio
ffffffc080048058 t __bpf_trace_kvm_fpu
ffffffc08004807c t __bpf_trace_kvm_halt_poll_ns
ffffffc0800480ac t __bpf_trace_kvm_dirty_ring_push
ffffffc0800480d0 t __bpf_trace_kvm_dirty_ring_reset
ffffffc0800480f0 t __bpf_trace_kvm_dirty_ring_exit
ffffffc080048110 t __bpf_trace_kvm_unmap_hva_range
ffffffc080048130 t __bpf_trace_kvm_set_spte_hva
ffffffc080048150 t __bpf_trace_kvm_age_hva
ffffffc080048170 t __bpf_trace_kvm_test_age_hva
ffffffc080048190 W kvm_arch_guest_memory_reclaimed
ffffffc080048198 T kvm_is_zone_device_page
ffffffc0800481c8 T kvm_pfn_to_refcounted_page
ffffffc080048328 T vcpu_load
ffffffc0800483b8 T vcpu_put
ffffffc08004842c T kvm_make_vcpus_request_mask
ffffffc08004857c t kvm_make_vcpu_request
ffffffc0800486b4 T kvm_make_all_cpus_request_except
ffffffc080048804 T kvm_make_all_cpus_request
ffffffc08004882c T kvm_flush_remote_tlbs
ffffffc080048888 T kvm_flush_remote_tlbs_range
ffffffc0800488f0 T kvm_flush_remote_tlbs_memslot
ffffffc080048960 T __kvm_mmu_topup_memory_cache
ffffffc080048a8c t mmu_memory_cache_alloc_obj
ffffffc080048acc T kvm_mmu_topup_memory_cache
ffffffc080048af4 T kvm_mmu_memory_cache_nr_free_objects
ffffffc080048b00 T kvm_mmu_free_memory_cache
ffffffc080048b7c T kvm_mmu_memory_cache_alloc
ffffffc080048bcc T kvm_destroy_vcpus
ffffffc080048cc8 T kvm_mmu_invalidate_begin
ffffffc080048d0c T kvm_mmu_invalidate_end
ffffffc080048d30 W kvm_arch_post_init_vm
ffffffc080048d3c W kvm_arch_pre_destroy_vm
ffffffc080048d50 T kvm_get_kvm
ffffffc080048db8 T kvm_get_kvm_safe
ffffffc080048e58 T kvm_put_kvm
ffffffc0800493d4 T kvm_put_kvm_no_destroy
ffffffc080049448 T __kvm_set_memory_region
ffffffc080049684 t access_ok
ffffffc0800496c0 t id_to_memslot
ffffffc080049734 t kvm_set_memslot
ffffffc080049c20 t kvm_check_memslot_overlap
ffffffc080049d60 T kvm_set_memory_region
ffffffc080049dbc T gfn_to_memslot
ffffffc080049e60 T kvm_vcpu_gfn_to_memslot
ffffffc080049f34 T kvm_is_visible_gfn
ffffffc080049ff8 T kvm_vcpu_is_visible_gfn
ffffffc08004a0e4 T kvm_host_page_size
ffffffc08004a194 T kvm_vcpu_gfn_to_hva_prot
ffffffc08004a2a8 T gfn_to_hva_memslot
ffffffc08004a2f4 T gfn_to_hva
ffffffc08004a3d4 T kvm_vcpu_gfn_to_hva
ffffffc08004a4d8 T gfn_to_hva_memslot_prot
ffffffc08004a538 T gfn_to_hva_prot
ffffffc08004a628 T hva_to_pfn
ffffffc08004aa34 T __gfn_to_pfn_memslot
ffffffc08004ab28 T gfn_to_pfn_prot
ffffffc08004ac78 T gfn_to_pfn_memslot
ffffffc08004ad10 T gfn_to_pfn_memslot_atomic
ffffffc08004ae00 T kvm_vcpu_gfn_to_pfn_atomic
ffffffc08004afa8 T gfn_to_pfn
ffffffc08004b0d0 T kvm_vcpu_gfn_to_pfn
ffffffc08004b220 T gfn_to_page_many_atomic
ffffffc08004b2b4 T gfn_to_page
ffffffc08004b2f8 T kvm_release_pfn
ffffffc08004b334 T kvm_release_pfn_dirty
ffffffc08004b364 T kvm_release_pfn_clean
ffffffc08004b438 T kvm_vcpu_map
ffffffc08004b5b8 T kvm_vcpu_unmap
ffffffc08004b714 T kvm_vcpu_mark_page_dirty
ffffffc08004b800 T kvm_release_page_clean
ffffffc08004b8c0 t put_page
ffffffc08004b954 T kvm_release_page_dirty
ffffffc08004ba7c T kvm_set_pfn_dirty
ffffffc08004bbc0 T kvm_set_pfn_accessed
ffffffc08004bcd8 T kvm_read_guest_page
ffffffc08004bd90 t __kvm_read_guest_page
ffffffc08004beb4 T kvm_vcpu_read_guest_page
ffffffc08004bf9c T kvm_read_guest
ffffffc08004c0dc T kvm_vcpu_read_guest
ffffffc08004c244 T kvm_vcpu_read_guest_atomic
ffffffc08004c444 T kvm_write_guest_page
ffffffc08004c510 t __kvm_write_guest_page
ffffffc08004c660 T kvm_vcpu_write_guest_page
ffffffc08004c758 T kvm_write_guest
ffffffc08004c89c T kvm_vcpu_write_guest
ffffffc08004ca08 T kvm_gfn_to_hva_cache_init
ffffffc08004ca38 t __kvm_gfn_to_hva_cache_init
ffffffc08004cb94 T kvm_write_guest_offset_cached
ffffffc08004cd24 T mark_page_dirty_in_slot
ffffffc08004ce40 T kvm_write_guest_cached
ffffffc08004ce68 T kvm_read_guest_offset_cached
ffffffc08004cfe8 T kvm_read_guest_cached
ffffffc08004d010 T kvm_clear_guest
ffffffc08004d174 T kvm_get_running_vcpu
ffffffc08004d1dc T mark_page_dirty
ffffffc08004d2a0 T kvm_sigset_activate
ffffffc08004d2d8 T kvm_sigset_deactivate
ffffffc08004d31c T kvm_vcpu_block