-
Notifications
You must be signed in to change notification settings - Fork 0
/
System.map
executable file
·16734 lines (16734 loc) · 472 KB
/
System.map
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
00000024 A cpu_ca15_suspend_size
00000024 A cpu_ca8_suspend_size
00000024 A cpu_v7_bpiall_suspend_size
00000024 A cpu_v7_suspend_size
0000002c A cpu_ca9mp_suspend_size
c0004000 A swapper_pg_dir
c0008000 T _text
c0008000 T stext
c0008090 t __create_page_tables
c00081a0 t __turn_mmu_on_loc
c00081ac t __enable_mmu
c00081c0 t __fixup_pv_table
c0008214 t __vet_atags
c0100000 T __idmap_text_start
c0100000 T __turn_mmu_on
c0100000 T _stext
c0100020 t __turn_mmu_on_end
c0100020 T cpu_resume_mmu
c0100044 T cpu_ca15_reset
c0100044 T cpu_ca8_reset
c0100044 T cpu_ca9mp_reset
c0100044 T cpu_v7_bpiall_reset
c0100044 T cpu_v7_reset
c0100060 T __idmap_text_end
c0101000 T __exception_text_start
c0101000 T __hyp_idmap_text_end
c0101000 T __hyp_idmap_text_start
c0101000 T asm_do_IRQ
c0101004 T do_undefinstr
c01011b0 T handle_fiq_as_nmi
c010121c T do_DataAbort
c01012d4 T do_PrefetchAbort
c0101370 t gic_handle_irq
c01013f0 T __do_softirq
c01013f0 T __exception_text_end
c01013f0 T __irqentry_text_end
c01013f0 T __irqentry_text_start
c01013f0 T __softirqentry_text_start
c01015e0 t __do_fixup_smp_on_up
c01015e0 T __softirqentry_text_end
c01015f4 T fixup_smp
c010160c t __fixup_a_pv_table
c0101660 T fixup_pv_table
c0101678 T lookup_processor_type
c010168c t __lookup_processor_type
c01016c4 t __lookup_processor_type_data
c01016d0 t __error_lpae
c01016dc t str_lpae
c0101720 t __error_p
c010173c t str_p1
c0101773 t str_p2
c0101778 t __error
c0101780 t rootfs_mount
c01017c8 T name_to_dev_t
c01019d4 T calibrate_delay
c0101e60 t vfp_enable
c0101e74 t vfp_dying_cpu
c0101e8c t vfp_starting_cpu
c0101ea0 t vfp_raise_sigfpe
c0101f0c t vfp_cpu_pm_notifier
c0101fac t vfp_emulate_instruction.constprop.0
c0101ff0 t vfp_raise_exceptions
c0102118 T VFP_bounce
c0102200 T vfp_disable
c010221c T vfp_sync_hwstate
c0102254 t vfp_notifier
c0102314 T vfp_flush_hwstate
c0102344 T vfp_preserve_user_clear_hwstate
c01023b0 T vfp_restore_user_hwstate
c0102410 T do_vfp
c0102420 T vfp_null_entry
c0102428 T vfp_support_entry
c01024a0 t vfp_reload_hw
c01024dc t vfp_hw_state_valid
c01024f4 t look_for_VFP_exceptions
c0102518 t skip
c010251c t process_exception
c0102528 T vfp_save_state
c0102564 t vfp_current_hw_state_address
c0102568 T vfp_get_float
c0102670 T vfp_put_float
c0102778 T vfp_get_double
c010288c T vfp_put_double
c0102994 t vfp_propagate_nan
c0102a90 t vfp_single_multiply
c0102b7c t vfp_single_ftosi
c0102d24 t vfp_single_ftosiz
c0102d2c t vfp_single_ftoui
c0102ed4 t vfp_single_ftouiz
c0102edc t vfp_single_fneg
c0102ef4 t vfp_single_fabs
c0102f0c t vfp_single_fcpy
c0102f24 t vfp_single_normalise_denormal
c0102f50 t vfp_single_add
c010311c t vfp_single_fcvtd
c0103278 t vfp_compare.constprop.0
c0103368 t vfp_single_fcmp
c0103370 t vfp_single_fcmpe
c0103378 t vfp_single_fcmpz
c0103384 t vfp_single_fcmpez
c0103390 T __vfp_single_normaliseround
c010352c t vfp_single_fdiv
c01037bc t vfp_single_fnmul
c01038b0 t vfp_single_fadd
c0103998 t vfp_single_fsub
c01039a0 t vfp_single_fmul
c0103a88 t vfp_single_fsito
c0103acc t vfp_single_fuito
c0103af8 t vfp_single_multiply_accumulate.constprop.0
c0103c70 t vfp_single_fmac
c0103c88 t vfp_single_fmsc
c0103ca0 t vfp_single_fnmac
c0103cb8 t vfp_single_fnmsc
c0103cd0 T vfp_estimate_sqrt_significand
c0103db0 t vfp_single_fsqrt
c0103fa8 T vfp_single_cpdo
c01040d8 t vfp_propagate_nan
c01041ec t vfp_double_multiply
c0104390 t vfp_double_normalise_denormal
c01043ec t vfp_double_fneg
c0104410 t vfp_double_fabs
c0104434 t vfp_double_fcpy
c0104454 t vfp_double_add
c0104684 t vfp_double_ftosi
c01048b4 t vfp_double_ftosiz
c01048bc t vfp_double_ftoui
c0104b0c t vfp_double_ftouiz
c0104b14 t vfp_double_fcvts
c0104c78 t vfp_compare.constprop.0
c0104dd8 t vfp_double_fcmp
c0104de0 t vfp_double_fcmpe
c0104de8 t vfp_double_fcmpz
c0104df4 t vfp_double_fcmpez
c0104e00 T vfp_double_normaliseround
c01050a8 t vfp_double_fdiv
c010566c t vfp_double_fsub
c01057ac t vfp_double_fnmul
c01058ec t vfp_double_multiply_accumulate
c0105ac8 t vfp_double_fnmsc
c0105aec t vfp_double_fnmac
c0105b10 t vfp_double_fmsc
c0105b34 t vfp_double_fmac
c0105b58 t vfp_double_fadd
c0105c8c t vfp_double_fmul
c0105dc0 t vfp_double_fsito
c0105e28 t vfp_double_fuito
c0105e78 t vfp_double_fsqrt
c01063b4 T vfp_double_cpdo
c01064fc T elf_check_arch
c0106588 T elf_set_personality
c010661c T arm_elf_read_implies_exec
c0106660 t __ret_fast_syscall
c0106660 t ret_fast_syscall
c01066b4 t fast_work_pending
c01066c0 t slow_work_pending
c01066e0 t ret_slow_syscall
c01066e0 T ret_to_user
c01066e4 T ret_to_user_from_irq
c01066fc t no_work_pending
c0106734 T ret_from_fork
c0106760 T vector_bhb_loop8_swi
c01067a0 T vector_bhb_bpiall_swi
c01067c0 T vector_swi
c0106810 t local_restart
c0106850 t __sys_trace
c0106890 t __sys_trace_return_nosave
c01068a0 t __sys_trace_return
c01068c0 t __cr_alignment
c01068c4 T sys_call_table
c0106f04 t sys_syscall
c0106f34 t sys_sigreturn_wrapper
c0106f40 t sys_rt_sigreturn_wrapper
c0106f4c t sys_statfs64_wrapper
c0106f58 t sys_fstatfs64_wrapper
c0106f64 t sys_mmap2
c0106f6c T arch_show_interrupts
c0106fa4 T handle_IRQ
c0106fb8 T arm_check_condition
c0106fe4 t sigpage_mremap
c0107008 T arch_cpu_idle
c0107040 T arch_cpu_idle_prepare
c0107048 T arch_cpu_idle_enter
c010704c T arch_cpu_idle_exit
c0107050 T __show_regs
c0107250 T show_regs
c0107260 T exit_thread
c0107274 T flush_thread
c01072e8 T release_thread
c01072ec T copy_thread
c01073b8 T dump_task_regs
c01073e0 T dump_fpu
c010741c T get_wchan
c01074c8 T arch_randomize_brk
c01074d4 T get_gate_vma
c01074e0 T in_gate_area
c0107510 T in_gate_area_no_mm
c010751c T arch_vma_name
c010753c T arch_setup_additional_pages
c0107668 t ptrace_hbptriggered
c01076ec t gpr_set
c0107800 t fpa_set
c01078a4 t vfp_set
c0107a04 t gpr_get
c0107aa0 t fpa_get
c0107b3c t vfp_get
c0107c68 t ptrace_hbp_create
c0107ce8 t ptrace_sethbpregs
c0107e58 T regs_query_register_offset
c0107e9c T regs_query_register_name
c0107ec8 T regs_within_kernel_stack
c0107ee4 T regs_get_kernel_stack_nth
c0107f08 T ptrace_disable
c0107f0c T ptrace_break
c0107f48 t break_trap
c0107f6c T clear_ptrace_hw_breakpoint
c0107f7c T flush_ptrace_hw_breakpoint
c0107fb4 T task_user_regset_view
c0107fc0 T arch_ptrace
c0108438 T syscall_trace_enter
c0108508 T syscall_trace_exit
c01085b0 t __soft_restart
c010861c T _soft_restart
c0108654 T soft_restart
c0108660 T machine_shutdown
c0108664 T machine_halt
c010866c T machine_power_off
c0108688 T machine_restart
c01086fc t c_start
c0108714 t c_next
c0108734 t c_stop
c0108738 T cpu_architecture
c0108750 t c_show
c0108968 T cpu_init
c01089bc T lookup_processor
c01089e4 t restore_vfp_context
c0108a78 t restore_sigframe
c0108c28 t preserve_vfp_context
c0108ca4 t setup_sigframe
c0108e7c t setup_return
c0109010 t do_signal
c0109404 T sys_sigreturn
c0109484 T sys_rt_sigreturn
c0109518 T do_work_pending
c01095c0 T get_signal_page
c0109688 T addr_limit_check_failed
c01096d8 T walk_stackframe
c0109710 T sys_arm_fadvise64_64
c0109730 t dummy_clock_access
c0109748 T read_persistent_clock64
c0109758 T read_boot_clock64
c0109768 T dump_backtrace_stm
c0109800 T show_stack
c0109814 T die
c0109a60 T arm_notify_die
c0109ab4 t bad_syscall
c0109b40 T is_valid_bugaddr
c0109b7c T register_undef_hook
c0109ba4 T unregister_undef_hook
c0109bcc T arm_syscall
c0109de4 T baddataabort
c0109e30 T spectre_bhb_update_vectors
c0109f00 t __pabt_invalid
c0109f10 t __dabt_invalid
c0109f20 t __irq_invalid
c0109f30 t __und_invalid
c0109f3c t common_invalid
c0109f60 t __dabt_svc
c0109fe0 t __irq_svc
c010a070 t __und_fault
c010a080 t __und_svc
c010a0f0 t __und_svc_fault
c010a0f8 t __und_svc_finish
c010a140 t __pabt_svc
c010a1e0 t __fiq_svc
c010a2a0 t __fiq_abt
c010a360 t __dabt_usr
c010a3a0 t __irq_usr
c010a420 t __und_usr
c010a488 t __und_usr_thumb
c010a4c8 t call_fpe
c010a5b0 t do_fpe
c010a5bc T no_fp
c010a5c0 t __und_usr_fault_32
c010a5c8 t __und_usr_fault_16_pan
c010a5d4 t __und_usr_fault_16
c010a600 t __pabt_usr
c010a648 T ret_from_exception
c010a660 t __fiq_usr
c010a6e8 T __switch_to
c010a730 T check_other_bugs
c010a748 T arm_cpuidle_simple_enter
c010a768 T arm_cpuidle_suspend
c010a780 T __cpu_suspend
c010a7ec t cpu_suspend_abort
c010a800 t cpu_resume_after_mmu
c010a80c T cpu_resume
c010a80c T cpu_resume_arm
c010a840 t no_hyp
c010a88c t _sleep_save_sp
c010a890 t mpidr_hash_ptr
c010a894 t cpu_suspend_alloc_sp
c010a93c T cpu_suspend
c010a9d4 T __cpu_suspend_save
c010aa80 t unwind_get_byte
c010aae4 t search_index
c010ab5c t unwind_pop_register
c010ab98 T __aeabi_unwind_cpp_pr0
c010ab9c T __aeabi_unwind_cpp_pr1
c010aba0 T __aeabi_unwind_cpp_pr2
c010aba4 T unwind_frame
c010b068 T unwind_backtrace
c010b148 T unwind_table_add
c010b1f0 T unwind_table_del
c010b220 T arch_match_cpu_phys_id
c010b244 t write_wb_reg
c010b574 t read_wb_reg
c010b8a0 t get_debug_arch
c010b8f0 t reset_ctrl_regs
c010bb34 t dbg_reset_online
c010bb4c t dbg_cpu_pm_notify
c010bb70 t core_has_mismatch_brps
c010bb98 t get_num_brps
c010bbb8 T arch_get_debug_arch
c010bbc8 T hw_breakpoint_slots
c010bc50 T arch_get_max_wp_len
c010bc60 T arch_install_hw_breakpoint
c010bda8 T arch_uninstall_hw_breakpoint
c010be50 t enable_single_step
c010be9c t hw_breakpoint_pending
c010c1e4 T arch_check_bp_in_kernelspace
c010c250 T arch_bp_generic_fields
c010c2e4 T arch_validate_hwbkpt_settings
c010c570 T hw_breakpoint_pmu_read
c010c574 T hw_breakpoint_exceptions_notify
c010c57c T perf_reg_value
c010c5cc T perf_reg_validate
c010c604 T perf_reg_abi
c010c610 T perf_get_regs_user
c010c640 t callchain_trace
c010c6a0 T perf_callchain_user
c010c860 T perf_callchain_kernel
c010c8d0 T perf_instruction_pointer
c010c914 T perf_misc_flags
c010c970 t armv7pmu_read_counter
c010c9d4 t armv7pmu_write_counter
c010ca2c t armv7pmu_start
c010ca50 t armv7pmu_stop
c010ca70 t armv7pmu_set_event_filter
c010cab0 t armv7pmu_reset
c010cb14 t armv7pmu_init
c010cb90 t armv7_read_num_pmnc_events
c010cba4 t venum_pre_pmresr
c010cbcc t clear_pmresrn_group
c010cbe4 t scorpion_map_event
c010cbfc t krait_map_event
c010cc18 t krait_map_event_no_branch
c010cc34 t armv7_a5_map_event
c010cc4c t armv7_a7_map_event
c010cc64 t armv7_a8_map_event
c010cc7c t armv7_a9_map_event
c010cc98 t armv7_a12_map_event
c010ccb4 t armv7_a15_map_event
c010ccd0 t armv7pmu_disable_event
c010cd34 t armv7pmu_enable_event
c010cdc0 t armv7pmu_handle_irq
c010cec4 t armv7_probe_num_events
c010cedc t armv7_a8_pmu_init
c010cf1c t armv7_a9_pmu_init
c010cf5c t armv7_a5_pmu_init
c010cf9c t armv7_a15_pmu_init
c010cfe8 t armv7_a7_pmu_init
c010d034 t armv7_a12_pmu_init
c010d080 t armv7_a17_pmu_init
c010d0b4 t scorpion_pmu_init
c010d118 t scorpion_mp_pmu_init
c010d17c t krait_pmu_init
c010d21c t event_show
c010d238 t armv7_pmu_device_probe
c010d254 t armv7pmu_get_event_idx
c010d2c4 t scorpion_pmu_get_event_idx
c010d378 t krait_pmu_get_event_idx
c010d444 t scorpion_read_pmresrn
c010d484 t scorpion_write_pmresrn
c010d4c4 t scorpion_pmu_enable_event
c010d5ec t krait_read_pmresrn
c010d620 t krait_write_pmresrn
c010d654 t krait_pmu_reset
c010d6c8 t scorpion_pmu_reset
c010d740 t scorpion_pmu_disable_event
c010d7f0 t krait_pmu_disable_event
c010d8a0 t krait_pmu_enable_event
c010d9b8 t scorpion_pmu_clear_event_idx
c010da00 t krait_pmu_clear_event_idx
c010da48 t vdso_mremap
c010da88 T arm_install_vdso
c010db14 T update_vsyscall
c010dbac T update_vsyscall_tz
c010dbe8 T atomic_io_modify_relaxed
c010dc0c T atomic_io_modify
c010dc40 T _memcpy_fromio
c010dc60 T _memcpy_toio
c010dc90 T _memset_io
c010dcbc T printhex8
c010dcc4 T printhex4
c010dccc T printhex2
c010dcd0 t printhex
c010dd08 t hexbuf
c010dd18 T printascii
c010dda8 T printch
c010de04 T debug_ll_addr
c010de54 t early_console_write
c010dea0 T __hyp_stub_install
c010deb4 T __hyp_stub_install_secondary
c010df30 t __hyp_stub_do_trap
c010df5c t __hyp_stub_exit
c010df64 T __hyp_set_vectors
c010df74 T __hyp_soft_restart
c010df84 T __hyp_reset_vectors
c010dfa0 t __hyp_stub_reset
c010dfa0 T __hyp_stub_vectors
c010dfa4 t __hyp_stub_und
c010dfa8 t __hyp_stub_svc
c010dfac t __hyp_stub_pabort
c010dfb0 t __hyp_stub_dabort
c010dfb4 t __hyp_stub_trap
c010dfb8 t __hyp_stub_irq
c010dfbc t __hyp_stub_fiq
c010dfc4 T __arm_smccc_smc
c010dfe4 T __arm_smccc_hvc
c010e004 T cpu_show_spectre_v1
c010e020 T spectre_v2_update_state
c010e044 T cpu_show_spectre_v2
c010e0cc T fixup_exception
c010e0f4 t do_bad
c010e0fc t __do_user_fault.constprop.0
c010e174 t __do_kernel_fault.part.0
c010e1e8 t do_page_fault
c010e4fc T do_bad_area
c010e570 t do_sect_fault
c010e580 t do_translation_fault
c010e618 T pfn_valid
c010e634 T set_section_perms
c010e720 t update_sections_early
c010e7d8 T mark_rodata_ro
c010e808 T set_kernel_text_rw
c010e844 T set_kernel_text_ro
c010e880 T free_tcmmem
c010e884 T free_initmem
c010e8f0 T free_initrd_mem
c010e988 T ioport_map
c010e990 T ioport_unmap
c010e994 t arm_coherent_dma_map_page
c010e9c8 t arm_dma_mapping_error
c010e9d8 t dma_cache_maint_page
c010ea2c t __dma_page_cpu_to_dev
c010eaa8 t arm_dma_sync_single_for_device
c010eaec t arm_dma_map_page
c010eb50 t pool_allocator_free
c010eb90 t pool_allocator_alloc
c010ec14 t __dma_free_buffer
c010ec40 t remap_allocator_free
c010ec74 t simple_allocator_free
c010ec80 t __dma_alloc
c010eeec t arm_coherent_dma_alloc
c010ef20 T arm_dma_alloc
c010ef60 T arm_dma_map_sg
c010f06c T arm_dma_unmap_sg
c010f0e4 T arm_dma_sync_sg_for_cpu
c010f14c T arm_dma_sync_sg_for_device
c010f1b4 t __dma_page_dev_to_cpu
c010f2a8 t arm_dma_sync_single_for_cpu
c010f2ec t arm_dma_unmap_page
c010f338 T arm_dma_get_sgtable
c010f3e0 t __arm_dma_free.constprop.0
c010f4e0 T arm_dma_free
c010f4e4 t arm_coherent_dma_free
c010f4e8 t __arm_dma_mmap.constprop.0
c010f580 T arm_dma_mmap
c010f5b4 t arm_coherent_dma_mmap
c010f5b8 t __dma_alloc_buffer.constprop.0
c010f69c t simple_allocator_alloc
c010f6e8 T arm_dma_supported
c010f770 t remap_allocator_alloc
c010f7e4 T arch_setup_dma_ops
c010f828 T arch_teardown_dma_ops
c010f82c t flush_icache_alias
c010f8b0 T arm_heavy_mb
c010f8fc T flush_cache_mm
c010f900 T flush_cache_range
c010f91c T flush_cache_page
c010f94c T flush_uprobe_xol_access
c010f998 T copy_to_user_page
c010fa20 T __flush_dcache_page
c010fa64 T __sync_icache_dcache
c010faf4 T flush_dcache_page
c010fbbc T flush_kernel_dcache_page
c010fbc0 T __flush_anon_page
c010fc9c T find_static_vm_vaddr
c010fce8 T ioremap_page
c010fcf8 T __check_vmalloc_seq
c010fd54 t unmap_area_sections
c010fe3c t __arm_ioremap_pfn_caller
c0110048 T __arm_ioremap_caller
c0110090 T __iounmap
c01100dc T __arm_ioremap_pfn
c01100f0 T ioremap
c0110114 T ioremap_cache
c0110114 T ioremap_cached
c0110138 T ioremap_wc
c011015c T __arm_ioremap_exec
c0110178 T arch_memremap_wb
c011019c T iounmap
c01101ac T arch_get_unmapped_area
c0110290 T arch_get_unmapped_area_topdown
c01103a8 T arch_mmap_rnd
c01103cc T arch_pick_mmap_layout
c0110494 T valid_phys_addr_range
c01104dc T valid_mmap_phys_addr_range
c01104f0 T pgd_alloc
c01105f8 T pgd_free
c01106d4 t pte_offset_late_fixmap
c01106f0 T tcm_init
c01106f4 T get_mem_type
c0110710 T __set_fixmap
c0110814 T phys_mem_access_prot
c0110854 t change_page_range
c0110888 t change_memory_common
c011098c T set_memory_ro
c0110998 T set_memory_rw
c01109a4 T set_memory_nx
c01109b0 T set_memory_x
c01109bc t do_alignment_ldrhstrh
c0110ac0 t do_alignment_ldrdstrd
c0110d1c t do_alignment_ldrstr
c0110e64 t cpu_is_v6_unaligned
c0110e88 t do_alignment_ldmstm
c01110e0 t alignment_get_thumb
c0111158 t alignment_proc_open
c011116c t alignment_proc_show
c011123c t alignment_proc_write
c01112dc t do_alignment
c0111b80 T v7_early_abort
c0111ba0 T v7_pabort
c0111bac T v7_invalidate_l1
c0111c10 T v7_flush_icache_all
c0111c1c T v7_flush_dcache_louis
c0111c34 T v7_flush_dcache_all
c0111c48 t start_flush_levels
c0111c4c t flush_levels
c0111c88 t loop1
c0111c8c t loop2
c0111ca8 t skip
c0111cb4 t finished
c0111cc8 T v7_flush_kern_cache_all
c0111ce0 T v7_flush_kern_cache_louis
c0111cf8 T v7_flush_user_cache_all
c0111cf8 T v7_flush_user_cache_range
c0111cfc T v7_coherent_kern_range
c0111cfc T v7_coherent_user_range
c0111d70 T v7_flush_kern_dcache_area
c0111da8 t v7_dma_inv_range
c0111df8 t v7_dma_clean_range
c0111e2c T v7_dma_flush_range
c0111e60 T v7_dma_map_area
c0111e70 T v7_dma_unmap_area
c0111e80 t v6_copy_user_highpage_nonaliasing
c0111f34 t v6_clear_user_highpage_nonaliasing
c0111fa4 T check_and_switch_context
c011228c T v7wbi_flush_user_tlb_range
c01122c8 T v7wbi_flush_kern_tlb_range
c0112300 T cpu_v7_switch_mm
c011231c T cpu_ca15_set_pte_ext
c011231c T cpu_ca8_set_pte_ext
c011231c T cpu_ca9mp_set_pte_ext
c011231c T cpu_v7_bpiall_set_pte_ext
c011231c T cpu_v7_set_pte_ext
c0112374 t v7_crval
c011237c T cpu_ca15_proc_init
c011237c T cpu_ca8_proc_init
c011237c T cpu_ca9mp_proc_init
c011237c T cpu_v7_bpiall_proc_init
c011237c T cpu_v7_proc_init
c0112380 T cpu_ca15_proc_fin
c0112380 T cpu_ca8_proc_fin
c0112380 T cpu_ca9mp_proc_fin
c0112380 T cpu_v7_bpiall_proc_fin
c0112380 T cpu_v7_proc_fin
c01123a0 T cpu_ca15_do_idle
c01123a0 T cpu_ca8_do_idle
c01123a0 T cpu_ca9mp_do_idle
c01123a0 T cpu_v7_bpiall_do_idle
c01123a0 T cpu_v7_do_idle
c01123ac T cpu_ca15_dcache_clean_area
c01123ac T cpu_ca8_dcache_clean_area
c01123ac T cpu_ca9mp_dcache_clean_area
c01123ac T cpu_v7_bpiall_dcache_clean_area
c01123ac T cpu_v7_dcache_clean_area
c01123e0 T cpu_v7_smc_switch_mm
c01123f8 T cpu_v7_hvc_switch_mm
c0112410 T cpu_ca15_switch_mm
c0112410 T cpu_v7_iciallu_switch_mm
c011241c T cpu_ca8_switch_mm
c011241c T cpu_ca9mp_switch_mm
c011241c T cpu_v7_bpiall_switch_mm
c0112428 t cpu_v7_name
c0112438 T cpu_ca15_do_suspend
c0112438 T cpu_ca8_do_suspend
c0112438 T cpu_v7_bpiall_do_suspend
c0112438 T cpu_v7_do_suspend
c0112468 T cpu_ca15_do_resume
c0112468 T cpu_ca8_do_resume
c0112468 T cpu_v7_bpiall_do_resume
c0112468 T cpu_v7_do_resume
c01124cc T cpu_ca9mp_do_suspend
c01124e4 T cpu_ca9mp_do_resume
c0112504 t __v7_ca5mp_setup
c0112504 t __v7_ca9mp_setup
c0112504 t __v7_cr7mp_setup
c011250c t __v7_b15mp_setup
c011250c t __v7_ca12mp_setup
c011250c t __v7_ca15mp_setup
c011250c t __v7_ca17mp_setup
c011250c t __v7_ca7mp_setup
c011252c t __ca8_errata
c0112530 t __ca9_errata
c0112534 t __ca15_errata
c0112538 t __ca12_errata
c011253c t __ca17_errata
c0112540 t __v7_pj4b_setup
c0112540 t __v7_setup
c0112558 t __v7_setup_cont
c01125b0 t __errata_finish
c011261c t __v7_setup_stack_ptr
c011263c t harden_branch_predictor_bpiall
c0112648 t harden_branch_predictor_iciallu
c0112654 t call_smc_arch_workaround_1
c0112664 t call_hvc_arch_workaround_1
c0112674 t cpu_v7_spectre_v2_init
c01128cc t cpu_v7_spectre_bhb_init
c01129d4 T cpu_v7_ca8_ibe
c0112a20 T cpu_v7_ca15_ibe
c0112a74 T cpu_v7_bugs_init
c0112a84 T outer_disable
c0112ad4 t l2c_write_sec
c0112b0c t __l2c_op_way
c0112b2c t l2c_unlock
c0112b54 t l2c_configure
c0112b6c t l2c_enable
c0112c08 t l2c_disable
c0112c40 t l2c_save
c0112c58 t l2c_resume
c0112c7c t l2c210_inv_range
c0112ce0 t l2c220_op_way
c0112d1c t l2c220_op_pa_range
c0112d80 t l2c220_inv_range
c0112e20 t l2c220_clean_range
c0112e9c t l2c220_flush_range
c0112f18 t l2c220_flush_all
c0112f2c t l2c220_sync
c0112f64 t l2c220_enable
c0112f7c t l2c310_starting_cpu
c0112f94 t l2c310_dying_cpu
c0112fac t l2c310_disable
c0112fd4 t aurora_pa_range
c011304c t aurora_inv_range
c0113054 t aurora_clean_range
c0113070 t aurora_flush_range
c011308c t aurora_flush_all
c01130c0 t aurora_cache_sync
c01130d8 t aurora_disable
c0113118 t aurora_save
c0113134 t tauros3_configure
c011315c t l2c220_unlock.part.0
c011315c t l2c310_unlock.part.0
c0113184 t l2c220_unlock
c0113194 t l2c310_configure
c0113224 t l2c310_resume
c0113254 t l2c310_unlock
c0113264 t bcm_inv_range
c01132c0 t l2c210_sync
c01132e8 t l2c210_clean_range
c011332c t bcm_clean_range
c0113388 t l2c210_flush_range
c01133cc t bcm_flush_range
c0113450 t l2c210_flush_all
c0113498 T l2c310_early_resume
c01134f8 t spc_recalc_rate
c0113548 t spc_round_rate
c01135c8 t ve_spc_irq_handler
c0113608 t ve_spc_waitforcompletion
c0113674 t spc_set_rate
c0113788 T ve_spc_global_wakeup_irq
c01137b0 T ve_spc_cpu_wakeup_irq
c01137f4 T ve_spc_set_resume_addr
c011382c T ve_spc_powerdown
c0113860 T ve_spc_cpu_in_wfi
c01138a0 t mmdrop_async_fn
c01138a8 t account_kernel_stack
c0113918 t mm_release
c01139cc t unshare_fd
c0113a38 t sighand_ctor
c0113a54 t mm_init.constprop.0
c0113b94 T nr_processes
c0113ba4 W arch_release_task_struct
c0113ba8 T free_task
c0113c38 T __put_task_struct
c0113d4c W arch_dup_task_struct
c0113d60 T set_task_stack_end_magic
c0113d74 T mm_alloc
c0113dac T __mmdrop
c0113e40 T mmput_async
c0113e9c T set_mm_exe_file
c0113ef0 t mmput_async_fn
c0113f78 T mmput
c0114014 T get_mm_exe_file
c0114068 T get_task_exe_file
c0114098 T get_task_mm
c01140d8 T mm_access
c0114158 T exit_mm_release
c0114178 T exec_mm_release
c0114198 T __cleanup_sighand
c01141dc t copy_process.part.0
c0115314 T SyS_set_tid_address
c0115314 T sys_set_tid_address
c0115338 T fork_idle
c01153b4 T _do_fork
c01156e8 T do_fork
c0115708 T kernel_thread
c0115738 T sys_fork
c0115760 T sys_vfork
c0115788 T SyS_clone
c0115788 T sys_clone
c01157ac T walk_process_tree
c0115838 T SyS_unshare
c0115838 T sys_unshare
c0115ae4 T unshare_files
c0115b44 T sysctl_max_threads
c0115bf0 t execdomains_proc_open
c0115c04 t execdomains_proc_show
c0115c1c T SyS_personality
c0115c1c T sys_personality
c0115c40 t no_blink
c0115c48 t spin_msec
c0115c80 t warn_count_show
c0115c9c t do_oops_enter_exit.part.0
c0115d1c t init_oops_id
c0115d58 W panic_smp_self_stop
c0115d5c W nmi_panic_self_stop
c0115d60 W crash_smp_send_stop
c0115d7c T nmi_panic
c0115dd4 T check_panic_on_warn
c0115e48 T print_tainted
c0115ed4 T test_taint
c0115f00 T get_taint
c0115f10 T add_taint
c0115f68 T oops_may_print
c0115f80 T oops_enter
c0115fa4 T print_oops_end_marker
c0115fc8 T oops_exit
c0115ff4 T warn_slowpath_fmt
c0116038 T warn_slowpath_fmt_taint
c011607c T warn_slowpath_null
c01160a0 t cpuhp_get_step
c01160c8 t cpuhp_issue_call.constprop.0
c0116278 T __cpuhp_state_add_instance_cpuslocked
c011631c T __cpuhp_state_add_instance
c0116320 T __cpuhp_setup_state_cpuslocked
c01164bc T __cpuhp_setup_state
c01164c8 T __cpuhp_state_remove_instance
c011657c T __cpuhp_remove_state_cpuslocked
c011663c T __cpuhp_remove_state
c0116640 T init_cpu_present
c0116654 T init_cpu_possible
c0116668 T init_cpu_online
c011667c T cpu_mitigations_off
c0116694 T cpu_mitigations_auto_nosmt
c01166b0 t will_become_orphaned_pgrp
c0116740 t find_alive_thread
c0116774 t oops_count_show
c0116790 t delayed_put_task_struct
c01167d4 t kill_orphaned_pgrp
c0116874 t task_stopped_code
c01168bc t child_wait_callback
c011691c T release_task
c0116c8c t wait_consider_task
c0117354 t do_wait
c01174e4 t kernel_waitid
c0117598 T task_rcu_dereference
c01175e0 T rcuwait_wake_up
c01175fc T is_current_pgrp_orphaned
c0117624 T do_exit
c0117e18 T make_task_dead
c0117e74 T complete_and_exit
c0117e90 T SyS_exit
c0117e90 T sys_exit
c0117ea0 T do_group_exit
c0117f48 T SyS_exit_group
c0117f48 T sys_exit_group
c0117f58 T __wake_up_parent
c0117f70 T SyS_waitid
c0117f70 T sys_waitid
c01181f0 T kernel_wait4
c0118300 T SyS_wait4
c0118300 T sys_wait4
c0118390 t ksoftirqd_should_run
c01183a0 t __local_bh_enable
c0118400 t wakeup_softirqd
c0118424 t __tasklet_hrtimer_trampoline
c0118470 T _local_bh_enable
c01184c4 t run_ksoftirqd
c0118500 T do_softirq
c0118578 T __local_bh_enable_ip
c0118644 T irq_enter
c01186a8 T irq_exit
c0118774 T raise_softirq_irqoff
c01187a8 T __raise_softirq_irqoff
c01187c4 T raise_softirq
c0118804 t tasklet_hi_action
c01188a8 t tasklet_action
c011894c T open_softirq
c0118960 T __tasklet_schedule
c01189c0 T __tasklet_hi_schedule
c0118a20 t __hrtimer_tasklet_trampoline
c0118a5c T tasklet_init
c0118a78 T tasklet_kill
c0118b00 T tasklet_hrtimer_init
c0118b48 W arch_dynirq_lower_bound
c0118b4c t r_stop
c0118b50 t __request_resource
c0118bc4 t __is_ram
c0118bcc t simple_align_resource
c0118bd4 t devm_resource_match
c0118be8 t devm_region_match
c0118c28 t iomem_open
c0118c58 t ioports_open
c0118c88 t r_show
c0118d54 t __release_child_resources
c0118dac t __insert_resource
c0118ebc t r_next
c0118f08 t r_start
c0118f60 t alloc_resource
c0118fac t free_resource
c011900c t find_next_iomem_res
c0119108 T release_child_resources
c0119114 T request_resource_conflict
c0119120 T request_resource
c0119138 T release_resource
c0119180 t devm_resource_release
c0119188 T walk_iomem_res_desc
c0119210 T walk_system_ram_res
c0119298 T walk_system_ram_range
c011934c W page_is_ram
c0119374 T region_intersects
c0119468 W arch_remove_reservations
c011946c t __find_resource
c01195f0 T allocate_resource
c01197b4 T lookup_resource
c01197d8 T insert_resource_conflict
c01197e4 T insert_resource
c01197fc T insert_resource_expand_to_fit
c011986c T remove_resource
c01198e8 T adjust_resource
c0119990 T resource_alignment
c01199cc T __request_region
c0119af8 T __release_region
c0119bb0 t devm_region_release
c0119bb8 T devm_request_resource
c0119c4c T devm_release_resource
c0119c84 T __devm_request_region
c0119d0c T __devm_release_region
c0119d68 T iomem_map_sanity_check
c0119e1c T iomem_is_exclusive
c0119ec4 T resource_list_create_entry
c0119f00 T resource_list_free
c0119f40 t proc_skip_spaces
c0119f80 t do_proc_douintvec_conv
c0119f9c t warn_sysctl_write
c0119fdc t proc_put_long
c011a0b0 t proc_put_char
c011a124 t do_proc_dointvec_conv
c011a190 t do_proc_dointvec_minmax_conv
c011a22c t do_proc_douintvec_minmax_conv
c011a28c t do_proc_dointvec_jiffies_conv
c011a304 t validate_coredump_safety.part.0
c011a328 t do_proc_dointvec_userhz_jiffies_conv
c011a380 t do_proc_dointvec_ms_jiffies_conv
c011a3e8 t proc_get_long.constprop.0
c011a504 t __do_proc_douintvec
c011a72c t proc_first_pos_non_zero_ignore
c011a778 t __do_proc_dointvec
c011aa2c t proc_do_cad_pid
c011aad8 T proc_dointvec_minmax
c011ab24 t proc_dointvec_minmax_sysadmin
c011ab74 T proc_dointvec
c011aba8 t sysrq_sysctl_handler
c011abe8 T proc_dointvec_jiffies
c011ac24 t __do_proc_doulongvec_minmax
c011aee8 T proc_doulongvec_minmax
c011af1c t proc_taint
c011b000 T proc_dostring
c011b27c t proc_dostring_coredump
c011b2b8 t proc_dointvec_minmax_coredump
c011b2f4 T proc_douintvec
c011b330 T proc_douintvec_minmax
c011b37c T proc_doulongvec_ms_jiffies_minmax
c011b3b4 T proc_dointvec_userhz_jiffies
c011b3f0 T proc_dointvec_ms_jiffies
c011b42c T proc_do_large_bitmap
c011b820 T SyS_sysctl
c011b820 T sys_sysctl
c011bac8 t cap_validate_magic
c011bc30 T SyS_capget
c011bc30 T sys_capget
c011bdfc T SyS_capset
c011bdfc T sys_capset
c011c014 T has_ns_capability
c011c030 T has_capability
c011c040 T has_ns_capability_noaudit
c011c05c T has_capability_noaudit
c011c06c T ns_capable
c011c0d0 T ns_capable_noaudit
c011c134 T capable
c011c144 T file_ns_capable
c011c1a0 T privileged_wrt_inode_uidgid
c011c1c4 T capable_wrt_inode_uidgid
c011c1f4 T ptracer_capable
c011c228 t ptrace_has_cap
c011c244 t __ptrace_may_access
c011c374 t ptrace_peek_siginfo
c011c530 t __ptrace_detach.part.0
c011c5c4 T ptrace_access_vm
c011c67c T __ptrace_link
c011c6e0 T __ptrace_unlink
c011c7f4 T ptrace_may_access
c011c808 T exit_ptrace
c011c898 T ptrace_readdata
c011c99c T ptrace_writedata
c011ca94 T SyS_ptrace
c011ca94 T sys_ptrace
c011ce8c T generic_ptrace_peekdata
c011cefc T generic_ptrace_pokedata
c011cf2c T ptrace_request
c011d6a4 t uid_hash_find
c011d6f0 T find_user
c011d71c T free_uid
c011d790 T alloc_uid
c011d848 t sig_handler_ignored
c011d884 t recalc_sigpending_tsk
c011d900 t __sigqueue_alloc
c011da28 t __sigqueue_free
c011da84 t __flush_itimer_signals
c011db48 t collect_signal
c011dc44 t flush_sigqueue_mask
c011dce0 t check_kill_permission
c011ddc8 t do_sigaltstack.constprop.0
c011defc T recalc_sigpending
c011df74 T next_signal
c011dfcc T task_set_jobctl_pending
c011e054 T task_clear_jobctl_trapping
c011e070 T task_clear_jobctl_pending
c011e09c t task_participate_group_stop
c011e184 T flush_sigqueue
c011e1c4 T flush_signals
c011e20c T flush_itimer_signals
c011e244 T ignore_signals
c011e26c T flush_signal_handlers
c011e2b8 T unhandled_signal
c011e2f4 T dequeue_signal
c011e444 T signal_wake_up_state
c011e468 t retarget_shared_pending
c011e4fc t __set_task_blocked
c011e578 T recalc_sigpending_and_wake
c011e59c t ptrace_trap_notify
c011e600 t prepare_signal
c011e878 t complete_signal
c011ea7c t __send_signal.constprop.0
c011ec98 T __group_send_sig_info
c011eca0 t do_notify_parent_cldstop
c011edb8 t ptrace_stop
c011efdc t ptrace_do_notify
c011f06c t do_signal_stop
c011f29c T force_sig_info
c011f368 T zap_other_threads
c011f3d0 T __lock_task_sighand
c011f414 T do_send_sig_info
c011f464 t do_send_specific
c011f4f4 t do_tkill
c011f58c T group_send_sig_info
c011f5d0 T __kill_pgrp_info
c011f640 T kill_pid_info
c011f698 T kill_pid_info_as_cred
c011f768 T send_sig_info
c011f780 T send_sig
c011f794 T force_sig
c011f7a0 T force_sigsegv
c011f7d4 T kill_pgrp
c011f7f8 T kill_pid
c011f814 T sigqueue_alloc
c011f850 T sigqueue_free
c011f894 T send_sigqueue