Skip to content
Snippets Groups Projects
kallsyms.txt 4.38 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
[+] Version string: Linux version 6.6.30-android15-8-g013ec21bba94-abogki383916444-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 Tue Dec 17 23:36:49 UTC 2024
[+] Guessed architecture: aarch64 successfully in 14.08 seconds
[+] Found kallsyms_token_table at file offset 0x01460448
[+] Found kallsyms_token_index at file offset 0x014607d0
[+] Found kallsyms_markers at file offset 0x0145fdc0
[+] Found kallsyms_names at file offset 0x012f5e10
[+] Found kallsyms_num_syms at file offset 0x012f5e08
[!] 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 0x014609d0
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
ffffffc080023b9c t unwind_init_common
ffffffc080023ba8 t unwind_next_frame_record
ffffffc080023c64 T profile_pc
ffffffc080023ccc t profile_pc_cb
ffffffc080023d10 T die
ffffffc080024018 T arm64_force_sig_fault
ffffffc080024078 t arm64_show_signal
ffffffc080024168 T arm64_force_sig_mceerr
ffffffc0800241bc T arm64_force_sig_ptrace_errno_trap
ffffffc080024200 T arm64_notify_die
ffffffc0800242b0 T arm64_skip_faulting_instruction
ffffffc080024358 T force_signal_inject
ffffffc080024488 T arm64_notify_segfault
ffffffc08002454c T do_el0_undef
ffffffc080024804 T do_el1_undef
ffffffc0800248ac T do_el0_bti
ffffffc0800248dc T do_el1_bti
ffffffc080024954 T do_el0_fpac
ffffffc080024984 T do_el1_fpac
ffffffc0800249d4 T do_el0_mops
ffffffc080024aec T do_el0_cp15
ffffffc080024cb0 T do_el0_sys
ffffffc080024dd0 T esr_get_class_string
ffffffc080024de8 T bad_el0_sync
ffffffc080024e3c T panic_bad_stack
ffffffc080024f58 T arm64_serror_panic
ffffffc080024fec T arm64_is_fatal_ras_serror
ffffffc08002509c T do_serror
ffffffc080025164 T is_valid_bugaddr
ffffffc080025170 t cfi_handler
ffffffc0800252c4 t ubsan_handler
ffffffc080025308 t bug_handler
ffffffc0800253f4 t compat_cntfrq_read_handler
ffffffc0800254b4 t compat_cntvct_read_handler
ffffffc0800255b0 t user_cache_maint_handler
ffffffc080025a38 t ctr_read_handler
ffffffc080025b30 t cntvct_read_handler
ffffffc080025c0c t cntfrq_read_handler
ffffffc080025ccc t mrs_handler
ffffffc080025d3c t wfi_handler
ffffffc080025de4 t reserved_fault_handler
ffffffc080025e74 T __memcpy_fromio
ffffffc080025fe4 T __memcpy_toio
ffffffc08002616c T __memset_io
ffffffc0800262a8 T arch_get_vdso_data
ffffffc0800262b0 T vdso_join_timens
ffffffc080026404 T aarch32_setup_additional_pages
ffffffc0800265dc T arch_setup_additional_pages
ffffffc080026728 t aarch32_sigpage_mremap
ffffffc080026744 t vvar_fault
ffffffc0800267dc t vdso_mremap
ffffffc0800267f4 T __hyp_set_vectors
ffffffc080026808 T __hyp_reset_vectors
ffffffc080026818 T finalise_el2
ffffffc080026840 t cpu_psci_cpu_boot
ffffffc0800268d4 t cpu_psci_cpu_can_disable
ffffffc0800268fc t cpu_psci_cpu_disable
ffffffc080026934 t cpu_psci_cpu_die
ffffffc080026978 t cpu_psci_cpu_kill
ffffffc080026a60 T get_cpu_ops
ffffffc080026a80 t save_return_addr
ffffffc080026aa8 T return_address
ffffffc080026b24 t c_start
ffffffc080026b38 t c_stop
ffffffc080026b40 t c_next
ffffffc080026b58 t c_show
ffffffc080026f58 T cpuinfo_store_cpu
ffffffc080026fb0 t __cpuinfo_store_cpu
ffffffc080027220 t cpuid_cpu_online
ffffffc0800272e8 t cpuid_cpu_offline
ffffffc080027368 t midr_el1_show
ffffffc0800273ac t revidr_el1_show
ffffffc0800273f4 t smidr_el1_show
ffffffc08002744c t is_affected_midr_range_list
ffffffc0800274c4 t cpu_enable_cache_maint_trap
ffffffc0800274e0 t is_affected_midr_range
ffffffc080027584 t cpucap_multi_entry_cap_matches
ffffffc0800275f8 t has_mismatched_cache_type
ffffffc080027674 t cpu_enable_trap_ctr_access
ffffffc0800276c4 t has_cortex_a76_erratum_1463225
ffffffc080027748 t needs_tx2_tvm_workaround
ffffffc080027860 t has_neoverse_n1_erratum_1542419
ffffffc0800278ac t cpu_clear_bf16_from_user_emulation
ffffffc080027910 t is_kryo_midr
ffffffc080027950 T dump_cpu_features
ffffffc080027984 T get_arm64_ftr_reg
ffffffc0800279d4 T arm64_ftr_safe_value
ffffffc080027a28 t init_cpu_ftr_reg
ffffffc080027ccc t init_32bit_cpu_features
ffffffc080027e14 T read_sanitised_ftr_reg
ffffffc080027e6c T update_cpu_features
ffffffc0800288f4 t check_update_ftr_reg
ffffffc080028a94 T __read_sysreg_by_encoding
ffffffc080028f64 T system_32bit_el0_cpumask
ffffffc080028ff4 T kaslr_requires_kpti
ffffffc08002906c T cpu_has_amu_feat
ffffffc080029094 T get_cpu_with_amu_feat
ffffffc0800290b8 T check_local_cpu_capabilities
ffffffc08002934c t update_cpu_capabilities
ffffffc0800294b8 T this_cpu_has_cap
ffffffc08002953c T cpu_set_feature
ffffffc080029588 T cpu_have_feature
ffffffc0800295b0 T cpu_get_elf_hwcap
ffffffc0800295c0 T cpu_get_elf_hwcap2
ffffffc0800295cc t setup_elf_hwcaps
ffffffc080029714 T do_emulate_mrs
ffffffc080029844 T try_emulate_mrs
ffffffc0800298c8 T arm64_get_meltdown_state
ffffffc080029910 T cpu_show_meltdown
ffffffc08002999c t search_cmp_ftr_reg
ffffffc0800299ac t has_always
ffffffc0800299b8 t has_useable_gicv3_cpuif
ffffffc080029a3c t has_cpuid_feature
ffffffc080029b24 t cpu_enable_pan
ffffffc080029b5c t has_no_hw_prefetch
ffffffc080029b8c t runs_at_el2
ffffffc080029ba0 t cpu_copy_el2regs
ffffffc080029bd0 t has_nested_virt_support
ffffffc080029c34 t has_32bit_el0
ffffffc080029c8c t is_kvm_protected_mode
ffffffc080029cb4 t unmap_kernel_at_el0
ffffffc080029f7c t kpti_install_ng_mappings
ffffffc08002a29c t has_no_fpsimd
ffffffc08002a2fc t cpu_clear_disr
ffffffc08002a30c t has_amu
ffffffc08002a318 t cpu_amu_enable
ffffffc08002a474 t has_cache_idc
ffffffc08002a4c0 t cpu_emulate_effective_ctr
ffffffc08002a4e4 t has_cache_dic
ffffffc08002a510 t has_hw_dbm
ffffffc08002a618 t cpu_enable_hw_dbm
ffffffc08002a720 t has_useable_cnp
ffffffc08002a768 t cpu_enable_cnp
ffffffc08002a9b4 t has_address_auth_cpucap
ffffffc08002aaa4 t has_address_auth_metacap
ffffffc08002ab18 t has_generic_auth
ffffffc08002abf0 t cpu_enable_e0pd
ffffffc08002ac70 t bti_enable
ffffffc08002ac90 t cpu_enable_mte
ffffffc08002adc0 t cpu_trap_el0_impdef
ffffffc08002addc t cpu_enable_dit
ffffffc08002ade8 t cpu_enable_mops
ffffffc08002ae04 t hvhe_possible
ffffffc08002ae3c t kpti_ng_pgd_alloc
ffffffc08002ae54 t aarch32_el0_show
ffffffc08002af08 t verify_local_cpu_caps
ffffffc08002b05c t __verify_local_elf_hwcaps
ffffffc08002b150 t cpu_enable_non_boot_scope_capabilities
ffffffc08002b230 t has_user_cpuid_feature
ffffffc08002b37c t cpucap_multi_entry_cap_matches
ffffffc08002b3f0 t compat_has_neon
ffffffc08002b49c t enable_mismatched_32bit_el0
ffffffc08002b684 T alternative_is_applied
ffffffc08002b6bc t __apply_alternatives
ffffffc08002b894 T apply_alternatives_module
ffffffc08002b9d0 T cache_line_size
ffffffc08002ba04 T early_cache_level
ffffffc08002ba34 t detect_cache_level
ffffffc08002bb2c T init_cache_level
ffffffc08002bbc0 T populate_cache_leaves
ffffffc08002bc88 T __cpu_up
ffffffc08002be78 T secondary_start_kernel
ffffffc08002bfd8 t ipi_setup
ffffffc08002c04c T __cpu_disable
ffffffc08002c130 T arch_cpuhp_cleanup_dead_cpu
ffffffc08002c1a0 T cpu_die
ffffffc08002c204 T cpu_die_early
ffffffc08002c278 t set_cpu_present
ffffffc08002c300 t __cpu_try_die
ffffffc08002c358 T arch_show_interrupts
ffffffc08002c4c8 T arch_send_call_function_ipi_mask
ffffffc08002c4e8 t smp_cross_call
ffffffc08002c5e0 T arch_send_call_function_single_ipi
ffffffc08002c620 T arch_irq_work_raise
ffffffc08002c674 T panic_smp_self_stop
ffffffc08002c684 t local_cpu_stop
ffffffc08002c6bc t ipi_handler
ffffffc08002c880 T arch_smp_send_reschedule
ffffffc08002c8c0 T tick_broadcast
ffffffc08002c8e4 T smp_send_stop
ffffffc08002ca80 T cpus_are_stuck_in_kernel
ffffffc08002cb08 T nr_ipi_get
ffffffc08002cb18 T ipi_desc_get
ffffffc08002cb24 t trace_android_vh_ipi_stop
ffffffc08002cc04 t smp_spin_table_cpu_init
ffffffc08002cc80 t smp_spin_table_cpu_prepare
ffffffc08002cd58 t smp_spin_table_cpu_boot
ffffffc08002cd94 t writeq_relaxed
ffffffc08002ce08 T update_freq_counters_refs
ffffffc08002ceb0 t init_amu_fie_callback
ffffffc08002d03c t amu_scale_freq_tick
ffffffc08002d2c8 T __arm_smccc_sve_check
ffffffc08002d2f0 T __arm_smccc_smc
ffffffc08002d330 T __arm_smccc_hvc
ffffffc08002d370 T arm_smccc_1_2_hvc
ffffffc08002d3d4 T arm_smccc_1_2_smc
ffffffc08002d444 T do_el0_svc
ffffffc08002d46c t el0_svc_common
ffffffc08002d54c T do_el0_svc_compat
ffffffc08002d574 t invoke_syscall
ffffffc08002d688 T cpu_show_spectre_v1
ffffffc08002d6bc T cpu_show_spectre_v2
ffffffc08002d7d8 T arm64_get_spectre_bhb_state
ffffffc08002d7e8 T has_spectre_v2
ffffffc08002d934 T arm64_get_spectre_v2_state
ffffffc08002d944 T spectre_v2_enable_mitigation
ffffffc08002dbd4 T has_spectre_v3a
ffffffc08002dc1c T spectre_v3a_enable_mitigation
ffffffc08002dc64 T cpu_show_spec_store_bypass
ffffffc08002dcfc T arm64_get_spectre_v4_state
ffffffc08002dd0c T has_spectre_v4
ffffffc08002de28 T try_emulate_el1_ssbs
ffffffc08002de84 t spectre_v4_mitigations_off
ffffffc08002dee8 t spectre_v4_mitigations_dynamic
ffffffc08002df5c T spectre_v4_enable_mitigation
ffffffc08002e284 T spectre_v4_enable_task_mitigation
ffffffc08002e37c T arch_prctl_spec_ctrl_set
ffffffc08002e6e8 T arch_prctl_spec_ctrl_get
ffffffc08002e7f8 T spectre_bhb_loop_affected
ffffffc08002e958 T is_spectre_bhb_affected
ffffffc08002ebfc t is_spectre_bhb_fw_affected
ffffffc08002eccc T spectre_bhb_enable_mitigation
ffffffc08002ef7c t this_cpu_set_vectors
ffffffc08002eff4 t spectre_bhb_get_cpu_fw_mitigation_state
ffffffc08002f06c T unpriv_ebpf_notify
ffffffc08002f130 T __arm64_compat_sys_aarch32_statfs64
ffffffc08002f170 T __arm64_compat_sys_aarch32_fstatfs64
ffffffc08002f1b0 T __arm64_compat_sys_aarch32_mmap2
ffffffc08002f1e0 T __arm64_compat_sys_aarch32_pread64
ffffffc08002f218 T __arm64_compat_sys_aarch32_pwrite64
ffffffc08002f250 T __arm64_compat_sys_aarch32_truncate64
ffffffc08002f280 T __arm64_compat_sys_aarch32_ftruncate64
ffffffc08002f2b4 T __arm64_compat_sys_aarch32_readahead
ffffffc08002f2e8 T __arm64_compat_sys_aarch32_fadvise64_64
ffffffc08002f330 T __arm64_compat_sys_aarch32_sync_file_range2
ffffffc08002f378 T __arm64_compat_sys_aarch32_fallocate
ffffffc08002f3c0 T __arm64_compat_sys_sigreturn
ffffffc08002f458 t compat_restore_sigframe
ffffffc08003070c T __arm64_compat_sys_rt_sigreturn
ffffffc0800307bc T compat_setup_rt_frame
ffffffc080030a48 t compat_setup_sigframe
ffffffc080032188 T compat_setup_frame
ffffffc080032348 T compat_setup_restart_syscall
ffffffc080032524 T compat_arm_syscall
ffffffc0800326bc T module_alloc
ffffffc0800327ec T apply_relocate_add
ffffffc080032d28 T module_finalize
ffffffc0800331c4 T get_plt_entry
ffffffc080033250 T module_emit_plt_entry
ffffffc080033438 T module_emit_veneer_for_adrp
ffffffc08003359c T module_frob_arch_sections
ffffffc080033914 t cmp_rela
ffffffc080033970 t count_plts
ffffffc080033ac4 T perf_reg_value
ffffffc080033bb8 T perf_reg_validate
ffffffc080033bf4 T perf_reg_abi
ffffffc080033c0c T perf_get_regs_user
ffffffc080033c44 T perf_callchain_user
ffffffc080033ffc T perf_callchain_kernel
ffffffc080034070 t callchain_trace
ffffffc0800340bc T perf_instruction_pointer
ffffffc08003414c T perf_misc_flags
ffffffc0800341d4 T hw_breakpoint_slots
ffffffc08003423c t read_wb_reg
ffffffc08003448c t write_wb_reg
ffffffc0800346dc t debug_exception_level
ffffffc08003472c T arch_install_hw_breakpoint
ffffffc08003474c t hw_breakpoint_control
ffffffc0800349a8 T arch_uninstall_hw_breakpoint
ffffffc0800349cc T arch_check_bp_in_kernelspace
ffffffc080034aac T arch_bp_generic_fields
ffffffc080034b6c T hw_breakpoint_arch_parse
ffffffc080034e50 t toggle_bp_registers
ffffffc080034f88 t breakpoint_handler
ffffffc080035234 t watchpoint_handler
ffffffc080035628 T reinstall_suspended_bps
ffffffc0800359b0 T hw_breakpoint_thread_switch
ffffffc080035b3c T hw_breakpoint_pmu_read
ffffffc080035b44 T hw_breakpoint_exceptions_notify
ffffffc080035b50 t hw_breakpoint_reset
ffffffc080035ca4 T __cpu_suspend_enter
ffffffc080035d38 T _cpu_resume
ffffffc080035dd0 T __cpu_suspend_exit
ffffffc0800361ec T cpu_suspend
ffffffc080036320 T arch_jump_label_transform
ffffffc080036380 T efi_poweroff_required
ffffffc080036394 T efi_handle_corrupted_x18
ffffffc0800363f0 T arch_efi_call_virt_setup
ffffffc080036420 T arch_efi_call_virt_teardown
ffffffc080036450 T efi_runtime_fixup_exception
ffffffc080036568 T __efi_rt_asm_wrapper
ffffffc0800365e8 T __efi_rt_asm_recover
ffffffc080036618 T raw_pci_read
ffffffc080036698 T raw_pci_write
ffffffc080036718 T __traceiter_instruction_emulation
ffffffc080036790 T __probestub_instruction_emulation
ffffffc080036798 t trace_event_raw_event_instruction_emulation
ffffffc08003688c t perf_trace_instruction_emulation
ffffffc0800369c8 t __bpf_trace_instruction_emulation
ffffffc0800369e8 T try_emulate_armv8_deprecated
ffffffc080036b04 t trace_raw_output_instruction_emulation
ffffffc080036b74 t try_emulate_swp
ffffffc080036fc8 t try_emulate_cp15_barrier
ffffffc080037038 t cp15_barrier_set_hw_mode
ffffffc080037070 t cp15barrier_handler
ffffffc080037358 t try_emulate_setend
ffffffc0800373ec t setend_set_hw_mode
ffffffc080037458 t compat_setend_handler
ffffffc0800375bc t run_all_insn_set_hw_mode
ffffffc080037714 t emulation_proc_handler
ffffffc08003785c t enable_insn_hw_mode
ffffffc0800378a0 t disable_insn_hw_mode
ffffffc08003792c t native_steal_clock
ffffffc080037938 t para_steal_clock
ffffffc08003799c t stolen_time_cpu_online
ffffffc080037a94 t stolen_time_cpu_down_prepare
ffffffc080037af0 T elf_core_extra_phdrs
ffffffc080037bb4 T elf_core_write_extra_phdrs
ffffffc080037cdc T elf_core_extra_data_size
ffffffc080037d44 T elf_core_write_extra_data
ffffffc080037ff0 T ptrauth_prctl_reset_keys
ffffffc0800382ec T ptrauth_set_enabled_keys
ffffffc0800383f0 T ptrauth_get_enabled_keys
ffffffc080038474 T mte_sync_tags
ffffffc080038590 T memcmp_pages
ffffffc08003865c T mte_enable_kernel_sync
ffffffc0800386ec T mte_enable_kernel_async
ffffffc080038760 T mte_enable_kernel_asymm
ffffffc080038850 T mte_check_tfsr_el1
ffffffc080038884 T mte_thread_init_user
ffffffc0800388f8 T set_mte_ctrl
ffffffc080038a1c T mte_thread_switch
ffffffc080038af8 T mte_cpu_setup
ffffffc080038b74 T mte_suspend_enter
ffffffc080038bc4 T mte_suspend_exit
ffffffc080038c58 T get_mte_ctrl
ffffffc080038c98 T mte_ptrace_copy_tags
ffffffc080039260 t uaccess_ttbr0_enable
ffffffc0800392a8 t uaccess_ttbr0_disable
ffffffc0800392ec t register_mte_tcf_preferred_sysctl
ffffffc0800393b4 T mte_probe_user_range
ffffffc08003950c t put_page
ffffffc0800395a0 t mte_tcf_preferred_show
ffffffc080039634 t mte_tcf_preferred_store
ffffffc080039774 t offset_to_ptr
ffffffc080039784 T alloc_insn_page
ffffffc0800397f0 T __kretprobe_trampoline
ffffffc0800398bc T arch_uprobe_copy_ixol
ffffffc080039974 T uprobe_get_swbp_addr
ffffffc080039980 T arch_uprobe_analyze_insn
ffffffc0800399f4 T arch_uprobe_pre_xol
ffffffc080039a30 T arch_uprobe_post_xol
ffffffc080039a80 T arch_uprobe_xol_was_trapped
ffffffc080039a98 T arch_uprobe_skip_sstep
ffffffc080039afc T arch_uprobe_abort_xol
ffffffc080039b2c T arch_uretprobe_is_alive
ffffffc080039b50 T arch_uretprobe_hijack_return_addr
ffffffc080039b68 T arch_uprobe_exception_notify
ffffffc080039b74 t uprobe_breakpoint_handler
ffffffc080039b9c t uprobe_single_step_handler
ffffffc080039be8 t __secondary_switched
ffffffc080039cac t __secondary_too_slow
ffffffc080039cbc t set_cpu_boot_mode_flag
ffffffc080039ce8 T arch_sync_dma_for_device
ffffffc080039d1c T arch_sync_dma_for_cpu
ffffffc080039d58 T arch_dma_prep_coherent
ffffffc080039d98 T arch_teardown_dma_ops
ffffffc080039da4 T arch_setup_dma_ops
ffffffc080039e9c T fixup_exception
ffffffc080039f84 T __ptep_set_access_flags
ffffffc08003a084 T do_mem_abort
ffffffc08003a19c t die_kernel_fault
ffffffc08003a228 T do_sp_pc_abort
ffffffc08003a2a8 t debug_exception_enter
ffffffc08003a2c0 t debug_exception_exit
ffffffc08003a2d8 T do_debug_exception
ffffffc08003a418 T vma_alloc_zeroed_movable_folio
ffffffc08003a460 T tag_clear_highpage
ffffffc08003a52c t do_bad
ffffffc08003a538 t do_sea
ffffffc08003a688 t do_tag_check_fault
ffffffc08003a6bc t do_alignment_fault
ffffffc08003a6dc t do_bad_area
ffffffc08003a7b8 t set_thread_esr
ffffffc08003a848 t __do_kernel_fault
ffffffc08003aac8 t vma_end_read
ffffffc08003aafc t fault_signal_pending
ffffffc08003ab44 t mmap_read_unlock
ffffffc08003ab84 t trace_android_rvh_die_kernel_fault
ffffffc08003abbc t mem_abort_decode
ffffffc08003ad28 t show_pte
ffffffc08003af40 T pfn_is_map_memory
ffffffc08003af78 T free_initmem
ffffffc08003afec T dump_mem_limit
ffffffc08003b034 T caches_clean_inval_pou
ffffffc08003b034 T __pi_caches_clean_inval_pou
ffffffc08003b0b8 T caches_clean_inval_user_pou
ffffffc08003b19c T icache_inval_pou
ffffffc08003b1e0 T dcache_clean_inval_poc
ffffffc08003b1e0 T __pi_dcache_clean_inval_poc
ffffffc08003b218 T dcache_clean_pou
ffffffc08003b258 T dcache_inval_poc
ffffffc08003b258 T __pi_dcache_inval_poc
ffffffc08003b2b0 T dcache_clean_poc
ffffffc08003b2b0 T __pi_dcache_clean_poc
ffffffc08003b2e8 T dcache_clean_pop
ffffffc08003b2e8 T __pi_dcache_clean_pop
ffffffc08003b410 T copy_highpage
ffffffc08003b58c T copy_user_highpage
ffffffc08003b5c4 T sync_icache_aliases
ffffffc08003b618 T copy_to_user_page
ffffffc08003b6a8 T __sync_icache_dcache
ffffffc08003b7ac T flush_dcache_folio
ffffffc08003b7e8 T flush_dcache_page
ffffffc08003b834 T arch_wb_cache_pmem
ffffffc08003b85c T arch_invalidate_pmem
ffffffc08003b88c T kvm_init_ioremap_services
ffffffc08003ba44 T ioremap_phys_range_hook
ffffffc08003bdbc T iounmap_phys_range_hook
ffffffc08003c080 T ioremap_prot
ffffffc08003c0f8 T arch_memremap_can_ram_remap
ffffffc08003c140 T mem_encrypt_active
ffffffc08003c158 T kvm_init_memshare_services
ffffffc08003c218 T set_memory_encrypted
ffffffc08003c244 t set_memory_xcrypted
ffffffc08003c404 T set_memory_decrypted
ffffffc08003c444 T valid_phys_addr_range
ffffffc08003c488 T valid_mmap_phys_addr_range
ffffffc08003c4a0 T vm_get_page_prot
ffffffc08003c4cc T pgd_alloc
ffffffc08003c4f8 T pgd_free
ffffffc08003c520 T set_swapper_pgd
ffffffc08003c5cc T phys_mem_access_prot
ffffffc08003c640 T pgattr_change_is_safe
ffffffc08003c6a8 T create_kpti_ng_temp_pgd
ffffffc08003ce30 t pgd_pgtable_alloc
ffffffc08003cf40 t update_mapping_prot
ffffffc08003d074 T mark_rodata_ro
ffffffc08003d0d0 T pmd_set_huge
ffffffc08003d164 T vmemmap_free
ffffffc08003d1d4 t unmap_hotplug_range
ffffffc08003d68c t free_empty_tables
ffffffc08003da44 T pud_set_huge
ffffffc08003db94 T pud_clear_huge
ffffffc08003dc98 T pmd_clear_huge
ffffffc08003dce0 T pmd_free_pte_page
ffffffc08003dd98 T pud_free_pmd_page
ffffffc08003e008 T arch_get_mappable_range
ffffffc08003e02c T arch_add_memory
ffffffc08003e19c t __pgd_pgtable_alloc
ffffffc08003e200 T arch_remove_memory
ffffffc08003e2a8 T ptep_modify_prot_start
ffffffc08003e36c T ptep_modify_prot_commit
ffffffc08003e4ac t prevent_bootmem_remove_notifier
ffffffc08003e600 T verify_cpu_asid_bits
ffffffc08003e6a0 T check_and_switch_context
ffffffc08003e960 t new_context
ffffffc08003ec84 T arm64_mm_context_get
ffffffc08003ee44 T arm64_mm_context_put
ffffffc08003ef40 T post_ttbr_update_workaround
ffffffc08003ef54 T cpu_do_switch_mm
ffffffc08003efd0 t asids_update_limit
ffffffc08003f0a0 t asids_init
ffffffc08003f204 T cpu_do_suspend
ffffffc08003f258 T cpu_do_resume
ffffffc08003f324 T can_set_direct_map
ffffffc08003f348 T set_memory_ro
ffffffc08003f36c t change_memory_common
ffffffc08003f584 T set_memory_rw
ffffffc08003f5ac T set_memory_nx
ffffffc08003f5d4 T set_memory_x
ffffffc08003f5fc T set_memory_valid
ffffffc08003f760 T set_direct_map_invalid_noflush
ffffffc08003f808 t change_page_range
ffffffc08003f85c T set_direct_map_default_noflush
ffffffc08003f90c T kernel_page_present
ffffffc08003fa00 T __set_fixmap
ffffffc08003fb4c T __contpte_try_fold
ffffffc08003fc58 t contpte_convert
ffffffc08003fe20 T __contpte_try_unfold
ffffffc08003fe64 T contpte_ptep_get
ffffffc08003fed0 T contpte_ptep_get_lockless
ffffffc08003ffac T contpte_set_ptes
ffffffc080040218 T contpte_clear_full_ptes
ffffffc080040328 T contpte_get_and_clear_full_ptes
ffffffc0800404a8 T contpte_ptep_test_and_clear_young
ffffffc08004052c T contpte_ptep_clear_flush_young
ffffffc0800405d4 t __flush_tlb_range_nosync
ffffffc08004080c T contpte_wrprotect_ptes
ffffffc08004097c T contpte_clear_young_dirty_ptes
ffffffc080040a90 T contpte_ptep_set_access_flags
ffffffc080040dd4 T kvm_init_memrelinquish_services
ffffffc080040e9c t kvm_page_relinquish
ffffffc080040f7c T page_relinquish
ffffffc080040fc0 T post_page_relinquish_tlb_inv
ffffffc080041014 T note_page
ffffffc080041374 T ptdump_walk
ffffffc080041420 T ptdump_check_wx
ffffffc080041510 T mte_allocate_tag_storage
ffffffc080041540 T mte_free_tag_storage
ffffffc080041560 T mte_save_tags
ffffffc08004165c T mte_restore_tags
ffffffc08004173c T mte_invalidate_tags
ffffffc08004176c T mte_invalidate_tags_area
ffffffc0800418f8 T arch_prepare_to_swap
ffffffc080041a00 T arch_swap_restore
ffffffc080041a98 T dummy_tramp
ffffffc080041aa8 T ex_handler_bpf
ffffffc080041ad8 T bpf_int_jit_compile
ffffffc080042094 t build_prologue
ffffffc0800423d4 t build_body
ffffffc0800444c0 t build_epilogue
ffffffc0800446b4 t build_plt
ffffffc080044790 t jit_fill_hole
ffffffc0800447f8 t bpf_jit_dump
ffffffc080044878 t bpf_jit_binary_lock_ro
ffffffc0800448d8 T bpf_jit_supports_kfunc_call
ffffffc0800448e4 T bpf_jit_alloc_exec_limit
ffffffc0800448f4 T bpf_jit_alloc_exec
ffffffc080044918 T bpf_jit_free_exec
ffffffc080044938 T bpf_jit_supports_subprog_tailcalls
ffffffc080044944 T arch_prepare_bpf_trampoline
ffffffc080044b2c t prepare_trampoline
ffffffc0800456c0 T bpf_arch_text_poke
ffffffc08004590c t emit_a64_mov_i
ffffffc080045a6c t emit_call
ffffffc080045b5c t emit_a64_mov_i64
ffffffc080045d14 t invoke_bpf_prog
ffffffc080046140 T __traceiter_kvm_userspace_exit
ffffffc0800461b8 T __probestub_kvm_userspace_exit
ffffffc0800461c0 T __traceiter_kvm_vcpu_wakeup
ffffffc080046240 T __probestub_kvm_vcpu_wakeup
ffffffc080046248 T __traceiter_kvm_set_irq
ffffffc0800462c8 T __probestub_kvm_set_irq
ffffffc0800462d0 T __traceiter_kvm_ack_irq
ffffffc080046348 T __probestub_kvm_ack_irq
ffffffc080046350 T __traceiter_kvm_mmio
ffffffc0800463e0 T __probestub_kvm_mmio
ffffffc0800463e8 T __traceiter_kvm_fpu
ffffffc080046450 T __probestub_kvm_fpu
ffffffc080046458 T __traceiter_kvm_halt_poll_ns
ffffffc0800464e8 T __probestub_kvm_halt_poll_ns
ffffffc0800464f0 T __traceiter_kvm_dirty_ring_push
ffffffc080046570 T __probestub_kvm_dirty_ring_push
ffffffc080046578 T __traceiter_kvm_dirty_ring_reset
ffffffc0800465e0 T __probestub_kvm_dirty_ring_reset
ffffffc0800465e8 T __traceiter_kvm_dirty_ring_exit
ffffffc080046650 T __probestub_kvm_dirty_ring_exit
ffffffc080046658 T __traceiter_kvm_unmap_hva_range
ffffffc0800466d0 T __probestub_kvm_unmap_hva_range
ffffffc0800466d8 T __traceiter_kvm_set_spte_hva
ffffffc080046740 T __probestub_kvm_set_spte_hva
ffffffc080046748 T __traceiter_kvm_age_hva
ffffffc0800467c0 T __probestub_kvm_age_hva
ffffffc0800467c8 T __traceiter_kvm_test_age_hva
ffffffc080046830 T __probestub_kvm_test_age_hva
ffffffc080046838 t trace_event_raw_event_kvm_userspace_exit
ffffffc0800468e8 t perf_trace_kvm_userspace_exit
ffffffc0800469d4 t trace_event_raw_event_kvm_vcpu_wakeup
ffffffc080046aa0 t perf_trace_kvm_vcpu_wakeup
ffffffc080046ba0 t trace_event_raw_event_kvm_set_irq
ffffffc080046c60 t perf_trace_kvm_set_irq
ffffffc080046d54 t trace_event_raw_event_kvm_ack_irq
ffffffc080046e04 t perf_trace_kvm_ack_irq
ffffffc080046ef0 t trace_event_raw_event_kvm_mmio
ffffffc080046fd4 t perf_trace_kvm_mmio
ffffffc0800470f8 t trace_event_raw_event_kvm_fpu
ffffffc0800471a4 t perf_trace_kvm_fpu
ffffffc080047284 t trace_event_raw_event_kvm_halt_poll_ns
ffffffc080047354 t perf_trace_kvm_halt_poll_ns
ffffffc08004745c t trace_event_raw_event_kvm_dirty_ring_push
ffffffc080047530 t perf_trace_kvm_dirty_ring_push
ffffffc080047638 t trace_event_raw_event_kvm_dirty_ring_reset
ffffffc0800476f8 t perf_trace_kvm_dirty_ring_reset
ffffffc0800477ec t trace_event_raw_event_kvm_dirty_ring_exit
ffffffc08004789c t perf_trace_kvm_dirty_ring_exit
ffffffc080047980 t trace_event_raw_event_kvm_unmap_hva_range
ffffffc080047a30 t perf_trace_kvm_unmap_hva_range
ffffffc080047b1c t trace_event_raw_event_kvm_set_spte_hva
ffffffc080047bc8 t perf_trace_kvm_set_spte_hva
ffffffc080047ca8 t trace_event_raw_event_kvm_age_hva
ffffffc080047d58 t perf_trace_kvm_age_hva
ffffffc080047e44 t trace_event_raw_event_kvm_test_age_hva
ffffffc080047ef0 t perf_trace_kvm_test_age_hva
ffffffc080047fd0 t __bpf_trace_kvm_userspace_exit
ffffffc080047ff8 t __bpf_trace_kvm_vcpu_wakeup
ffffffc080048020 t __bpf_trace_kvm_set_irq
ffffffc08004804c t __bpf_trace_kvm_ack_irq
ffffffc080048074 t __bpf_trace_kvm_mmio
ffffffc08004809c t __bpf_trace_kvm_fpu
ffffffc0800480c0 t __bpf_trace_kvm_halt_poll_ns
ffffffc0800480f0 t __bpf_trace_kvm_dirty_ring_push
ffffffc080048114 t __bpf_trace_kvm_dirty_ring_reset
ffffffc080048134 t __bpf_trace_kvm_dirty_ring_exit
ffffffc080048154 t __bpf_trace_kvm_unmap_hva_range
ffffffc080048174 t __bpf_trace_kvm_set_spte_hva
ffffffc080048194 t __bpf_trace_kvm_age_hva
ffffffc0800481b4 t __bpf_trace_kvm_test_age_hva
ffffffc0800481d4 W kvm_arch_guest_memory_reclaimed
ffffffc0800481dc T kvm_is_zone_device_page
ffffffc08004820c T kvm_pfn_to_refcounted_page
ffffffc08004836c T vcpu_load
ffffffc0800483fc T vcpu_put
ffffffc080048470 T kvm_make_vcpus_request_mask
ffffffc0800485c0 t kvm_make_vcpu_request
ffffffc0800486f8 T kvm_make_all_cpus_request_except
ffffffc080048848 T kvm_make_all_cpus_request
ffffffc080048870 T kvm_flush_remote_tlbs
ffffffc0800488cc T kvm_flush_remote_tlbs_range
ffffffc080048934 T kvm_flush_remote_tlbs_memslot
ffffffc0800489a4 T __kvm_mmu_topup_memory_cache
ffffffc080048ad0 t mmu_memory_cache_alloc_obj
ffffffc080048b10 T kvm_mmu_topup_memory_cache
ffffffc080048b38 T kvm_mmu_memory_cache_nr_free_objects
ffffffc080048b44 T kvm_mmu_free_memory_cache
ffffffc080048bc0 T kvm_mmu_memory_cache_alloc
ffffffc080048c10 T kvm_destroy_vcpus
ffffffc080048d0c T kvm_mmu_invalidate_begin
ffffffc080048d50 T kvm_mmu_invalidate_end
ffffffc080048d74 W kvm_arch_post_init_vm
ffffffc080048d80 W kvm_arch_pre_destroy_vm
ffffffc080048d94 T kvm_get_kvm
ffffffc080048dfc T kvm_get_kvm_safe
ffffffc080048e9c T kvm_put_kvm
ffffffc080049418 T kvm_put_kvm_no_destroy
ffffffc08004948c T __kvm_set_memory_region
ffffffc0800496c8 t access_ok
ffffffc080049704 t id_to_memslot
ffffffc080049778 t kvm_set_memslot
ffffffc080049c64 t kvm_check_memslot_overlap
ffffffc080049da4 T kvm_set_memory_region
ffffffc080049e00 T gfn_to_memslot
ffffffc080049ea4 T kvm_vcpu_gfn_to_memslot
ffffffc080049f78 T kvm_is_visible_gfn
ffffffc08004a03c T kvm_vcpu_is_visible_gfn
ffffffc08004a128 T kvm_host_page_size
ffffffc08004a1d8 T kvm_vcpu_gfn_to_hva_prot
ffffffc08004a2ec T gfn_to_hva_memslot
ffffffc08004a338 T gfn_to_hva
ffffffc08004a418 T kvm_vcpu_gfn_to_hva
ffffffc08004a51c T gfn_to_hva_memslot_prot
ffffffc08004a57c T gfn_to_hva_prot
ffffffc08004a66c T hva_to_pfn
ffffffc08004aa78 T __gfn_to_pfn_memslot
ffffffc08004ab6c T gfn_to_pfn_prot
ffffffc08004acbc T gfn_to_pfn_memslot
ffffffc08004ad54 T gfn_to_pfn_memslot_atomic
ffffffc08004ae44 T kvm_vcpu_gfn_to_pfn_atomic
ffffffc08004afec T gfn_to_pfn
ffffffc08004b114 T kvm_vcpu_gfn_to_pfn
ffffffc08004b264 T gfn_to_page_many_atomic
ffffffc08004b2f8 T gfn_to_page
ffffffc08004b33c T kvm_release_pfn
ffffffc08004b378 T kvm_release_pfn_dirty
ffffffc08004b3a8 T kvm_release_pfn_clean
ffffffc08004b47c T kvm_vcpu_map
ffffffc08004b5fc T kvm_vcpu_unmap
ffffffc08004b758 T kvm_vcpu_mark_page_dirty
ffffffc08004b844 T kvm_release_page_clean
ffffffc08004b904 t put_page
ffffffc08004b998 T kvm_release_page_dirty
ffffffc08004bac0 T kvm_set_pfn_dirty
ffffffc08004bc04 T kvm_set_pfn_accessed
ffffffc08004bd1c T kvm_read_guest_page
ffffffc08004bdd4 t __kvm_read_guest_page
ffffffc08004bef8 T kvm_vcpu_read_guest_page
ffffffc08004bfe0 T kvm_read_guest
ffffffc08004c120 T kvm_vcpu_read_guest
ffffffc08004c288 T kvm_vcpu_read_guest_atomic
ffffffc08004c488 T kvm_write_guest_page
ffffffc08004c554 t __kvm_write_guest_page
ffffffc08004c6a4 T kvm_vcpu_write_guest_page
ffffffc08004c79c T kvm_write_guest
ffffffc08004c8e0 T kvm_vcpu_write_guest
ffffffc08004ca4c T kvm_gfn_to_hva_cache_init
ffffffc08004ca7c t __kvm_gfn_to_hva_cache_init
ffffffc08004cbd8 T kvm_write_guest_offset_cached
ffffffc08004cd68 T mark_page_dirty_in_slot
ffffffc08004ce84 T kvm_write_guest_cached
ffffffc08004ceac T kvm_read_guest_offset_cached
ffffffc08004d02c T kvm_read_guest_cached
ffffffc08004d054 T kvm_clear_guest
ffffffc08004d1b8 T kvm_get_running_vcpu
ffffffc08004d220 T mark_page_dirty
ffffffc08004d2e4 T kvm_sigset_activate
ffffffc08004d31c T kvm_sigset_deactivate
ffffffc08004d360 T kvm_vcpu_block
ffffffc08004d454 t kvm_vcpu_check_block
ffffffc08004d52c T kvm_vcpu_halt
ffffffc08004d9e0 T kvm_vcpu_wake_up