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)
[+] Version string: Linux version 4.14.186 (nobody@android-build) (Android (6443078 based on r383902) clang version 11.0.1 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79), LLD 11.0.1 (/buildbot/tmp/tmp6_m7QH b397f81060ce6d701042b782172ed13bee898b79)) #2 SMP PREEMPT Fri Mar 17 21:03:55 CST 2023
[+] Guessed architecture: aarch64 successfully in 4.90 seconds
[+] Found relocations table at file offset 0x1b56fe8 (count=218618)
[+] Found kernel text candidate: 0xffffff8008081000
[+] Successfully applied 218618 relocations.
[+] Found kallsyms_token_table at file offset 0x01629200
[+] Found kallsyms_token_index at file offset 0x01629600
[+] Found kallsyms_markers at file offset 0x01628700
[+] Found kallsyms_names at file offset 0x0140cf00
[+] Found kallsyms_num_syms at file offset 0x0140ce00
[i] Negative offsets overall: 50.0006 %
[i] Null addresses overall: 0 %
[+] Found kallsyms_offsets at file offset 0x013b67f4
Symbol types => ['R', 'T', 'W', 't']
ffffff8009b55983 t gic_handle_irq
00000000090fa864 T _stext
ffffff8009b55983 T __exception_text_start
00000000090fabc0 T do_undefinstr
ffffff8009b55983 T do_sysinstr
00000000090fbc04 T do_mem_abort
ffffff8009b55983 T do_el0_irq_bp_hardening
00000000090fcfac T do_el0_ia_bp_hardening
ffffff8009b55983 T do_sp_pc_abort
00000000090fd68c T do_debug_exception
ffffff8009b55983 t gic_handle_irq$c6b8688fc250b18877f172ddacb58c00
00000000090fe440 T __exception_text_end
ffffff8009b55983 T __do_softirq
00000000090febec T __irqentry_text_end
ffffff8009b55983 T __irqentry_text_start
00000000090fedb0 T __softirqentry_text_start
ffffff8009b55983 T __softirqentry_text_end
00000000090ff084 T __entry_text_start
ffffff8009b55983 T vectors
00000000090ff358 t __bad_stack
ffffff8009b55983 t el0_sync_invalid
00000000090ff508 t el0_irq_invalid
ffffff8009b55983 t el0_fiq_invalid
00000000090ff6b8 t el0_error_invalid
ffffff8009b55983 t el0_fiq_invalid_compat
00000000090ff868 t el0_error_invalid_compat
ffffff8009b55983 t el1_sync_invalid
00000000090ff8c4 t el1_irq_invalid
ffffff8009b55983 t el1_fiq_invalid
00000000090ff920 t el1_error_invalid
ffffff8009b55983 t el1_sync
00000000090ff97c t el1_sync_nest
ffffff8009b55983 t el1_sync_nest_skip_dec
00000000090ffe1c t el1_sync_nest_skip
ffffff8009b55983 t el1_da
00000000091002b0 t el1_ia
ffffff8009b55983 t el1_da_nest_skip_dec
0000000009100738 t el1_sp_pc
ffffff8009b55983 t el1_undef
0000000009100d24 t el1_dbg
ffffff8009b55983 t el1_inv
0000000009100f48 t el1_irq
ffffff8009b55983 t el1_preempt
0000000009101550 t el0_sync
ffffff8009b55983 t el0_sync_compat
00000000091015e8 t el0_svc_compat
ffffff8009b55983 t el0_irq_compat
0000000009102170 t el0_da
ffffff8009b55983 t el0_ia
0000000009103db8 t el0_fpsimd_acc
ffffff8009b55983 t el0_fpsimd_exc
0000000009105228 t el0_sp_pc
ffffff8009b55983 t el0_undef
0000000009105550 t el0_sys
ffffff8009b55983 t el0_dbg
00000000091056fc t el0_inv
ffffff8009b55983 t el0_irq
00000000091069bc t el0_irq_naked
ffffff8009b55983 t ret_fast_syscall
00000000091069d8 t ret_fast_syscall_trace
ffffff8009b55983 t work_pending
0000000009107c84 t ret_to_user
ffffff8009b55983 t finish_ret_to_user
0000000009107ed8 t el0_svc
ffffff8009b55983 t el0_svc_naked
000000000910d0b8 t ni_sys
ffffff8009b55983 t __sys_trace
000000000910d238 t __sys_trace_return
ffffff8009b55983 t __sys_trace_return_skipped
000000000910d490 t __ni_sys_trace
ffffff8009b55983 T __bp_harden_el1_vectors
000000000910d504 T __entry_text_end
ffffff8009b55983 T sys_rt_sigreturn_wrapper
000000000910d578 T cpu_switch_to
ffffff8009b55983 T ret_from_fork
000000000910d5ec T fpsimd_save_state
ffffff8009b55983 T fpsimd_load_state
000000000910d634 T __arm_smccc_smc
ffffff8009b55983 T __arm_smccc_hvc
000000000910d6c0 t __kuser_cmpxchg64
ffffff8009b55983 T __kuser_helper_start
000000000910d718 t __kuser_memory_barrier
ffffff8009b55983 t __kuser_cmpxchg
000000000910e154 t __kuser_get_tls
ffffff8009b55983 t __kuser_helper_version
000000000910e2a8 T __aarch32_sigret_code_start
ffffff8009b55983 T __kuser_helper_end
000000000910e320 T compat_sys_sigreturn_wrapper
ffffff8009b55983 T __aarch32_sigret_code_end
000000000910e3d4 T compat_sys_rt_sigreturn_wrapper
ffffff8009b55983 T compat_sys_statfs64_wrapper
000000000910e468 T compat_sys_fstatfs64_wrapper
ffffff8009b55983 T compat_sys_mmap2_wrapper
000000000910e764 T compat_sys_pread64_wrapper
ffffff8009b55983 T compat_sys_pwrite64_wrapper
000000000910e7a4 T compat_sys_truncate64_wrapper
ffffff8009b55983 T compat_sys_ftruncate64_wrapper
000000000910e7ac T compat_sys_readahead_wrapper
ffffff8009b55983 T compat_sys_fadvise64_64_wrapper
000000000910e7b4 T compat_sys_sync_file_range2_wrapper
ffffff8009b55983 T compat_sys_fallocate_wrapper
000000000910e85c T __cpu_suspend_enter
ffffff8009b55983 T _cpu_resume
000000000910e90c T flush_icache_range
ffffff8009b55983 T __flush_cache_user_range
000000000910ebcc T __flush_dcache_area
ffffff8009b55983 T __pi___flush_dcache_area
000000000910ed08 T __clean_dcache_area_pou
ffffff8009b55983 t __dma_inv_area
000000000910f1ac T __inval_dcache_area
ffffff8009b55983 T __pi___inval_dcache_area
000000000910f378 T __clean_dcache_area_poc
ffffff8009b55983 t __dma_clean_area
000000000910f398 T __pi___clean_dcache_area_poc
ffffff8009b55983 T __clean_dcache_area_pop
000000000910f650 T __pi___clean_dcache_area_pop
ffffff8009b55983 T __dma_flush_area
000000000910f670 T __pi___dma_flush_area
ffffff8009b55983 T __dma_map_area
000000000910fa04 T __pi___dma_map_area
ffffff8009b55983 T __dma_unmap_area
000000000910fa24 T __pi___dma_unmap_area
ffffff8009b55983 T cpu_do_idle
000000000910fdac T cpu_do_suspend
ffffff8009b55983 T cpu_do_switch_mm
000000000910ffe0 T __enable_icache
ffffff8009b55983 T __disable_icache
0000000009110034 T __enable_dcache
ffffff8009b55983 T __disable_dcache
0000000009110238 T __enable_cache
ffffff8009b55983 T __disable_cache
000000000911028c T do_dcsw_op
ffffff8009b55983 t loop
00000000091104bc t level_done
ffffff8009b55983 t exit
00000000091104dc t dcsw_loop_table
ffffff8009b55983 t loop2_isw
000000000911062c t loop3_isw
ffffff8009b55983 t loop2_cisw
0000000009110e14 t loop3_cisw
ffffff8009b55983 t loop2_csw
0000000009110e88 t loop3_csw
ffffff8009b55983 T __inner_flush_dcache_all
0000000009110f2c T __inner_flush_dcache_L1
ffffff8009b55983 T __inner_flush_dcache_L2
000000000911102c T __inner_clean_dcache_all
ffffff8009b55983 T __inner_clean_dcache_L1
0000000009111084 T __inner_clean_dcache_L2
ffffff8009b55983 T __inner_inv_dcache_all
00000000091110c8 T __inner_inv_dcache_L1
ffffff8009b55983 T __inner_inv_dcache_L2
00000000091113fc T __disable_dcache__inner_flush_dcache_L1
ffffff8009b55983 T __disable_dcache__inner_flush_dcache_L1__inner_flush_dcache_L2
0000000009111404 T __disable_dcache__inner_clean_dcache_L1__inner_clean_dcache_L2
ffffff8009b55983 T dis_D_inner_fL1L2
000000000911149c T dis_D_inner_flush_all
ffffff8009b55983 T __flush_dcache_user_area
0000000009111504 T __clean_dcache_user_area
ffffff8009b55983 T __inval_dcache_user_area
0000000009111528 T sha2_ce_transform
ffffff8009b55983 T __aes_ce_encrypt
0000000009111628 T __aes_ce_decrypt
ffffff8009b55983 T __aes_ce_sub
0000000009111ba0 T __aes_ce_invert
ffffff8009b55983 t aes_encrypt_block4x
0000000009111c18 t aes_decrypt_block4x
ffffff8009b55983 T ce_aes_ecb_encrypt
0000000009111c6c T ce_aes_ecb_decrypt
ffffff8009b55983 T ce_aes_cbc_encrypt
0000000009111d64 T ce_aes_cbc_decrypt
ffffff8009b55983 T ce_aes_ctr_encrypt
0000000009112584 T ce_aes_xts_encrypt
ffffff8009b55983 T ce_aes_xts_decrypt
00000000091127f8 T ce_aes_mac_update
ffffff8009b55983 T sha256_block_data_order
0000000009112a10 T sha256_block_neon
ffffff8009b55983 t __aes_arm64_inverse_sbox
0000000009112a60 T __aes_arm64_encrypt
ffffff8009b55983 T __aes_arm64_decrypt
0000000009112c3c T sys_ni_syscall
ffffff8009b55983 W compat_sys_fanotify_mark
0000000009112ca8 W compat_sys_get_mempolicy
ffffff8009b55983 W compat_sys_ipc
0000000009112d14 W compat_sys_kexec_load
ffffff8009b55983 W compat_sys_mbind
0000000009112d80 W compat_sys_migrate_pages
ffffff8009b55983 W compat_sys_move_pages
00000000091131ac W compat_sys_mq_getsetattr
ffffff8009b55983 W compat_sys_mq_notify
0000000009113394 W compat_sys_mq_open
ffffff8009b55983 W compat_sys_mq_timedreceive
0000000009113428 W compat_sys_mq_timedsend
ffffff8009b55983 W compat_sys_msgctl
0000000009113504 W compat_sys_msgrcv
ffffff8009b55983 W compat_sys_msgsnd
0000000009113588 W compat_sys_open_by_handle_at
ffffff8009b55983 W compat_sys_s390_ipc
000000000911374c W compat_sys_semctl
ffffff8009b55983 W compat_sys_semtimedop
00000000091137d0 W compat_sys_set_mempolicy
ffffff8009b55983 W compat_sys_shmat
0000000009113958 W compat_sys_shmctl
ffffff8009b55983 W ppc_rtas
0000000009113a68 W sys32_quotactl
ffffff8009b55983 W sys_acct
0000000009113b80 W sys_fadvise64
ffffff8009b55983 W sys_fanotify_init
0000000009113c5c W sys_fanotify_mark
ffffff8009b55983 W sys_get_mempolicy
0000000009113d50 W sys_ipc
ffffff8009b55983 W sys_kcmp
0000000009113d78 W sys_kexec_file_load
ffffff8009b55983 W sys_kexec_load
0000000009113ee0 W sys_mbind
ffffff8009b55983 W sys_migrate_pages
0000000009113fb8 W sys_modify_ldt
ffffff8009b55983 W sys_move_pages
00000000091140dc W sys_mq_getsetattr
ffffff8009b55983 W sys_mq_notify
000000000911413c W sys_mq_open
ffffff8009b55983 W sys_mq_timedreceive
000000000911424c W sys_mq_timedsend
ffffff8009b55983 W sys_mq_unlink
0000000009114330 W sys_msgctl
ffffff8009b55983 W sys_msgget
0000000009114418 W sys_msgrcv
ffffff8009b55983 W sys_msgsnd
00000000091144f8 W sys_name_to_handle_at
ffffff8009b55983 W sys_open_by_handle_at
00000000091147cc W sys_pciconfig_iobase
ffffff8009b55983 W sys_pciconfig_read
0000000009114844 W sys_pciconfig_write
ffffff8009b55983 W sys_pkey_alloc
0000000009114edc W sys_pkey_free
ffffff8009b55983 W sys_pkey_mprotect
000000000911534c W sys_s390_pci_mmio_read
ffffff8009b55983 W sys_s390_pci_mmio_write
0000000009115864 W sys_semctl
ffffff8009b55983 W sys_semget
0000000009115a7c W sys_semop
ffffff8009b55983 W sys_semtimedop
0000000009115d2c W sys_set_mempolicy
ffffff8009b55983 W sys_sgetmask
00000000091160ec W sys_shmat
ffffff8009b55983 W sys_shmctl
00000000091163ac W sys_shmdt
ffffff8009b55983 W sys_shmget
00000000091164c0 W sys_socketcall
ffffff8009b55983 W sys_spu_create
0000000009117200 W sys_spu_run
ffffff8009b55983 W sys_ssetmask
000000000911732c W sys_subpage_prot
ffffff8009b55983 W sys_uselib
000000000911746c W sys_userfaultfd
ffffff8009b55983 W sys_vm86
0000000009117688 W sys_vm86old
ffffff8009b55983 T change_bit
000000000911787c T clear_bit
ffffff8009b55983 T set_bit
00000000091178d4 T test_and_change_bit
ffffff8009b55983 T test_and_clear_bit
0000000009117990 T test_and_set_bit
ffffff8009b55983 T clear_page
0000000009117c2c T __arch_clear_user
ffffff8009b55983 T __arch_copy_from_user
0000000009117c70 T __arch_copy_in_user
ffffff8009b55983 T copy_page
0000000009117ca8 T __arch_copy_to_user
ffffff8009b55983 T __pi_memchr
0000000009117e28 W memchr
ffffff8009b55983 T __pi_memcmp
0000000009117e34 W memcmp
ffffff8009b55983 T __memcpy
0000000009117e40 T __pi_memcpy
ffffff8009b55983 W memcpy
0000000009118220 T __memmove
ffffff8009b55983 T __pi_memmove
0000000009118258 W memmove
ffffff8009b55983 T __memset
00000000091183d0 T __pi_memset
ffffff8009b55983 W memset
00000000091184f4 W strchr
ffffff8009b55983 T __pi_strcmp
00000000091185e0 W strcmp
ffffff8009b55983 T __pi_strlen
00000000091186a0 W strlen
ffffff8009b55983 T __pi_strncmp
0000000009118bac W strncmp
ffffff8009b55983 T __pi_strnlen
00000000091191d0 W strnlen
ffffff8009b55983 W strrchr
0000000009119344 t armv8_pmu_device_probe
ffffff8009b55983 t armv8_pmuv3_init
0000000009119510 t armv8_a35_pmu_init
ffffff8009b55983 t armv8_a53_pmu_init
0000000009119a00 t armv8_a57_pmu_init
ffffff8009b55983 t armv8_a72_pmu_init
0000000009119b5c t armv8_a73_pmu_init
ffffff8009b55983 t armv8_thunder_pmu_init
0000000009119bc4 t armv8_vulcan_pmu_init
ffffff8009b55983 t __armv8pmu_probe_pmu
0000000009119dc8 t armv8pmu_handle_irq
ffffff8009b55983 t armv8pmu_enable_event
0000000009119e50 t armv8pmu_disable_event
ffffff8009b55983 t armv8pmu_read_counter
0000000009119eb8 t armv8pmu_write_counter
ffffff8009b55983 t armv8pmu_get_event_idx
000000000911a0dc t armv8pmu_start
ffffff8009b55983 t armv8pmu_stop
000000000911a10c t armv8pmu_reset
ffffff8009b55983 t armv8pmu_set_event_filter
000000000911a1ec t armv8pmu_filter_match
ffffff8009b55983 t armv8_vulcan_map_event
000000000911a254 t event_show
ffffff8009b55983 t armv8pmu_event_attr_is_visible
000000000911a2a0 t armv8pmu_events_sysfs_show
ffffff8009b55983 t armv8_thunder_map_event
000000000911a328 t armv8_a73_map_event
ffffff8009b55983 t armv8_a57_map_event
000000000911a374 t armv8_a53_map_event
ffffff8009b55983 t armv8_pmuv3_map_event
000000000911a3fc t aes_exit
ffffff8009b55983 t mac_init
000000000911a51c t mac_update
ffffff8009b55983 t cmac_final
000000000911a5fc t cmac_setkey
ffffff8009b55983 t xcbc_setkey
000000000911a6e0 t cbcmac_final
ffffff8009b55983 t cbcmac_setkey
000000000911a7ec t mac_do_update
ffffff8009b55983 t cmac_gf128_mul_by_x
000000000911a8dc t skcipher_aes_setkey
ffffff8009b55983 t ecb_encrypt
000000000911aa10 t ecb_decrypt
ffffff8009b55983 t cbc_encrypt
000000000911ad80 t cbc_decrypt
ffffff8009b55983 t ctr_encrypt
000000000911b49c t ctr_encrypt_sync
ffffff8009b55983 t xts_set_key
000000000911b56c t xts_encrypt
ffffff8009b55983 t xts_decrypt
000000000911b574 t sha256_base_init
ffffff8009b55983 t sha256_update
000000000911b670 t sha256_final
ffffff8009b55983 t sha256_finup
000000000911b6a0 t sha224_base_init
ffffff8009b55983 t sha256_update_neon
000000000911b6d0 t sha256_final_neon
ffffff8009b55983 t sha256_finup_neon
000000000911b76c t aes_encrypt
ffffff8009b55983 t aes_decrypt
000000000911b79c t schedstat_open
ffffff8009b55983 t schedstat_start
000000000911b838 t schedstat_stop
ffffff8009b55983 t schedstat_next
000000000911b89c t show_schedstat
ffffff8009b55983 t handle_poweroff
000000000911b8e8 t do_poweroff
ffffff8009b55983 t ikconfig_read_current
000000000911c158 W elf_core_extra_phdrs
ffffff8009b55983 W elf_core_write_extra_phdrs
000000000911c234 W elf_core_write_extra_data
ffffff8009b55983 W elf_core_extra_data_size
000000000911ca5c t alloc_symbol_cache
ffffff8009b55983 t free_symbol_cache
000000000911cabc t update_symbol_cache
ffffff8009b55983 t profile_open
000000000911cc08 t probes_seq_start
ffffff8009b55983 t probes_seq_stop
000000000911cd28 t probes_seq_next
ffffff8009b55983 t probes_profile_seq_show
000000000911d040 t probes_write
ffffff8009b55983 t probes_open
000000000911d070 t free_trace_uprobe
ffffff8009b55983 t probes_seq_show
000000000911d174 t create_trace_uprobe
ffffff8009b55983 t uprobe_dispatcher
000000000911d39c t uretprobe_dispatcher
ffffff8009b55983 t uprobe_event_define_fields
000000000911d414 t trace_uprobe_register
ffffff8009b55983 t probe_event_enable
000000000911d470 t uprobe_buffer_disable
ffffff8009b55983 t uprobe_perf_filter
000000000911d4b0 t uprobe_perf_close
ffffff8009b55983 t print_uprobe_event
000000000911d6dc t fetch_memory_string
ffffff8009b55983 t fetch_file_offset_string
000000000911d70c t fetch_memory_string_size
ffffff8009b55983 t fetch_file_offset_string_size
000000000911d798 t fetch_stack_u8
ffffff8009b55983 t fetch_memory_u8
000000000911d7c8 t fetch_file_offset_u8
ffffff8009b55983 t fetch_stack_u16
000000000911d854 t fetch_memory_u16
ffffff8009b55983 t fetch_file_offset_u16
000000000911d884 t fetch_stack_u32
ffffff8009b55983 t fetch_memory_u32
000000000911d910 t fetch_file_offset_u32
ffffff8009b55983 t fetch_stack_u64
000000000911da64 t fetch_memory_u64
ffffff8009b55983 t fetch_file_offset_u64
000000000911dbe4 t __uprobe_trace_func
ffffff8009b55983 t __uprobe_perf_func
000000000911dd14 t load_script
ffffff8009b55983 t load_elf_binary
000000000911e0b4 t elf_core_dump
ffffff8009b55983 t writenote
000000000911e448 t load_elf_phdrs
ffffff8009b55983 t elf_map
000000000911e454 t load_elf_binary.143
ffffff8009b55983 t elf_core_dump.144
000000000911e460 t writenote.151
ffffff8009b55983 t load_elf_phdrs.155
000000000911e47c t elf_map.156
ffffff8009b55983 t v2_check_quota_file
000000000911e498 t v2_read_file_info
ffffff8009b55983 t v2_write_file_info
000000000911e5f0 t v2_free_file_info
ffffff8009b55983 t v2_read_dquot
000000000911e6a0 t v2_write_dquot
ffffff8009b55983 t v2_release_dquot
000000000911e6a8 t v2_get_next_id
ffffff8009b55983 t v2r1_mem2diskdqb
000000000911e75c t v2r1_disk2memdqb
ffffff8009b55983 t v2r1_is_id
000000000911e974 t v2r0_mem2diskdqb
ffffff8009b55983 t v2r0_disk2memdqb
000000000911ea34 t v2r0_is_id
ffffff8009b55983 t cmdline_proc_open
000000000911eadc t cmdline_proc_show
ffffff8009b55983 t consoles_open
000000000911eaf0 t c_start
ffffff8009b55983 t c_stop
000000000911ebcc t c_next
ffffff8009b55983 t show_console_dev
000000000911ec90 t cpuinfo_open
ffffff8009b55983 W arch_freq_prepare_all
000000000911ed80 t devinfo_open
ffffff8009b55983 t devinfo_start
000000000911ee70 t devinfo_stop
ffffff8009b55983 t devinfo_next
000000000911f1d8 t devinfo_show
ffffff8009b55983 t interrupts_open
000000000911f25c t int_seq_start
ffffff8009b55983 t int_seq_stop
000000000911f3d0 t int_seq_next
ffffff8009b55983 t loadavg_proc_open
000000000911f438 t loadavg_proc_show
ffffff8009b55983 t meminfo_proc_open
000000000911f924 t meminfo_proc_show
ffffff8009b55983 W arch_report_meminfo
000000000911fd18 t stat_open
ffffff8009b55983 t show_stat
000000000911ff14 t uptime_proc_open
ffffff8009b55983 t uptime_proc_show
000000000912009c t version_proc_open
ffffff8009b55983 t version_proc_show
0000000009120220 t softirqs_open
ffffff8009b55983 t show_softirqs
00000000091202fc t kmsg_read
ffffff8009b55983 t kmsg_poll
0000000009120b18 t kmsg_open
ffffff8009b55983 t kmsg_release
0000000009120c3c t vfat_mount
ffffff8009b55983 t vfat_fill_super
0000000009120e0c t setup
ffffff8009b55983 t vfat_revalidate_ci
0000000009121034 t vfat_hashi
ffffff8009b55983 t vfat_cmpi
00000000091211f8 t vfat_revalidate
ffffff8009b55983 t vfat_hash
0000000009121394 t vfat_cmp
ffffff8009b55983 t vfat_lookup
0000000009121544 t vfat_create
ffffff8009b55983 t vfat_unlink
00000000091216c0 t vfat_mkdir
ffffff8009b55983 t vfat_rmdir
0000000009121a5c t vfat_rename
ffffff8009b55983 t vfat_add_entry
0000000009121d88 t msdos_mount
ffffff8009b55983 t msdos_fill_super
0000000009121e3c t setup.249
ffffff8009b55983 t msdos_hash
0000000009121e48 t msdos_cmp
ffffff8009b55983 t msdos_format_name
0000000009121f2c t msdos_lookup
ffffff8009b55983 t msdos_create
0000000009121f3c t msdos_unlink
ffffff8009b55983 t msdos_mkdir
000000000912220c t msdos_rmdir
ffffff8009b55983 t msdos_rename
000000000912253c t msdos_add_entry
ffffff8009b55983 t uni2char
0000000009122548 t char2uni
ffffff8009b55983 t uni2char.257
0000000009122554 t char2uni.258
ffffff8009b55983 t uni2char.265
0000000009122560 t char2uni.266
ffffff8009b55983 t uni2char.275
0000000009122568 t char2uni.276
ffffff8009b55983 t uni2char.285
000000000912256c t char2uni.286
ffffff8009b55983 t ovl_mount
0000000009122904 t ovl_fill_super
ffffff8009b55983 t ovl_mount_dir
0000000009122d68 t ovl_mount_dir_noesc
ffffff8009b55983 t ovl_workdir_create
0000000009122d70 t ovl_other_xattr_get
ffffff8009b55983 t __ovl_other_xattr_get
0000000009122d78 t ovl_other_xattr_set
ffffff8009b55983 t ovl_own_xattr_get
0000000009122dd8 t ovl_own_xattr_set
ffffff8009b55983 t ovl_posix_acl_xattr_get
0000000009122e78 t __ovl_posix_acl_xattr_get
ffffff8009b55983 t ovl_posix_acl_xattr_set
0000000009122f14 t ovl_alloc_inode
ffffff8009b55983 t ovl_destroy_inode
0000000009123010 t ovl_put_super
ffffff8009b55983 t ovl_sync_fs
000000000912318c t ovl_statfs
ffffff8009b55983 t ovl_remount
0000000009123248 t ovl_show_options
ffffff8009b55983 t ovl_i_callback
00000000091232a8 t ovl_dentry_revalidate
ffffff8009b55983 t ovl_dentry_weak_revalidate
00000000091232bc t ovl_dentry_release
ffffff8009b55983 t ovl_d_real
0000000009123540 t ovl_inode_init_once
ffffff8009b55983 t mounter_context_for_backing_rw_show
00000000091236f4 t corefs_show
ffffff8009b55983 t proc_key_users_open
0000000009123990 t proc_key_users_start
ffffff8009b55983 t proc_key_users_stop
0000000009123c28 t proc_key_users_next
ffffff8009b55983 t proc_key_users_show
0000000009123ecc t proc_keys_open
ffffff8009b55983 t proc_keys_start
0000000009124334 t proc_keys_stop
ffffff8009b55983 t proc_keys_next
00000000091243a8 t proc_keys_show
ffffff8009b55983 t seqiv_free
0000000009124a34 t seqiv_create
ffffff8009b55983 t seqiv_aead_encrypt
0000000009124d2c t seqiv_aead_decrypt
ffffff8009b55983 t seqiv_aead_encrypt_complete
0000000009124d4c t echainiv_free
ffffff8009b55983 t echainiv_aead_create
0000000009124d68 t echainiv_encrypt
ffffff8009b55983 t echainiv_decrypt
0000000009124de0 t rsa_init
ffffff8009b55983 t rsa_sign
0000000009124e08 t rsa_verify
ffffff8009b55983 t rsa_enc
0000000009124e60 t rsa_dec
ffffff8009b55983 t rsa_set_pub_key
0000000009124e80 t rsa_set_priv_key
ffffff8009b55983 t rsa_max_size
0000000009124eec t rsa_exit_tfm
ffffff8009b55983 t rsa_exit
0000000009124f14 t cryptomgr_notify
ffffff8009b55983 t cryptomgr_probe
0000000009124f48 t cryptomgr_test
ffffff8009b55983 t cmac_create
0000000009124f74 t cmac_init_tfm
ffffff8009b55983 t cmac_exit_tfm
0000000009124f98 t crypto_cmac_digest_init
ffffff8009b55983 t crypto_cmac_digest_update
0000000009124fc4 t crypto_cmac_digest_final
ffffff8009b55983 t crypto_cmac_digest_setkey
0000000009124ffc t hmac_create
ffffff8009b55983 t hmac_init_tfm
0000000009125118 t hmac_exit_tfm
ffffff8009b55983 t hmac_init
0000000009125234 t hmac_update
ffffff8009b55983 t hmac_final
0000000009125370 t hmac_finup
ffffff8009b55983 t hmac_export
00000000091253f8 t hmac_import
ffffff8009b55983 t hmac_setkey
00000000091254b0 t xcbc_create
ffffff8009b55983 t xcbc_init_tfm
0000000009125538 t xcbc_exit_tfm
ffffff8009b55983 t crypto_xcbc_digest_init
00000000091255bc t crypto_xcbc_digest_update
ffffff8009b55983 t crypto_xcbc_digest_final
00000000091256b8 t crypto_xcbc_digest_setkey
ffffff8009b55983 t crypto_ecb_alloc
00000000091257c0 t crypto_ecb_free
ffffff8009b55983 t crypto_ecb_init_tfm
0000000009125800 t crypto_ecb_exit_tfm
ffffff8009b55983 t crypto_ecb_setkey
000000000912586c t crypto_ecb_encrypt
ffffff8009b55983 t crypto_ecb_decrypt
0000000009125f24 t crypto_cbc_create
ffffff8009b55983 t crypto_cbc_init_tfm
0000000009125f4c t crypto_cbc_exit_tfm
ffffff8009b55983 t crypto_cbc_setkey
0000000009125fd8 t crypto_cbc_encrypt
ffffff8009b55983 t crypto_cbc_decrypt
0000000009126910 t crypto_cbc_free
ffffff8009b55983 t crypto_cbc_decrypt_one
0000000009126968 t crypto_cbc_encrypt_one
ffffff8009b55983 t crypto_cts_create
0000000009126c30 t crypto_cts_init_tfm
ffffff8009b55983 t crypto_cts_exit_tfm
0000000009126c60 t crypto_cts_setkey
ffffff8009b55983 t crypto_cts_encrypt
0000000009126c88 t crypto_cts_decrypt
ffffff8009b55983 t crypto_cts_free
0000000009126cac t crypto_cts_decrypt_done
ffffff8009b55983 t cts_cbc_decrypt
0000000009127304 t cts_cbc_crypt_done
ffffff8009b55983 t crypto_cts_encrypt_done
0000000009127a58 t cts_cbc_encrypt
ffffff8009b55983 t crypto_ctr_alloc
0000000009127bcc t crypto_ctr_free
ffffff8009b55983 t crypto_ctr_init_tfm
0000000009127e20 t crypto_ctr_exit_tfm
ffffff8009b55983 t crypto_ctr_setkey
0000000009128ec0 t crypto_ctr_crypt
ffffff8009b55983 t crypto_ctr_crypt_inplace
0000000009128fc4 t crypto_ctr_crypt_final
ffffff8009b55983 t crypto_rfc3686_create
000000000912911c t crypto_rfc3686_setkey
ffffff8009b55983 t crypto_rfc3686_crypt
000000000912913c t crypto_rfc3686_init_tfm
ffffff8009b55983 t crypto_rfc3686_exit_tfm
00000000091292b0 t crypto_rfc3686_free
ffffff8009b55983 t crypto_gcm_base_create
00000000091292d0 t crypto_gcm_create_common
ffffff8009b55983 t crypto_gcm_init_tfm
0000000009129444 t crypto_gcm_exit_tfm
ffffff8009b55983 t crypto_gcm_setkey
0000000009129464 t crypto_gcm_setauthsize
ffffff8009b55983 t crypto_gcm_encrypt
00000000091295d8 t crypto_gcm_decrypt
ffffff8009b55983 t crypto_gcm_free
00000000091295f8 t crypto_gcm_init_common
ffffff8009b55983 t gcm_dec_hash_continue
000000000912976c t gcm_hash
ffffff8009b55983 t gcm_hash_init_done
000000000912978c t gcm_hash_assoc_done
ffffff8009b55983 t gcm_hash_assoc_remain_done
00000000091297bc t gcm_hash_crypt_done
ffffff8009b55983 t gcm_hash_crypt_remain_done
00000000091297dc t gcm_hash_crypt_remain_continue
ffffff8009b55983 t gcm_hash_len_done
000000000912982c t gcm_decrypt_done
ffffff8009b55983 t gcm_encrypt_done
000000000912984c t gcm_enc_copy_hash
ffffff8009b55983 t crypto_gcm_setkey_done
000000000912989c t crypto_gcm_create
ffffff8009b55983 t crypto_rfc4106_create
00000000091298bc t crypto_rfc4106_init_tfm
ffffff8009b55983 t crypto_rfc4106_exit_tfm
00000000091298ec t crypto_rfc4106_setkey
ffffff8009b55983 t crypto_rfc4106_setauthsize
000000000912990c t crypto_rfc4106_encrypt
ffffff8009b55983 t crypto_rfc4106_decrypt
000000000912993c t crypto_rfc4106_free
ffffff8009b55983 t crypto_rfc4106_crypt
000000000912995c t crypto_rfc4543_create
ffffff8009b55983 t crypto_rfc4543_init_tfm
000000000912998c t crypto_rfc4543_exit_tfm
ffffff8009b55983 t crypto_rfc4543_setkey
00000000091299b4 t crypto_rfc4543_setauthsize
ffffff8009b55983 t crypto_rfc4543_encrypt
00000000091299d4 t crypto_rfc4543_decrypt
ffffff8009b55983 t crypto_rfc4543_free
0000000009129a5c t crypto_rfc4543_crypt
ffffff8009b55983 t crypto_rfc4543_copy_src_to_dst
0000000009129a7c t cbcmac_create
ffffff8009b55983 t cbcmac_init_tfm
0000000009129b04 t cbcmac_exit_tfm
ffffff8009b55983 t crypto_cbcmac_digest_init
0000000009129b10 t crypto_cbcmac_digest_update
ffffff8009b55983 t crypto_cbcmac_digest_final
0000000009129b28 t crypto_cbcmac_digest_setkey
ffffff8009b55983 t crypto_ccm_base_create
0000000009129b80 t crypto_ccm_create_common
ffffff8009b55983 t crypto_ccm_init_tfm
0000000009129b88 t crypto_ccm_exit_tfm
ffffff8009b55983 t crypto_ccm_setkey
0000000009129be0 t crypto_ccm_setauthsize
ffffff8009b55983 t crypto_ccm_encrypt
0000000009129be8 t crypto_ccm_decrypt
ffffff8009b55983 t crypto_ccm_free
0000000009129c84 t crypto_ccm_init_crypt
ffffff8009b55983 t crypto_ccm_decrypt_done
000000000912a130 t crypto_ccm_auth
ffffff8009b55983 t crypto_ccm_encrypt_done
000000000912a2ac t crypto_ccm_create
ffffff8009b55983 t crypto_rfc4309_create
000000000912a370 t crypto_rfc4309_init_tfm
ffffff8009b55983 t crypto_rfc4309_exit_tfm
000000000912a460 t crypto_rfc4309_setkey
ffffff8009b55983 t crypto_rfc4309_setauthsize
000000000912a938 t crypto_rfc4309_encrypt
ffffff8009b55983 t crypto_rfc4309_decrypt
000000000912abdc t crypto_rfc4309_free
ffffff8009b55983 t crypto_rfc4309_crypt
000000000912aecc t bf_encrypt
ffffff8009b55983 t bf_decrypt
000000000912b3a4 t twofish_encrypt
ffffff8009b55983 t twofish_decrypt
000000000912b648 t arc4_set_key
ffffff8009b55983 t arc4_crypt_one
000000000912b938 t ecb_arc4_crypt
ffffff8009b55983 t deflate_alloc_ctx
000000000912b950 t deflate_free_ctx
ffffff8009b55983 t deflate_scompress
000000000912b97c t deflate_sdecompress
ffffff8009b55983 t zlib_deflate_alloc_ctx
000000000912b9a4 t __deflate_init
ffffff8009b55983 t deflate_compress
000000000912bbb8 t deflate_decompress
ffffff8009b55983 t deflate_init
000000000912bc48 t deflate_exit
ffffff8009b55983 t chksum_init
000000000912be94 t chksum_update
ffffff8009b55983 t chksum_final
000000000912c060 t chksum_finup
ffffff8009b55983 t chksum_digest
000000000912c220 t chksum_setkey
ffffff8009b55983 t crc32c_cra_init
000000000912c238 t crc32_init
ffffff8009b55983 t crc32_update
000000000912c35c t crc32_final
ffffff8009b55983 t crc32_finup
000000000912c4b4 t crc32_digest
ffffff8009b55983 t crc32_setkey
000000000912db44 t crc32_cra_init
ffffff8009b55983 t crypto_authenc_esn_create
000000000912db64 t crypto_authenc_esn_init_tfm
ffffff8009b55983 t crypto_authenc_esn_exit_tfm
000000000912dc84 t crypto_authenc_esn_setkey
ffffff8009b55983 t crypto_authenc_esn_setauthsize
000000000912dca4 t crypto_authenc_esn_encrypt
ffffff8009b55983 t crypto_authenc_esn_decrypt
000000000912dd18 t crypto_authenc_esn_free
ffffff8009b55983 t crypto_authenc_esn_copy
000000000912ddcc t authenc_esn_verify_ahash_done
ffffff8009b55983 t crypto_authenc_esn_decrypt_tail
000000000912e75c t crypto_authenc_esn_encrypt_done
ffffff8009b55983 t crypto_authenc_esn_genicv
000000000912e8ac t authenc_esn_geniv_ahash_done
ffffff8009b55983 t lzo_alloc_ctx
000000000912edcc t lzo_free_ctx
ffffff8009b55983 t lzo_scompress
000000000912fa44 t lzo_sdecompress
ffffff8009b55983 t lzo_compress
000000000912fafc t lzo_decompress
ffffff8009b55983 t lzo_init
000000000912fbb4 t lzo_exit
ffffff8009b55983 t lz4_alloc_ctx
000000000912fbc4 t lz4_free_ctx
ffffff8009b55983 t lz4_scompress
000000000912fdbc t lz4_sdecompress
ffffff8009b55983 t lz4_compress_crypto
000000000912fee0 t lz4_decompress_crypto
ffffff8009b55983 t lz4_init
0000000009130020 t lz4_exit
ffffff8009b55983 t drbg_kcapi_init
0000000009130154 t drbg_kcapi_cleanup
ffffff8009b55983 t drbg_kcapi_random
0000000009130288 t drbg_kcapi_seed
ffffff8009b55983 t drbg_kcapi_set_entropy
00000000091303ec t drbg_seed
ffffff8009b55983 t drbg_init_hash_kernel
0000000009130468 t drbg_async_seed
ffffff8009b55983 t drbg_schedule_async_seed
000000000913056c t drbg_uninstantiate
ffffff8009b55983 t drbg_hmac_update
0000000009130608 t drbg_hmac_generate
ffffff8009b55983 t drbg_fini_hash_kernel
0000000009130714 t ghash_init
ffffff8009b55983 t ghash_update
0000000009130838 t ghash_final
ffffff8009b55983 t ghash_setkey
00000000091308f4 t ghash_exit_tfm
ffffff8009b55983 t noop_merged_requests
0000000009130a60 t noop_dispatch
ffffff8009b55983 t noop_add_request
0000000009130b94 t noop_former_request
ffffff8009b55983 t noop_latter_request
000000000913144c t noop_init_queue
ffffff8009b55983 t noop_exit_queue
0000000009131e2c t deadline_merge
ffffff8009b55983 t deadline_merged_request
0000000009132034 t deadline_merged_requests
ffffff8009b55983 t deadline_dispatch_requests
0000000009132054 t deadline_add_request
ffffff8009b55983 t deadline_init_queue
00000000091324d4 t deadline_exit_queue
ffffff8009b55983 t deadline_read_expire_show
000000000913256c t deadline_read_expire_store
ffffff8009b55983 t deadline_write_expire_show
0000000009132640 t deadline_write_expire_store
ffffff8009b55983 t deadline_writes_starved_show
0000000009132734 t deadline_writes_starved_store
ffffff8009b55983 t deadline_front_merges_show
0000000009132770 t deadline_front_merges_store
ffffff8009b55983 t deadline_fifo_batch_show
00000000091328bc t deadline_fifo_batch_store
ffffff8009b55983 t cfq_merge
0000000009132974 t cfq_merged_request
ffffff8009b55983 t cfq_merged_requests
0000000009132a1c t cfq_allow_bio_merge
ffffff8009b55983 t cfq_allow_rq_merge
0000000009132af0 t cfq_bio_merged
ffffff8009b55983 t cfq_dispatch_requests
0000000009132bc8 t cfq_insert_request
ffffff8009b55983 t cfq_activate_request
0000000009132ca4 t cfq_deactivate_request
ffffff8009b55983 t cfq_completed_request
0000000009132d58 t cfq_init_icq
ffffff8009b55983 t cfq_exit_icq
0000000009132e70 t cfq_set_request
ffffff8009b55983 t cfq_put_request
000000000913306c t cfq_may_queue
ffffff8009b55983 t cfq_init_queue
0000000009133350 t cfq_exit_queue
ffffff8009b55983 t cfq_registered_queue
00000000091334d8 t cfq_quantum_show
ffffff8009b55983 t cfq_quantum_store
0000000009133628 t cfq_fifo_expire_sync_show
ffffff8009b55983 t cfq_fifo_expire_sync_store
00000000091337a0 t cfq_fifo_expire_async_show
ffffff8009b55983 t cfq_fifo_expire_async_store
0000000009133804 t cfq_back_seek_max_show
ffffff8009b55983 t cfq_back_seek_max_store
00000000091359b8 t cfq_back_seek_penalty_show
ffffff8009b55983 t cfq_back_seek_penalty_store
0000000009135b94 t cfq_slice_sync_show
ffffff8009b55983 t cfq_slice_sync_store
0000000009135c34 t cfq_slice_sync_us_show
ffffff8009b55983 t cfq_slice_sync_us_store
0000000009135d3c t cfq_slice_async_show
ffffff8009b55983 t cfq_slice_async_store
0000000009135f40 t cfq_slice_async_us_show
ffffff8009b55983 t cfq_slice_async_us_store
0000000009135f84 t cfq_slice_async_rq_show
ffffff8009b55983 t cfq_slice_async_rq_store
0000000009136078 t cfq_slice_idle_show
ffffff8009b55983 t cfq_slice_idle_store
00000000091360e8 t cfq_slice_idle_us_show
ffffff8009b55983 t cfq_slice_idle_us_store
0000000009136170 t cfq_group_idle_show
ffffff8009b55983 t cfq_group_idle_store
0000000009136190 t cfq_group_idle_us_show
ffffff8009b55983 t cfq_group_idle_us_store
0000000009136578 t cfq_low_latency_show
ffffff8009b55983 t cfq_low_latency_store
0000000009136598 t cfq_target_latency_show
ffffff8009b55983 t cfq_target_latency_store
000000000913677c t cfq_target_latency_us_show
ffffff8009b55983 t cfq_target_latency_us_store
000000000913679c t __cfq_slice_expired
ffffff8009b55983 t cfq_group_service_tree_del
0000000009136990 t cfq_group_service_tree_add
ffffff8009b55983 t cfq_del_cfqq_rr
0000000009136ac0 t cfq_service_tree_add
ffffff8009b55983 t cfq_idle_slice_timer
0000000009136c54 t cfq_kick_queue
ffffff8009b55983 t cfq_put_queue
0000000009136c5c t cfq_get_queue
ffffff8009b55983 t cfq_exit_cfqq
00000000091573ec t cfq_close_cooperator
ffffff8009b55983 t cfq_add_rq_rb
000000000915740c t cfq_choose_req
ffffff8009b55983 t cfq_dispatch_insert
00000000091578e8 t cfq_remove_request
ffffff8009b55983 t cfq_cpd_alloc
0000000009157954 t cfq_cpd_init
ffffff8009b55983 t cfq_cpd_free
00000000091579c0 t cfq_cpd_bind
ffffff8009b55983 t cfq_pd_alloc
0000000009157bdc t cfq_pd_init
ffffff8009b55983 t cfq_pd_offline
0000000009157ce0 t cfq_pd_free
ffffff8009b55983 t cfq_pd_reset_stats
0000000009157e00 t cfqg_stats_reset
ffffff8009b55983 t cfqg_stats_exit
0000000009157e2c t cfqg_print_leaf_weight_device
ffffff8009b55983 t cfqg_set_leaf_weight_device
0000000009157e94 t cfq_print_leaf_weight
ffffff8009b55983 t cfq_set_leaf_weight
0000000009157f7c t cfqg_print_weight_device
ffffff8009b55983 t cfqg_set_weight_device
0000000009157f94 t cfq_print_weight
ffffff8009b55983 t cfq_set_weight
00000000091580cc t cfq_print_group_idle
ffffff8009b55983 t cfq_set_group_idle
00000000091580e8 t cfqg_print_stat
ffffff8009b55983 t cfqg_print_stat_sectors
00000000091581f8 t cfqg_print_rwstat
ffffff8009b55983 t cfqg_print_stat_recursive
0000000009158314 t cfqg_print_stat_sectors_recursive
ffffff8009b55983 t cfqg_print_rwstat_recursive
00000000091583b4 t cfqg_prfill_rwstat_recursive
ffffff8009b55983 t cfqg_prfill_sectors_recursive
00000000091586e8 t cfqg_prfill_stat_recursive
ffffff8009b55983 t cfqg_prfill_sectors
0000000009158750 t __cfqg_set_weight_device
ffffff8009b55983 t cfqg_prfill_weight_device
0000000009158860 t cfqg_prfill_leaf_weight_device
ffffff8009b55983 t cfq_print_weight_on_dfl
0000000009158964 t cfq_set_weight_on_dfl
ffffff8009b55983 t dd_init_queue
00000000091589e4 t dd_exit_queue
ffffff8009b55983 t dd_bio_merge
0000000009158b50 t dd_request_merge
ffffff8009b55983 t dd_request_merged
0000000009158b8c t dd_merged_requests
ffffff8009b55983 t dd_insert_requests
0000000009158bc8 t dd_dispatch_request
ffffff8009b55983 t dd_has_work
0000000009158c04 t deadline_read_expire_show.482
ffffff8009b55983 t deadline_read_expire_store.483
0000000009158d74 t deadline_write_expire_show.485
ffffff8009b55983 t deadline_write_expire_store.486
0000000009158e04 t deadline_writes_starved_show.488
ffffff8009b55983 t deadline_writes_starved_store.489
00000000091590d8 t deadline_front_merges_show.491
ffffff8009b55983 t deadline_front_merges_store.492
0000000009159110 t deadline_fifo_batch_show.494
ffffff8009b55983 t deadline_fifo_batch_store.495
0000000009159128 t deadline_remove_request
ffffff8009b55983 t kyber_init_sched
0000000009159128 t kyber_exit_sched
ffffff8009b55983 t kyber_init_hctx
000000000915922c t kyber_exit_hctx
ffffff8009b55983 t kyber_limit_depth
000000000915922c t kyber_prepare_request
ffffff8009b55983 t kyber_finish_request
00000000091596a8 t kyber_dispatch_request
ffffff8009b55983 t kyber_has_work
00000000091596a8 t kyber_completed_request
ffffff8009b55983 t kyber_read_lat_show
0000000009159838 t kyber_read_lat_store
ffffff8009b55983 t kyber_write_lat_show
0000000009159838 t kyber_write_lat_store
ffffff8009b55983 t kyber_dispatch_cur_domain
0000000009159990 t kyber_domain_wake
ffffff8009b55983 t kyber_stat_timer_fn
0000000009159990 t rq_sched_domain
ffffff8009b55983 t kyber_adjust_rw_depth
0000000009159c8c W bust_spinlocks
ffffff8009b55983 W __ctzsi2
0000000009159c8c W __ctzdi2
ffffff8009b55983 W __clzsi2
0000000009159ca4 W __clzdi2
ffffff8009b55983 t kmp_init
0000000009159ca4 t kmp_find
ffffff8009b55983 t kmp_get_pattern
0000000009159e44 t kmp_get_pattern_len
ffffff8009b55983 t bm_init
0000000009159e44 t bm_find
ffffff8009b55983 t bm_get_pattern
0000000009159fe0 t bm_get_pattern_len
ffffff8009b55983 t fsm_init
0000000009159fe0 t fsm_find
ffffff8009b55983 t fsm_get_pattern
000000000915a188 t fsm_get_pattern_len
ffffff8009b55983 t __gic_update_vlpi_properties
000000000915a188 t gic_raise_softirq
ffffff8009b55983 t gic_starting_cpu
000000000915a3a4 t gic_dist_wait_for_rwp
ffffff8009b55983 t gic_cpu_init
000000000915a3a4 t gic_cpu_init
ffffff8009b55983 t gic_irq_domain_select
000000000915a3c0 t partition_domain_translate
ffffff8009b55983 t gic_cpu_pm_notifier
000000000915a3c0 t __gic_populate_rdist
ffffff8009b55983 t gic_redist_wait_for_rwp
000000000915a5d4 t gic_irq_domain_alloc
ffffff8009b55983 t gic_irq_domain_free
000000000915a5d4 t gic_irq_domain_translate
ffffff8009b55983 t gic_eoimode1_mask_irq
000000000915a5f0 t gic_unmask_irq
ffffff8009b55983 t gic_eoimode1_eoi_irq
000000000915a5f0 t gic_set_affinity
ffffff8009b55983 t gic_set_type
000000000915a790 t gic_irq_get_irqchip_state