forked from seokgh/Linux_drivers_framework_doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal_vars_.txt
2700 lines (2700 loc) · 189 KB
/
global_vars_.txt
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
--------------------------------------------------------------------------------
readelf -a vmlinux | grep "OBJECT GLOBAL" :
--------------------------------------------------------------------------------
124112: c1330834 4 OBJECT GLOBAL DEFAULT 28 stack_tracer_enabled
124118: c12ac818 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_c
124125: c1290e18 8 OBJECT GLOBAL DEFAULT 26 opp_tables
124128: c12074b0 16 OBJECT GLOBAL DEFAULT 26 udplite_table
124130: c1369f1c 4 OBJECT GLOBAL DEFAULT 28 of_aliases //drivers/of/base.c
124133: c12ab870 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_block_bio_ba
124136: c1204ff0 4 OBJECT GLOBAL DEFAULT 26 __cpu_online_mask
124141: c12a8768 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_hrtimer_expi
124163: c0c27ec0 128 OBJECT GLOBAL DEFAULT 3 aa_sfs_seq_file_ops
124176: c106da44 4 OBJECT GLOBAL DEFAULT 24 __atags_pointer //unsigned int __atags_pointer __initdata
124187: c1076ce8 4 OBJECT GLOBAL DEFAULT 24 dt_root_addr_cells
124192: c12a8a08 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_dev_pm_qos_u
124204: c0c18080 212 OBJECT GLOBAL DEFAULT 3 nfs_v2_clientops
124286: c120570c 4 OBJECT GLOBAL DEFAULT 26 zero_pfn
124294: c0c19c14 20 OBJECT GLOBAL DEFAULT 3 zero_stateid
124295: c0c15380 128 OBJECT GLOBAL DEFAULT 3 ext4_fast_symlink_inode_o
124298: c1205940 4 OBJECT GLOBAL DEFAULT 26 sysctl_mount_max
124308: c12a9bf0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_es_inse
124312: c12acef0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_netif_receiv
124319: c122095c 8 OBJECT GLOBAL DEFAULT 26 slab_root_caches
124339: c12a87f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_alarmtimer_c
124340: c12aa688 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_unlink_e
124358: c1204ac0 52 OBJECT GLOBAL DEFAULT 26 vm_zone_stat
124377: c0c02290 16 OBJECT GLOBAL DEFAULT 3 param_ops_string
124384: c12a84e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_move_n
124392: c1261928 4 OBJECT GLOBAL DEFAULT 26 key_quota_maxbytes
124403: c0c2888c 20 OBJECT GLOBAL DEFAULT 3 sha1_zero_message_hash
124407: c12a8f48 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_vmscan_in
124420: c12acd40 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_tcp_rcv_spac
124433: c12ad280 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xprt_complet
124468: c12aa5f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_rename_e
124479: c0c11600 128 OBJECT GLOBAL DEFAULT 3 proc_ns_dir_inode_operati
124487: c127e95c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_gusbcfg
124489: c0c016d0 128 OBJECT GLOBAL DEFAULT 3 kprobes_arm_actions
124495: c1205fe8 60 OBJECT GLOBAL DEFAULT 26 flow_keys_basic_dissector
124517: c12bb17c 4 OBJECT GLOBAL DEFAULT 28 arm_pm_restart
124521: c12ab330 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_remove_
124532: c12bb07c 4 OBJECT GLOBAL DEFAULT 28 irq_err_count
124554: c126fa54 512 OBJECT GLOBAL DEFAULT 26 ctrl_map
124557: c1263154 24 OBJECT GLOBAL DEFAULT 26 crypto_alg_sem
124567: c12131c0 28 OBJECT GLOBAL DEFAULT 26 module_uevent
124569: c12a1b10 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_mmiotr
124595: c0e56364 4 OBJECT GLOBAL DEFAULT 3 handle_arch_irq
124608: c10960ec 24 OBJECT GLOBAL DEFAULT 24 logo_linux_clut224
124622: c0c02310 16 OBJECT GLOBAL DEFAULT 3 param_ops_ulong
124632: c12a83f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_pi_set
124636: c127c7dc 12 OBJECT GLOBAL DEFAULT 26 usb_device_groups
124647: c12731f8 20 OBJECT GLOBAL DEFAULT 26 fw_lock
124660: c0c0c710 4 OBJECT GLOBAL DEFAULT 3 mmap_rnd_bits_max
124693: c12ac488 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_urb_giv
124708: c12a1aec 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_branch
124729: c12bb068 16 OBJECT GLOBAL DEFAULT 28 vfp_current_hw_state
124730: c135e0dc 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cop_dissociate_
124739: c1339f10 4 OBJECT GLOBAL DEFAULT 28 swap_lock
124741: c10aa2a4 4 OBJECT GLOBAL DEFAULT 25 __irq_regs
124764: c12064d0 4 OBJECT GLOBAL DEFAULT 26 weight_p
124765: c0c08a1c 5 OBJECT GLOBAL DEFAULT 3 print_type_format_x8
124787: c0c6a1a4 128 OBJECT GLOBAL DEFAULT 3 cache_file_operations_pip
124804: c0c16e00 128 OBJECT GLOBAL DEFAULT 3 nfs_symlink_inode_operati
124805: c1205f38 4 OBJECT GLOBAL DEFAULT 26 crc32c_csum_stub
124815: c1234ea4 2 OBJECT GLOBAL DEFAULT 26 max_session_slots
124822: c1217500 4 OBJECT GLOBAL DEFAULT 26 kdb_printf_cpu
124826: c12aa208 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_writepa
124850: c0c0a568 64 OBJECT GLOBAL DEFAULT 3 bpf_alu_string
124892: c12aaa18 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pnfs_mds_fal
124899: c1262d8c 4 OBJECT GLOBAL DEFAULT 26 aa_g_path_max
124905: c135df84 4 OBJECT GLOBAL DEFAULT 28 fscache_n_checkaux_obsole
124933: c1269650 20 OBJECT GLOBAL DEFAULT 26 pinctrl_maps_mutex
124941: c12a8c60 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpm_suspend
124945: c0e564c8 128 OBJECT GLOBAL DEFAULT 3 protection_map
124970: c12a90e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_percpu_creat
124982: c12ac290 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_inc_enq
124984: c135f598 4 OBJECT GLOBAL DEFAULT 28 aa_g_profile_mode
125001: c12a8618 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_kthrea
125003: c0c28b20 64 OBJECT GLOBAL DEFAULT 3 sha512_zero_message_hash
125027: c12a9ae8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_insert_
125041: c12ac248 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_get_por
125045: c127e86c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_regoffset
125052: c1206b70 4 OBJECT GLOBAL DEFAULT 26 ip_ct_attach
125053: c1204fd4 4 OBJECT GLOBAL DEFAULT 26 __cpu_architecture
125070: c0c02360 16 OBJECT GLOBAL DEFAULT 3 param_ops_short
125100: c0c167c8 84 OBJECT GLOBAL DEFAULT 3 nfs_file_aops
125116: c12acc08 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_neigh_event_
125121: c12064c0 4 OBJECT GLOBAL DEFAULT 26 rps_cpu_mask
125129: c1262db0 48 OBJECT GLOBAL DEFAULT 26 aa_sfs_entry_rlimit
125155: c0c26cfc 24 OBJECT GLOBAL DEFAULT 3 f2fs_xattr_trusted_handle
125181: c12ac218 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_dbc_all
125183: c132e6e9 1 OBJECT GLOBAL DEFAULT 28 ring_buffer_expanded
125219: c12ac950 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_timer_de
125235: c12abde0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regmap_async
125276: c126194c 20 OBJECT GLOBAL DEFAULT 26 key_construction_mutex
125285: c1292554 24 OBJECT GLOBAL DEFAULT 26 leds_list_lock
125294: c12abdc8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_random_read
125306: c1204b00 128 OBJECT GLOBAL DEFAULT 26 vm_node_stat
125323: c12bb3c8 8 OBJECT GLOBAL DEFAULT 28 pgprot_kernel
125354: c12aa1f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_writepa
125363: c12bb47c 4 OBJECT GLOBAL DEFAULT 28 sighand_cachep
125376: c1215a08 20 OBJECT GLOBAL DEFAULT 26 cgroup1_kf_syscall_ops
125380: c123a80c 32 OBJECT GLOBAL DEFAULT 26 nfs_v3
125385: c12bcfc0 8 OBJECT GLOBAL DEFAULT 28 sched_schedstats
125393: c135e080 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_enqueue
125403: c0c281a8 25 OBJECT GLOBAL DEFAULT 3 aa_file_perm_chrs
125417: c12aa3a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_update_
125429: c109b184 4 OBJECT GLOBAL DEFAULT 24 __event_mmiotrace_rw
125430: c0c04174 32 OBJECT GLOBAL DEFAULT 3 pidns_for_children_operat
125441: c12849f4 12 OBJECT GLOBAL DEFAULT 26 i2c_of_notifier
125451: c1390774 4 OBJECT GLOBAL DEFAULT 28 dns_resolver_cache
125457: c138dda0 4 OBJECT GLOBAL DEFAULT 28 sunrpc_net_id
125472: c12102a4 4 OBJECT GLOBAL DEFAULT 26 sysctl_sched_rr_timeslice
125495: c121b200 132 OBJECT GLOBAL DEFAULT 26 perf_event_cgrp_subsys
125505: c1262268 48 OBJECT GLOBAL DEFAULT 26 aa_sfs_entry_caps
125515: c1333b3c 4 OBJECT GLOBAL DEFAULT 28 vm_dirty_bytes
125517: c135e08c 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_initialised
125525: c136a4a8 4 OBJECT GLOBAL DEFAULT 28 vchiq_states
125532: c12aae08 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_mkdir
125533: c12a95a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_wa
125555: c133b9a4 4 OBJECT GLOBAL DEFAULT 28 fscrypt_info_cachep
125577: c12a8b70 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_device_pm_ca
125588: c0c3bc0c 96 OBJECT GLOBAL DEFAULT 3 clk_fixed_rate_ops
125599: c12056e4 4 OBJECT GLOBAL DEFAULT 26 sysctl_stat_interval
125600: c122b088 12 OBJECT GLOBAL DEFAULT 26 fscache_cache_cleared_wq
125603: c132e71c 4 OBJECT GLOBAL DEFAULT 28 tracepoint_print_iter
125609: c135fee4 4 OBJECT GLOBAL DEFAULT 28 isa_dma_bridge_buggy
125617: c127e9bc 16 OBJECT GLOBAL DEFAULT 26 dev_attr_gsnpsid
125623: c12acb90 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_arm_event
125647: c12177b4 216 OBJECT GLOBAL DEFAULT 26 tracepoint_srcu
125662: c1205b6c 128 OBJECT GLOBAL DEFAULT 26 registered_fb
125673: c10a4aec 4 OBJECT GLOBAL DEFAULT 25 trace_buffered_event_cnt
125674: c12a81e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_task_newtask
125677: c12bb8b8 8 OBJECT GLOBAL DEFAULT 28 panic_notifier_list
125679: c12a91b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_page_free
125692: c0c11c40 128 OBJECT GLOBAL DEFAULT 3 proc_net_inode_operations
125698: c12aa4a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_commit_
125713: c135dfe0 4 OBJECT GLOBAL DEFAULT 28 fscache_n_attr_changed
125714: c0c44d78 128 OBJECT GLOBAL DEFAULT 3 random_fops
125742: c121744c 44 OBJECT GLOBAL DEFAULT 26 kprobe_insn_slots
125768: c1205189 1 OBJECT GLOBAL DEFAULT 26 tracing_selftest_disabled
125775: c120500c 4 OBJECT GLOBAL DEFAULT 26 system_highpri_wq
125791: c0c641f8 4 OBJECT GLOBAL DEFAULT 3 lwt_out_prog_ops
125813: c0c6173c 32 OBJECT GLOBAL DEFAULT 3 netns_operations
125820: c135e094 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_release
125827: c1205f34 4 OBJECT GLOBAL DEFAULT 26 sysctl_max_skb_frags
125838: c1338638 4 OBJECT GLOBAL DEFAULT 28 memblock_debug
125854: c0e57038 12 OBJECT GLOBAL DEFAULT 3 phy_gbit_fibre_features
125857: c12aa088 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_sync_fi
125879: c12233e8 4 OBJECT GLOBAL DEFAULT 26 sysctl_extfrag_threshold
125880: c1076ce4 4 OBJECT GLOBAL DEFAULT 24 dt_root_size_cells
125907: c12a8660 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_swiotlb_boun
125917: c1205c04 1 OBJECT GLOBAL DEFAULT 26 fb_center_logo
125933: c1224c64 4 OBJECT GLOBAL DEFAULT 26 min_free_kbytes
125947: c135df74 4 OBJECT GLOBAL DEFAULT 28 fscache_n_object_dead
125976: c109b1b0 4 OBJECT GLOBAL DEFAULT 24 __event_function
125991: c12aa4f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_checkpo
125994: c13385c0 4 OBJECT GLOBAL DEFAULT 28 mem_map
126038: c13635e0 4 OBJECT GLOBAL DEFAULT 28 mm_vc_mem_base
126052: c135f490 4 OBJECT GLOBAL DEFAULT 28 cachefiles_object_jar
126053: c12a8498 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_wake_i
126058: c12acb18 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_thermal_temp
126072: c1363ca0 4 OBJECT GLOBAL DEFAULT 28 mon_ops
126074: c0c11280 128 OBJECT GLOBAL DEFAULT 3 proc_fdinfo_inode_operati
126090: c0c3beb4 96 OBJECT GLOBAL DEFAULT 3 clk_mux_ops
126100: c1207684 4 OBJECT GLOBAL DEFAULT 26 ipv6_stub
126101: c109b17c 4 OBJECT GLOBAL DEFAULT 24 __event_branch
126111: c0c09e98 84 OBJECT GLOBAL DEFAULT 3 htab_of_maps_map_ops
126112: c133a068 4 OBJECT GLOBAL DEFAULT 28 memcg_nr_cache_ids
126114: c1205108 88 OBJECT GLOBAL DEFAULT 26 ftrace_list_end
126127: c0c0a208 84 OBJECT GLOBAL DEFAULT 3 array_map_ops
126137: c12abb70 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_set_pare
126143: c12ab6a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_truncat
126147: c13905f4 4 OBJECT GLOBAL DEFAULT 28 nfs_debug
126163: c12a9e78 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_unlink_
126175: c0c2cc04 12 OBJECT GLOBAL DEFAULT 3 x509_decoder
126178: c1339e50 4 OBJECT GLOBAL DEFAULT 28 max_low_pfn
126179: c12a1ba0 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_print
126186: c12bb8c0 4 OBJECT GLOBAL DEFAULT 28 panic_print
126189: c12153b0 8 OBJECT GLOBAL DEFAULT 26 net_prio_cgrp_subsys_on_d
126191: c138baf8 8 OBJECT GLOBAL DEFAULT 28 tcp_tx_skb_cache_key
126217: c135f53c 4 OBJECT GLOBAL DEFAULT 28 lsm_names
126222: c10a9a00 12 OBJECT GLOBAL DEFAULT 25 fscache_object_cong_wait
126227: c1293cd4 20 OBJECT GLOBAL DEFAULT 26 of_mutex
126234: c1369b38 8 OBJECT GLOBAL DEFAULT 28 power_supply_notifier
126247: c1390924 4 OBJECT GLOBAL DEFAULT 28 radix_tree_node_cachep
126263: c12ab780 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_unlink_
126290: c12aa598 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_initiate
126299: c12bb3e8 8 OBJECT GLOBAL DEFAULT 28 pgprot_s2_device
126301: c13905f8 4 OBJECT GLOBAL DEFAULT 28 rpc_debug
126302: c0e566d4 836 OBJECT GLOBAL DEFAULT 3 security_hook_heads
126310: c1333ba8 4 OBJECT GLOBAL DEFAULT 28 vm_total_pages
126350: c12e3308 1 OBJECT GLOBAL DEFAULT 28 audit_ever_enabled
126364: c12ab0a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_exchang
126374: c12ad1d8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_process
126381: c12aa730 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_mknod_ex
126382: c0c08a38 3 OBJECT GLOBAL DEFAULT 3 print_type_format_u32
126394: c120502c 4 OBJECT GLOBAL DEFAULT 26 scheduler_running
126423: c12abf30 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regmap_reg_r
126427: c129969c 132 OBJECT GLOBAL DEFAULT 26 net_cls_cgrp_subsys
126428: c12a9020 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_vmscan_me
126438: c1072414 4 OBJECT GLOBAL DEFAULT 24 pcpu_chosen_fc
126441: c12abac8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_disable_
126449: c12ac110 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_spi_message_
126457: c12bb484 4 OBJECT GLOBAL DEFAULT 28 total_forks
126461: c1333d34 4 OBJECT GLOBAL DEFAULT 28 sysctl_compact_memory
126463: c135e048 4 OBJECT GLOBAL DEFAULT 28 fscache_n_stores_nobufs
126485: c12102b0 20 OBJECT GLOBAL DEFAULT 26 sched_domains_mutex
126492: c12aa988 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_revalida
126499: c0e56068 4 OBJECT GLOBAL DEFAULT 3 vdso_total_pages
126503: c12050b4 4 OBJECT GLOBAL DEFAULT 26 tick_do_timer_cpu
126507: c0e56000 52 OBJECT GLOBAL DEFAULT 3 processor
126513: c12064ec 4 OBJECT GLOBAL DEFAULT 26 netdev_budget_usecs
126518: c135e02c 4 OBJECT GLOBAL DEFAULT 28 fscache_n_retrievals_nome
126532: c1333ba0 4 OBJECT GLOBAL DEFAULT 28 page_cluster
126535: c0c02370 16 OBJECT GLOBAL DEFAULT 3 param_ops_byte
126574: c1215410 8 OBJECT GLOBAL DEFAULT 26 io_cgrp_subsys_on_dfl_key
126598: c12aa040 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mballoc
126609: c0c4e0d4 12 OBJECT GLOBAL DEFAULT 3 phy_basic_ports_array
126610: c12abbe8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regulator_en
126613: c12a9d10 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_ext_han
126631: c0c0c714 4 OBJECT GLOBAL DEFAULT 3 mmap_rnd_bits_min
126636: c12a8690 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_timer_cancel
126648: c12aa160 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mb_new_
126650: c12a81c8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ipi_exit
126654: c12a8ab0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pm_qos_add_r
126657: c12ab5a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_readdir
126670: c0c19cf4 128 OBJECT GLOBAL DEFAULT 3 nfs4_file_operations
126694: c135f5a2 1 OBJECT GLOBAL DEFAULT 28 aa_g_debug
126697: c12aafa0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_xdr_sta
126701: c12ab060 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_destroy
126710: c12bd020 80 OBJECT GLOBAL DEFAULT 28 def_rt_bandwidth
126717: c12a8738 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_hrtimer_canc
126721: c12aafe8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_cb_sequ
126736: c0c02668 100 OBJECT GLOBAL DEFAULT 3 rt_sched_class
126755: c12a8948 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_trans
126764: c1261304 568 OBJECT GLOBAL DEFAULT 26 init_ipc_ns
126767: c0c09c98 32 OBJECT GLOBAL DEFAULT 3 bpf_spin_lock_proto
126772: c12ab258 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_sync_di
126782: c12ab5e8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_get_vic
126784: c12a9b78 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_es_look
126800: c12050a4 4 OBJECT GLOBAL DEFAULT 26 prof_on
126803: c12a95f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_ex
126821: c0e56090 4 OBJECT GLOBAL DEFAULT 3 idmap_pgd
126822: c12bb3b4 4 OBJECT GLOBAL DEFAULT 28 vga_base
126824: c135feb0 4 OBJECT GLOBAL DEFAULT 28 pci_lock
126852: c0c4d5d0 92 OBJECT GLOBAL DEFAULT 3 scsi_bus_pm_ops
126855: c12aae38 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_lookup
126861: c0c0a698 128 OBJECT GLOBAL DEFAULT 3 btf_fops
126879: c12abc30 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regulator_se
126882: c1333c1c 4 OBJECT GLOBAL DEFAULT 28 pcpu_lock
126884: c12e1af8 8 OBJECT GLOBAL DEFAULT 28 io_tlb_end
126889: c0c16294 36 OBJECT GLOBAL DEFAULT 3 fat_export_ops_nostale
126893: c120b004 8 OBJECT GLOBAL DEFAULT 26 static_vmlist
126900: c12aa970 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_revalida
126911: c0c19c64 20 OBJECT GLOBAL DEFAULT 3 current_stateid
126924: c12aa118 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mb_rele
126927: c1205008 4 OBJECT GLOBAL DEFAULT 26 system_wq
126933: c121b1a4 16 OBJECT GLOBAL DEFAULT 26 dev_attr_nr_addr_filters
126936: c12ac938 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_alarm_ir
126938: c0c11300 128 OBJECT GLOBAL DEFAULT 3 proc_fd_inode_operations
126948: c1213e24 20 OBJECT GLOBAL DEFAULT 26 cgroup_mutex
126950: c12a9b60 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_es_look
126958: c12ac830 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_v
126965: c12ab7f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_sync_fi
126983: c12aac10 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_cb_geta
126987: c12175a0 4 OBJECT GLOBAL DEFAULT 26 kdb_poll_idx
126989: c12abff0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_scsi_eh_wake
126993: c1261c1c 4 OBJECT GLOBAL DEFAULT 26 dac_mmap_min_addr
127007: c0c6425c 20 OBJECT GLOBAL DEFAULT 3 tc_cls_act_verifier_ops
127017: c135e0c0 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cop_sync_cache
127023: c12ac260 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
127025: c0c00474 16 OBJECT GLOBAL DEFAULT 3 cpuinfo_op
127030: c138aadc 4 OBJECT GLOBAL DEFAULT 28 ras_debugfs_dir
127031: c12aa010 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mballoc
127050: c120e518 116 OBJECT GLOBAL DEFAULT 26 init_pid_ns
127056: c0c022f0 16 OBJECT GLOBAL DEFAULT 3 param_ops_charp
127059: c0c09cd8 32 OBJECT GLOBAL DEFAULT 3 bpf_get_current_uid_gid_p
127074: c12ad400 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc__mismatc
127087: c12ad190 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_send
127103: c12653c8 32 OBJECT GLOBAL DEFAULT 26 public_key_subtype
127112: c1206b08 96 OBJECT GLOBAL DEFAULT 26 pfifo_qdisc_ops
127116: c1363698 4 OBJECT GLOBAL DEFAULT 28 devices_kset
127118: c0c0e1d8 20 OBJECT GLOBAL DEFAULT 3 inotify_fsnotify_ops
127128: c12a89c0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_irq_enable
127133: c12a9740 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_leases_confl
127137: c129cbfc 8 OBJECT GLOBAL DEFAULT 26 gc_inflight_list
127142: c12abd68 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_add_disk_ran
127156: c12abbb8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_set_rate
127166: c0c25d40 128 OBJECT GLOBAL DEFAULT 3 debugfs_full_proxy_file_o
127173: c12160e4 132 OBJECT GLOBAL DEFAULT 26 pids_cgrp_subsys
127176: c1229584 72 OBJECT GLOBAL DEFAULT 26 epoll_table
127178: c12ac848 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_v
127219: c12a9110 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_percpu_alloc
127225: c1206500 8 OBJECT GLOBAL DEFAULT 26 rps_needed
127245: c12acbd8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_neigh_cleanu
127246: c12724fc 128 OBJECT GLOBAL DEFAULT 26 sample_fops
127250: c0c024c4 160 OBJECT GLOBAL DEFAULT 3 sched_prio_to_wmult
127255: c1213e7c 64 OBJECT GLOBAL DEFAULT 26 cgroup_threadgroup_rwsem
127259: c12a8648 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rcu_utilizat
127266: c0c0a160 84 OBJECT GLOBAL DEFAULT 3 prog_array_map_ops
127271: c129a62c 232 OBJECT GLOBAL DEFAULT 26 raw_prot
127275: c1296154 28 OBJECT GLOBAL DEFAULT 26 net_ratelimit_state
127281: c0c09c58 32 OBJECT GLOBAL DEFAULT 3 bpf_get_current_cgroup_id
127283: c12a1c30 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_wakeup
127293: c1333978 8 OBJECT GLOBAL DEFAULT 28 cgroup_bpf_enabled_key
127295: c135dfbc 4 OBJECT GLOBAL DEFAULT 28 fscache_n_invalidates
127380: c12e4a74 4 OBJECT GLOBAL DEFAULT 28 kgdb_contthread
127382: c12a90f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_percpu_destr
127399: c12a8120 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_initcall_lev
127415: c0c18990 704 OBJECT GLOBAL DEFAULT 3 nfs3_procedures
127416: c12bb3d4 4 OBJECT GLOBAL DEFAULT 28 empty_zero_page
127427: c12bb8f0 4 OBJECT GLOBAL DEFAULT 28 __boot_cpu_id
127434: c12ab948 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_block_bio_bo
127439: c133df38 4 OBJECT GLOBAL DEFAULT 28 fscache_cookie_jar
127452: c12a8888 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_relea
127456: c10a97b8 4 OBJECT GLOBAL DEFAULT 25 __kmap_atomic_idx
127465: c12050b0 4 OBJECT GLOBAL DEFAULT 26 timekeeping_suspended
127470: c12a9680 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_bdi_dirty_ra
127486: c135df78 4 OBJECT GLOBAL DEFAULT 28 fscache_n_checkaux_none
127510: c12a8e70 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_start_task_r
127520: c1207440 4 OBJECT GLOBAL DEFAULT 26 tcp_memory_pressure
127533: c12a82d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_signal_gener
127536: c12aa628 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_link_ent
127537: c12ac980 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_irq_set_
127539: c12a9578 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_wr
127555: c12abe10 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regmap_async
127562: c12a8210 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cpuhp_enter
127582: c127ea0c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_remote_wakeup
127591: c109f370 4 OBJECT GLOBAL DEFAULT 25 load_balance_mask
127597: c12a8780 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_hrtimer_star
127607: c12a9698 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_global_dirty
127611: c0c09f40 84 OBJECT GLOBAL DEFAULT 3 htab_percpu_map_ops
127617: c135e098 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_gc
127641: c12a8978 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_freez
127674: c12acfb0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_net_dev_xmit
127678: c0e56404 168 OBJECT GLOBAL DEFAULT 3 kmalloc_caches
127695: c12aba68 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_set_duty
127703: c133a340 4 OBJECT GLOBAL DEFAULT 28 cma_area_count
127707: c135df8c 4 OBJECT GLOBAL DEFAULT 28 fscache_n_uncaches
127716: c12ac788 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_ep_disab
127719: c135f59c 4 OBJECT GLOBAL DEFAULT 28 aa_g_audit
127727: c12a8528 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_stat_b
127733: c10a93c0 288 OBJECT GLOBAL DEFAULT 25 __perf_regs
127743: c12abb88 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_set_pare
127755: c127c4d4 12 OBJECT GLOBAL DEFAULT 26 usb_kill_urb_queue
127757: c120509c 4 OBJECT GLOBAL DEFAULT 26 sysctl_panic_on_rcu_stall
127765: c10a9338 8 OBJECT GLOBAL DEFAULT 25 bpf_cgroup_storage
127772: c12a8f18 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_shrink_sl
127788: c12a1b58 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_bputs
127817: c1205714 4 OBJECT GLOBAL DEFAULT 26 highest_memmap_pfn
127828: c135e730 400 OBJECT GLOBAL DEFAULT 28 fscache_retrieval_histogr
127832: c12ac710 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_ep_fifo_
127836: c129a56c 88 OBJECT GLOBAL DEFAULT 26 tcp_reno
127868: c12181e4 20 OBJECT GLOBAL DEFAULT 26 blk_trace_attr_group
127874: c0e56034 12 OBJECT GLOBAL DEFAULT 3 cpu_tlb
127896: c12aae98 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_delegre
127898: c126fc54 512 OBJECT GLOBAL DEFAULT 26 altgr_map
127899: c127e99c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_ggpio
127901: c13659d8 2 OBJECT GLOBAL DEFAULT 28 int_ep_interval_min
127915: c12ac230 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_hub_sta
127933: c1205968 4 OBJECT GLOBAL DEFAULT 26 inotify_inode_mark_cachep
127935: c138c12c 4 OBJECT GLOBAL DEFAULT 28 udp_memory_allocated
127939: c0c2db44 16 OBJECT GLOBAL DEFAULT 3 uuid_index
127940: c135dfc4 4 OBJECT GLOBAL DEFAULT 28 fscache_n_updates
127950: c122b070 24 OBJECT GLOBAL DEFAULT 26 fscache_addremove_sem
127956: c12ac7e8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_d
127963: c122ae24 20 OBJECT GLOBAL DEFAULT 26 configfs_symlink_mutex
127983: c135e018 4 OBJECT GLOBAL DEFAULT 28 fscache_n_retrievals_ok
127990: c12acc20 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_neigh_timer_
128002: c1205f30 4 OBJECT GLOBAL DEFAULT 26 sysctl_tstamp_allow_data
128007: c12ac140 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_spi_transfer
128017: c126a0b8 8 OBJECT GLOBAL DEFAULT 26 pci_root_buses
128029: c12a9650 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_co
128054: c1205680 4 OBJECT GLOBAL DEFAULT 26 sysctl_unprivileged_bpf_d
128077: c0c466e0 6 OBJECT GLOBAL DEFAULT 3 power_group_name
128089: c135eb98 1 OBJECT GLOBAL DEFAULT 28 recover_lost_locks
128103: c123a864 12 OBJECT GLOBAL DEFAULT 26 nfs3_xattr_handlers
128120: c12a8a80 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pm_qos_remov
128130: c12aa700 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_mkdir_ex
128138: c0c66994 248 OBJECT GLOBAL DEFAULT 3 rtm_ipv4_policy
128148: c1205734 4 OBJECT GLOBAL DEFAULT 26 totalcma_pages
128157: c126db34 606 OBJECT GLOBAL DEFAULT 26 dfont_unitable
128166: c12a96f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_track_foreig
128179: c1204ff8 4 OBJECT GLOBAL DEFAULT 26 __cpu_possible_mask
128189: c135dfe4 4 OBJECT GLOBAL DEFAULT 28 fscache_n_attr_changed_ok
128201: c12a9590 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_wa
128206: c12a9d58 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_journal
128240: c12ab468 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_writepa
128251: c12ab4b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_submit_
128283: c135ff14 4 OBJECT GLOBAL DEFAULT 28 pci_msi_ignore_mask
128293: c12a93b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_migrate_p
128297: c0c286b8 12 OBJECT GLOBAL DEFAULT 3 rsapubkey_decoder
128325: c1339f18 1 OBJECT GLOBAL DEFAULT 28 swap_slot_cache_enabled
128336: c1207544 32 OBJECT GLOBAL DEFAULT 26 ip6tun_encaps
128351: c12aa7d8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_lookup_r
128362: c12bcff4 4 OBJECT GLOBAL DEFAULT 28 calc_load_tasks
128378: c1224b98 28 OBJECT GLOBAL DEFAULT 26 migrate_reason_names
128413: c122ac28 112 OBJECT GLOBAL DEFAULT 26 proc_root
128433: c12acc38 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_neigh_update
128441: c0c12980 128 OBJECT GLOBAL DEFAULT 3 configfs_symlink_inode_op
128450: c133cefc 4 OBJECT GLOBAL DEFAULT 28 kernfs_iattrs_cache
128460: c0c15ec0 128 OBJECT GLOBAL DEFAULT 3 fat_file_operations
128464: c12aac58 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_getattr
128471: c12074e4 4 OBJECT GLOBAL DEFAULT 26 sysctl_icmp_msgs_burst
128472: c1217900 20 OBJECT GLOBAL DEFAULT 26 ftrace_lock
128480: c0c649e4 32 OBJECT GLOBAL DEFAULT 3 bpf_sk_storage_delete_pro
128481: c12ac560 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_dbc_han
128483: c1205854 4 OBJECT GLOBAL DEFAULT 26 do_swap_account
128485: c127c404 20 OBJECT GLOBAL DEFAULT 26 usb_port_peer_mutex
128493: c12bb8c4 4 OBJECT GLOBAL DEFAULT 28 panic_blink
128516: c0c0a9d8 20 OBJECT GLOBAL DEFAULT 3 cg_dev_verifier_ops
128526: c12a8150 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_initcall_fin
128538: c12050f0 4 OBJECT GLOBAL DEFAULT 26 sysctl_hung_task_timeout_
128575: c12aa148 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mb_new_
128580: c135df3c 4 OBJECT GLOBAL DEFAULT 28 fscache_root
128587: c0c4890c 1764 OBJECT GLOBAL DEFAULT 3 arizona_of_match
128597: c12e1b2c 8 OBJECT GLOBAL DEFAULT 28 sys_tz
128611: c1390770 4 OBJECT GLOBAL DEFAULT 28 dns_resolver_debug
128628: c1205f2c 4 OBJECT GLOBAL DEFAULT 26 sysctl_rmem_max
128631: c12ad628 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_get_m
128643: c12ab588 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_falloca
128657: c0c10740 128 OBJECT GLOBAL DEFAULT 3 proc_pid_link_inode_opera
128694: c1363580 4 OBJECT GLOBAL DEFAULT 28 mm_vc_mem_size
128696: c12ab5b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_lookup_
128707: c12183e0 76 OBJECT GLOBAL DEFAULT 26 event_branch
128742: c12aa310 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_evict_i
128754: c1205160 4 OBJECT GLOBAL DEFAULT 26 ftrace_trace_function
128757: c12a8d98 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rseq_ip_fixu
128773: c12a97b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_flock_lock_i
128781: c12ad520 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_creat
128784: c12ab498 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_write_b
128798: c12aa280 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_journal
128820: c1293f40 4 OBJECT GLOBAL DEFAULT 26 vchiq_core_log_level
128828: c12a9e60 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_truncat
128849: c0e56558 4 OBJECT GLOBAL DEFAULT 3 proc_dir_entry_cache
128850: c12acbc0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mc_event
128860: c120b024 4 OBJECT GLOBAL DEFAULT 26 firmware_ops
128866: c12a8be8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_powernv_thro
128875: c12e1adc 4 OBJECT GLOBAL DEFAULT 28 max_segment
128878: c0c3f308 16 OBJECT GLOBAL DEFAULT 3 color_table
128883: c1205030 4 OBJECT GLOBAL DEFAULT 26 sysctl_sched_features
128891: c12accc8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_br_fdb_add
128937: c12aa418 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_handle_
128948: c12a9c98 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_get_res
128959: c1205970 4 OBJECT GLOBAL DEFAULT 26 fanotify_event_cachep
129004: c10ab0c0 448 OBJECT GLOBAL DEFAULT 25 softnet_data
129035: c123a928 32 OBJECT GLOBAL DEFAULT 26 nfs_v4
129040: c12153c0 8 OBJECT GLOBAL DEFAULT 26 perf_event_cgrp_subsys_on
129054: c0c02008 4 OBJECT GLOBAL DEFAULT 3 cpu_all_bits
129059: c12a8a38 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pm_qos_updat
129069: c135ff10 1 OBJECT GLOBAL DEFAULT 28 pcie_pme_msi_disabled
129070: c12bb3d0 4 OBJECT GLOBAL DEFAULT 28 top_pmd
129083: c12ab8d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_block_unplug
129090: c12ad3b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc__auth_to
129094: c12ab2b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_update_
129113: c121824c 4 OBJECT GLOBAL DEFAULT 26 ftrace_graph_return
129115: c1205688 4 OBJECT GLOBAL DEFAULT 26 sysctl_perf_event_paranoi
129118: c12153c8 8 OBJECT GLOBAL DEFAULT 26 perf_event_cgrp_subsys_en
129121: c12aa6b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_remove_e
129122: c0c4e190 4 OBJECT GLOBAL DEFAULT 3 phy_10gbit_features_array
129163: c1333c2c 4 OBJECT GLOBAL DEFAULT 28 kmem_cache
129165: c1229378 36 OBJECT GLOBAL DEFAULT 26 init_fs
129166: c135e0e0 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cache_no_space_
129188: c12ac470 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_urb_deq
129191: c1362bb0 4 OBJECT GLOBAL DEFAULT 28 funcbufleft
129219: c13338f8 8 OBJECT GLOBAL DEFAULT 28 bpf_stats_enabled_key
129248: c1206b7c 4 OBJECT GLOBAL DEFAULT 26 nf_ipv6_ops
129258: c126f854 512 OBJECT GLOBAL DEFAULT 26 shift_ctrl_map
129274: c0c20f68 24 OBJECT GLOBAL DEFAULT 3 nlm_program
129287: c1261b44 216 OBJECT GLOBAL DEFAULT 26 key_sysctls
129304: c1210c04 10 OBJECT GLOBAL DEFAULT 26 devkmsg_log_str
129307: c12e1ac8 4 OBJECT GLOBAL DEFAULT 28 dma_contiguous_default_ar
129308: c0c0e02c 128 OBJECT GLOBAL DEFAULT 3 proc_mountstats_operation
129320: c0c08a00 4 OBJECT GLOBAL DEFAULT 3 print_type_format_symbol
129324: c136a4a0 4 OBJECT GLOBAL DEFAULT 28 bulk_waiter_spinlock
129332: c135f518 4 OBJECT GLOBAL DEFAULT 28 key_user_tree
129358: c12a9a58 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_getfsma
129382: c12ab720 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_truncat
129400: c12a9638 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_wa
129431: c12056dc 4 OBJECT GLOBAL DEFAULT 26 sysctl_user_reserve_kbyte
129448: c1365a28 16000 OBJECT GLOBAL DEFAULT 28 buffer
129454: c12a85a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_proces
129457: c1203d40 8 OBJECT GLOBAL DEFAULT 26 jiffies_lock
129470: c1361d88 4 OBJECT GLOBAL DEFAULT 28 memcpy_parent
129495: c12e1a6c 4 OBJECT GLOBAL DEFAULT 28 no_irq_affinity
129504: c0c636bc 32 OBJECT GLOBAL DEFAULT 3 bpf_tcp_sock_proto
129514: c0c584c8 8 OBJECT GLOBAL DEFAULT 3 governor_sysfs_ops
129515: c12a8a20 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_dev_pm_qos_a
129533: c12ac530 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_dbc_gad
129547: c0c0d030 128 OBJECT GLOBAL DEFAULT 3 pipefifo_fops
129564: c135dfa4 4 OBJECT GLOBAL DEFAULT 28 fscache_n_acquires_oom
129607: c12ac8f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_set_alar
129614: c12bbd9c 4 OBJECT GLOBAL DEFAULT 28 reboot_force
129623: c1369b00 4 OBJECT GLOBAL DEFAULT 28 __i2c_first_dynamic_bus_n
129634: c138bd18 1028 OBJECT GLOBAL DEFAULT 28 raw_v4_hashinfo
129637: c0c641b4 20 OBJECT GLOBAL DEFAULT 3 cg_sock_verifier_ops
129639: c0c4e0e0 16 OBJECT GLOBAL DEFAULT 3 phy_10_100_features_array
129642: c12113f4 4 OBJECT GLOBAL DEFAULT 26 num_rcu_lvl
129643: c12bb054 4 OBJECT GLOBAL DEFAULT 28 initrd_start
129647: c1213ebc 36 OBJECT GLOBAL DEFAULT 26 cgroup_fs_type
129672: c0c130dc 128 OBJECT GLOBAL DEFAULT 3 ext4_dir_operations
129675: c12acbf0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_neigh_event_
129682: c109b1ac 4 OBJECT GLOBAL DEFAULT 24 __event_funcgraph_entry
129684: c120e74c 8 OBJECT GLOBAL DEFAULT 26 init_groups
129687: c1205920 4 OBJECT GLOBAL DEFAULT 26 sysctl_nr_open
129690: c0c0e12c 128 OBJECT GLOBAL DEFAULT 3 proc_mounts_operations
129692: c0c089f8 7 OBJECT GLOBAL DEFAULT 3 print_type_format_string
129703: c127e96c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_grxfsiz
129711: c0c085b0 20 OBJECT GLOBAL DEFAULT 3 tracepoint_verifier_ops
129727: c0c36690 24 OBJECT GLOBAL DEFAULT 3 font_vga_8x8
129736: c12a8f78 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_vmscan_wa
129758: c12ac650 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_dbg_qui
129772: c12ad418 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc__unparsa
129781: c0c15a00 24 OBJECT GLOBAL DEFAULT 3 ramfs_fs_parameters
129788: c12ab7e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_iget
129793: c12e49e8 112 OBJECT GLOBAL DEFAULT 28 kgdb_info
129808: c1365a18 4 OBJECT GLOBAL DEFAULT 28 int_done
129811: c135dfd4 4 OBJECT GLOBAL DEFAULT 28 fscache_n_relinquishes_nu
129825: c12a97d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_generic_dele
129837: c0c0d4ac 16 OBJECT GLOBAL DEFAULT 3 mounts_op
129869: c12aa358 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_free_in
129892: c135eb94 4 OBJECT GLOBAL DEFAULT 28 nfs_net_id
129893: c10a96a0 236 OBJECT GLOBAL DEFAULT 25 vm_event_states
129900: c12182b0 20 OBJECT GLOBAL DEFAULT 26 event_mutex
129902: c12a9e00 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_ext_map
129904: c0c18ddc 12 OBJECT GLOBAL DEFAULT 3 nfs4_fattr_bitmap
129908: c12ad178 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_xprt_do_
129910: c1227058 4 OBJECT GLOBAL DEFAULT 26 pipe_user_pages_soft
129968: c135e078 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_pend
129971: c1205718 4 OBJECT GLOBAL DEFAULT 26 mmap_rnd_bits
129974: c12acea8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_napi_gro_fra
129984: c1206024 4 OBJECT GLOBAL DEFAULT 26 sysctl_devconf_inherit_in
129985: c1218248 4 OBJECT GLOBAL DEFAULT 26 ftrace_graph_entry
129986: c12ac440 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
129989: c10a9f2c 16 OBJECT GLOBAL DEFAULT 25 flush_works
129991: c12a97a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_time_out_lea
130006: c1205f70 60 OBJECT GLOBAL DEFAULT 26 flow_keys_dissector
130010: c0c19e2c 28 OBJECT GLOBAL DEFAULT 3 nfs4_callback_version1
130021: c12ab630 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_backgro
130034: c12ab8e8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_block_plug
130054: c0c02320 16 OBJECT GLOBAL DEFAULT 3 param_ops_long
130072: c13905f0 4 OBJECT GLOBAL DEFAULT 28 nfsd_debug
130076: c12aa7a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_atomic_o
130091: c12a8d80 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xdp_exceptio
130095: c12aa490 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_commit_
130105: c0c64210 4 OBJECT GLOBAL DEFAULT 3 lwt_in_prog_ops
130107: c12aa7f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_lookup_e
130108: c12ab930 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_block_bio_co
130145: c12a85d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_proces
130147: c12064dc 8 OBJECT GLOBAL DEFAULT 26 xps_needed
130169: c12abe28 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regmap_hw_wr
130211: c12ac3b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
130226: c1217408 44 OBJECT GLOBAL DEFAULT 26 kprobe_optinsn_slots
130235: c12a8348 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_workqueue_ex
130262: c120504c 1 OBJECT GLOBAL DEFAULT 26 sched_debug_enabled
130284: c1338628 4 OBJECT GLOBAL DEFAULT 28 percpu_pagelist_fraction
130285: c0c09e18 32 OBJECT GLOBAL DEFAULT 3 bpf_map_update_elem_proto
130290: c12ad5b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_bad_s
130293: c12abb40 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_prepare
130300: c1262dae 1 OBJECT GLOBAL DEFAULT 26 aa_g_hash_policy
130327: c12aa5c8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_sillyren
130343: c135ebdc 2 OBJECT GLOBAL DEFAULT 28 nfs_callback_nr_threads
130356: c1262dad 1 OBJECT GLOBAL DEFAULT 26 aa_g_audit_header
130358: c12aaa60 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pnfs_mds_fal
130405: c12aa610 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_link_exi
130411: c12a9e90 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_unlink_
130435: c138bb40 448 OBJECT GLOBAL DEFAULT 28 tcp_hashinfo
130439: c12202d8 8 OBJECT GLOBAL DEFAULT 26 bdi_list
130443: c1362370 4 OBJECT GLOBAL DEFAULT 28 console_blanked
130453: c1261a9c 84 OBJECT GLOBAL DEFAULT 26 key_type_logon
130454: c12ab198 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cachefiles_u
130470: c120517c 4 OBJECT GLOBAL DEFAULT 26 tracing_buffer_mask
130471: c12a9c80 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_ext_sho
130485: c12aa898 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_writebac
130486: c120ec34 4 OBJECT GLOBAL DEFAULT 26 sysctl_sched_rt_period
130492: c12abb28 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_unprepar
130530: c126f654 512 OBJECT GLOBAL DEFAULT 26 alt_map
130536: c12bb190 8 OBJECT GLOBAL DEFAULT 28 elf_platform
130548: c0c142c0 128 OBJECT GLOBAL DEFAULT 3 ext4_special_inode_operat
130560: c12acf20 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_napi_gro_rec
130568: c1204fdc 4 OBJECT GLOBAL DEFAULT 26 __machine_arch_type
130571: c0c26204 128 OBJECT GLOBAL DEFAULT 3 f2fs_file_operations
130584: c1204fcc 4 OBJECT GLOBAL DEFAULT 26 elf_hwcap
130591: c0c3be54 96 OBJECT GLOBAL DEFAULT 3 clk_multiplier_ops
130592: c12a9920 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_fscache_disa
130593: c1283e90 84 OBJECT GLOBAL DEFAULT 26 i2c_bus_type
130599: c123a8a8 12 OBJECT GLOBAL DEFAULT 26 nfs4_xattr_handlers
130600: c12164d4 132 OBJECT GLOBAL DEFAULT 26 cpuset_cgrp_subsys
130608: c0c66330 16 OBJECT GLOBAL DEFAULT 3 udp_seq_ops
130609: c0e563e0 4 OBJECT GLOBAL DEFAULT 3 pcpu_nr_slots
130616: c0c64184 20 OBJECT GLOBAL DEFAULT 3 sock_ops_verifier_ops
130619: c135dfc8 4 OBJECT GLOBAL DEFAULT 28 fscache_n_updates_null
130641: c12a8240 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cpuhp_multi_
130644: c135e000 4 OBJECT GLOBAL DEFAULT 28 fscache_n_allocs_nobufs
130665: c12ad1a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_drop
130672: c12a99c8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_sync_fs
130674: c12accb0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_br_fdb_exter
130682: c126f454 512 OBJECT GLOBAL DEFAULT 26 ctrl_alt_map
130696: c12aa1a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_invalid
130705: c12ac908 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_read_ala
130717: c109f278 12 OBJECT GLOBAL DEFAULT 25 kprobe_ctlblk
130726: c1361eb8 4 OBJECT GLOBAL DEFAULT 28 tty_class
130728: c1277360 7 OBJECT GLOBAL DEFAULT 26 scsi_scan_type
130744: c12a1c9c 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_funcgr
130759: c12aaac0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_layoutc
130766: c0c09c38 32 OBJECT GLOBAL DEFAULT 3 bpf_get_local_storage_pro
130768: c0c624f8 72 OBJECT GLOBAL DEFAULT 3 dst_default_metrics
130769: c1218724 76 OBJECT GLOBAL DEFAULT 26 event_funcgraph_exit
130773: c0c02578 8 OBJECT GLOBAL DEFAULT 3 max_cfs_quota_period
130776: c12ac7a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_ep_enabl
130777: c12a81b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ipi_entry
130783: c12abca8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_get_random_b
130785: c12ab108 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_setclie
130808: c12aa478 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_drop_tr
130810: c12aa850 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_fsync_ex
130830: c120516c 4 OBJECT GLOBAL DEFAULT 26 ftrace_enabled
130847: c0c0d1a8 16 OBJECT GLOBAL DEFAULT 3 slash_name
130869: c12aab38 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_write
130880: c1261960 4 OBJECT GLOBAL DEFAULT 26 key_quota_root_maxkeys
130898: c12a88b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_attac
130903: c1369ce0 4 OBJECT GLOBAL DEFAULT 28 mmc_debug2
130906: c0c16f00 128 OBJECT GLOBAL DEFAULT 3 nfs_referral_inode_operat
130908: c1205858 132 OBJECT GLOBAL DEFAULT 26 memory_cgrp_subsys
130924: c1213d28 252 OBJECT GLOBAL DEFAULT 26 init_css_set
130938: c135ee70 4 OBJECT GLOBAL DEFAULT 28 layoutstats_timer
130950: c12a9200 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_kfree
130953: c12a88d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_setup
130961: c0c26a80 84 OBJECT GLOBAL DEFAULT 3 f2fs_meta_aops
131000: c1333c0c 4 OBJECT GLOBAL DEFAULT 28 mm_kobj
131008: c135f590 4 OBJECT GLOBAL DEFAULT 28 nulldfa
131041: c12bb3a8 8 OBJECT GLOBAL DEFAULT 28 arm_dma_limit
131045: c0c19b90 4 OBJECT GLOBAL DEFAULT 3 nfs41_maxgetdevinfo_overh
131047: c0c4c514 36 OBJECT GLOBAL DEFAULT 3 dma_fence_chain_ops
131049: c1205090 4 OBJECT GLOBAL DEFAULT 26 rcu_num_nodes
131054: c1206aa8 96 OBJECT GLOBAL DEFAULT 26 pfifo_head_drop_qdisc_ops
131064: c0c02d30 44 OBJECT GLOBAL DEFAULT 3 irq_domain_simple_ops
131071: c12ad490 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_bad_veri
131081: c12ab078 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_destroy
131086: c0c6422c 20 OBJECT GLOBAL DEFAULT 3 cg_skb_verifier_ops
131103: c0c4e19c 8 OBJECT GLOBAL DEFAULT 3 phy_basic_t1_features_arr
131110: c12064c8 4 OBJECT GLOBAL DEFAULT 26 netdev_tstamp_prequeue
131118: c109b190 4 OBJECT GLOBAL DEFAULT 24 __event_print
131125: c12a85e8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_proces
131133: c12050cc 4 OBJECT GLOBAL DEFAULT 26 nr_cpu_ids
131139: c126a320 24 OBJECT GLOBAL DEFAULT 26 pci_bus_sem
131140: c12ac5a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
131146: c127e86b 1 OBJECT GLOBAL DEFAULT 26 microframe_schedule
131158: c120e790 20 OBJECT GLOBAL DEFAULT 26 system_transition_mutex
131170: c12050dc 4 OBJECT GLOBAL DEFAULT 26 cpuset_memory_pressure_en
131177: c12ac518 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_free_vi
131186: c12ac1b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mdio_access
131206: c10a9814 20 OBJECT GLOBAL DEFAULT 25 pcpu_drain
131212: c135e0d8 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cop_uncache_pag
131224: c12aa328 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_allocat
131237: c1205f10 4 OBJECT GLOBAL DEFAULT 26 sysctl_net_busy_poll
131242: c0c6645c 128 OBJECT GLOBAL DEFAULT 3 icmp_err_convert
131246: c120dd58 376 OBJECT GLOBAL DEFAULT 26 init_user_ns
131267: c1333b98 4 OBJECT GLOBAL DEFAULT 28 block_dump
131273: c12bb2c0 20 OBJECT GLOBAL DEFAULT 28 mpidr_hash
131280: c1210bd8 28 OBJECT GLOBAL DEFAULT 26 printk_ratelimit_state
131281: c126a170 4 OBJECT GLOBAL DEFAULT 26 pci_hotplug_mem_size
131290: c0c19b94 4 OBJECT GLOBAL DEFAULT 3 nfs41_maxread_overhead
131300: c12050f4 4 OBJECT GLOBAL DEFAULT 26 sysctl_hung_task_check_in
131326: c0c0eeec 128 OBJECT GLOBAL DEFAULT 3 proc_pid_smaps_operations
131335: c1210e1c 144 OBJECT GLOBAL DEFAULT 26 dummy_irq_chip
131376: c12a9230 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_kmalloc_node
131377: c12aa718 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_mkdir_en
131379: c122b09c 8 OBJECT GLOBAL DEFAULT 26 fscache_cache_list
131380: c12a9e30 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_ext_con
131405: c12ac860 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_v
131412: c12aa778 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_create_e
131413: c1294cc0 24 OBJECT GLOBAL DEFAULT 26 pernet_ops_rwsem
131416: c127c3b8 4 OBJECT GLOBAL DEFAULT 26 usbcore_name
131421: c0c15400 128 OBJECT GLOBAL DEFAULT 3 ext4_symlink_inode_operat
131463: c12aa250 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_writepa
131472: c127e87c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_regvalue
131479: c12a9a10 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_shutdow
131484: c127454c 1 OBJECT GLOBAL DEFAULT 26 scsi_use_blk_mq
131488: c12bd094 8 OBJECT GLOBAL DEFAULT 28 sched_asym_cpucapacity
131493: c0e54db0 1 OBJECT GLOBAL DEFAULT 3 rodata_enabled
131496: c12836ac 20 OBJECT GLOBAL DEFAULT 26 input_poller_attribute_gr
131498: c0c02b78 128 OBJECT GLOBAL DEFAULT 3 kmsg_fops
131503: c121c294 4 OBJECT GLOBAL DEFAULT 26 dirty_expire_interval
131509: c1369cec 4 OBJECT GLOBAL DEFAULT 28 sdhost_log_buf
131520: c1215440 8 OBJECT GLOBAL DEFAULT 26 cpuset_cgrp_subsys_on_dfl
131551: c135e0bc 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cop_attr_change
131552: c0c52ef8 128 OBJECT GLOBAL DEFAULT 3 usbfs_devices_fops
131564: c12a8570 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_stat_w
131578: c1205724 4 OBJECT GLOBAL DEFAULT 26 _totalram_pages
131592: c106d814 4 OBJECT GLOBAL DEFAULT 24 late_time_init
131617: c135df60 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cookie_data
131629: c135e088 4 OBJECT GLOBAL DEFAULT 28 fscache_n_op_rejected
131630: c12ad040 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_task_wak
131650: c13637e4 4 OBJECT GLOBAL DEFAULT 28 coherency_max_size
131670: c12e1b09 1 OBJECT GLOBAL DEFAULT 28 pm_freezing
131690: c12ab0d8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_renew
131697: c12abc00 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regulator_en
131700: c12a8300 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_workqueue_ac
131715: c13659d4 4 OBJECT GLOBAL DEFAULT 28 g_dbg_lvl
131718: c0c0a87c 84 OBJECT GLOBAL DEFAULT 3 stack_trace_map_ops
131726: c0c6687c 104 OBJECT GLOBAL DEFAULT 3 inet_stream_ops
131750: c12ac6e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_ep_free_
131753: c120507c 4 OBJECT GLOBAL DEFAULT 26 rcu_cpu_stall_suppress
131758: c12a8cd8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xdp_cpumap_e
131777: c0c2ccb8 12 OBJECT GLOBAL DEFAULT 3 x509_akid_decoder
131786: c12ad148 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_xprt_deq
131803: c12aab68 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_read
131816: c12aa448 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_jbd2_submit_
131845: c0c18ea0 212 OBJECT GLOBAL DEFAULT 3 nfs_v4_clientops
131848: c129b2b0 4 OBJECT GLOBAL DEFAULT 26 sysctl_fib_sync_mem_max
131868: c121bbe8 20 OBJECT GLOBAL DEFAULT 26 oom_lock
131869: c12aaaa8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_layoutr
131880: c12a9cb0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_find_de
131907: c1338614 8 OBJECT GLOBAL DEFAULT 28 init_on_free
131926: c12ad2f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_socket_r
131929: c0c0167c 64 OBJECT GLOBAL DEFAULT 3 probes_condition_checks
131937: c0c2dbfc 17 OBJECT GLOBAL DEFAULT 3 hex_asc
131953: c127e9cc 16 OBJECT GLOBAL DEFAULT 26 dev_attr_devspeed
131956: c0c26380 128 OBJECT GLOBAL DEFAULT 3 f2fs_special_inode_operat
131965: c12a8fc0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_vmscan_lr
131967: c12a89d8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_irq_disable
131971: c120e12c 108 OBJECT GLOBAL DEFAULT 26 usermodehelper_table
131977: c12960b8 12 OBJECT GLOBAL DEFAULT 26 netdev_unregistering_wq
131984: c12e9940 4 OBJECT GLOBAL DEFAULT 28 kdb_state
131992: c12a89a8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cgroup_remou
131997: c12ad358 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_reply_pa
132011: c1299940 4 OBJECT GLOBAL DEFAULT 26 default_qdisc_ops
132014: c0c6263c 104 OBJECT GLOBAL DEFAULT 3 nda_policy
132028: c1292b00 4 OBJECT GLOBAL DEFAULT 26 arch_timer_read_counter
132046: c135e054 4 OBJECT GLOBAL DEFAULT 28 fscache_n_store_calls
132058: c12ab228 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_drop_in
132069: c0c0eb90 24 OBJECT GLOBAL DEFAULT 3 posix_acl_default_xattr_h
132073: c12a9428 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_qu
132081: c106d004 1024 OBJECT GLOBAL DEFAULT 24 boot_command_line
132108: c1217914 88 OBJECT GLOBAL DEFAULT 26 global_ops
132119: c12aaf40 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_cached_
132131: c12ab510 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_submit_
132135: c12bb050 4 OBJECT GLOBAL DEFAULT 28 initrd_end
132171: c0c09db8 32 OBJECT GLOBAL DEFAULT 3 bpf_map_pop_elem_proto
132179: c12057cc 120 OBJECT GLOBAL DEFAULT 26 swapper_spaces
132200: c12a8720 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_itimer_state
132204: c12a9aa0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_fsmap_l
132212: c12153a0 8 OBJECT GLOBAL DEFAULT 26 pids_cgrp_subsys_on_dfl_k
132213: c12aad60 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_access
132221: c109b188 4 OBJECT GLOBAL DEFAULT 24 __event_bputs
132237: c1283e4c 24 OBJECT GLOBAL DEFAULT 26 i2c_client_type
132258: c135df44 4 OBJECT GLOBAL DEFAULT 28 fscache_op_wq
132294: c0c366a8 24 OBJECT GLOBAL DEFAULT 3 font_vga_8x16
132296: c0c0d100 128 OBJECT GLOBAL DEFAULT 3 page_symlink_inode_operat
132318: c12126a0 4 OBJECT GLOBAL DEFAULT 26 tick_usec
132321: c1365a20 4 OBJECT GLOBAL DEFAULT 28 fiq_done
132350: c12ac2f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_configu
132361: c12acf98 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_net_dev_xmit
132384: c0c3c050 96 OBJECT GLOBAL DEFAULT 3 clk_gpio_gate_ops
132388: c1070000 52 OBJECT GLOBAL DEFAULT 24 v7_cache_fns
132395: c0c4c4f0 36 OBJECT GLOBAL DEFAULT 3 dma_fence_array_ops
132405: c1299c88 12 OBJECT GLOBAL DEFAULT 26 genl_sk_destructing_waitq
132410: c126c514 60 OBJECT GLOBAL DEFAULT 26 regulator_class
132412: c1077320 4 OBJECT GLOBAL DEFAULT 24 mminit_loglevel
132417: c0c21310 28 OBJECT GLOBAL DEFAULT 3 nlmsvc_lock_operations
132446: c106d864 4 OBJECT GLOBAL DEFAULT 24 rd_doload
132449: c1227054 4 OBJECT GLOBAL DEFAULT 26 pipe_max_size
132454: c127c4ac 20 OBJECT GLOBAL DEFAULT 26 usb_bus_idr_lock
132460: c12a8540 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_stat_i
132461: c135dff8 4 OBJECT GLOBAL DEFAULT 28 fscache_n_allocs_ok
132503: c138c120 8 OBJECT GLOBAL DEFAULT 28 udp_encap_needed_key
132532: c0c16f80 128 OBJECT GLOBAL DEFAULT 3 nfs_mountpoint_inode_oper
132539: c1206c34 4 OBJECT GLOBAL DEFAULT 26 inet_peer_maxttl
132542: c12ac878 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_c
132544: c12058ec 4 OBJECT GLOBAL DEFAULT 26 sysctl_protected_regular
132545: c0c0a944 20 OBJECT GLOBAL DEFAULT 3 cg_sysctl_verifier_ops
132556: c12aa2e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_begin_o
132575: c1224bf4 8 OBJECT GLOBAL DEFAULT 26 vmap_area_list
132579: c0c3e7b8 16 OBJECT GLOBAL DEFAULT 3 tty_ldiscs_seq_ops
132605: c1215408 8 OBJECT GLOBAL DEFAULT 26 memory_cgrp_subsys_enable
132614: c12bb360 16 OBJECT GLOBAL DEFAULT 28 secondary_data
132621: c12e1ad4 4 OBJECT GLOBAL DEFAULT 28 swiotlb_force
132622: c12ac9c8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rtc_read_off
132636: c1290e20 20 OBJECT GLOBAL DEFAULT 26 opp_table_lock
132639: c126af98 84 OBJECT GLOBAL DEFAULT 26 amba_bustype
132641: c0c2dc10 17 OBJECT GLOBAL DEFAULT 3 hex_asc_upper
132680: c12050ac 4 OBJECT GLOBAL DEFAULT 26 hrtimer_resolution
132682: c1363cac 4 OBJECT GLOBAL DEFAULT 28 usb_hcds_loaded
132696: c0c08580 20 OBJECT GLOBAL DEFAULT 3 raw_tracepoint_writable_v
132709: c135df70 4 OBJECT GLOBAL DEFAULT 28 fscache_n_object_avail
132712: c12a87b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_alarmtimer_s
132727: c0c08a0c 5 OBJECT GLOBAL DEFAULT 3 print_type_format_x32
132732: c0c0f080 128 OBJECT GLOBAL DEFAULT 3 proc_link_inode_operation
132735: c12aa2f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mark_in
132745: c1267980 12 OBJECT GLOBAL DEFAULT 26 btree_geo128
132758: c12aca10 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_i2c_write
132789: c12aac88 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_open_st
132814: c12153d0 8 OBJECT GLOBAL DEFAULT 26 net_cls_cgrp_subsys_on_df
132824: c138db8c 4 OBJECT GLOBAL DEFAULT 28 unix_gc_lock
132841: c0c0a25c 84 OBJECT GLOBAL DEFAULT 3 trie_map_ops
132866: c0c281c4 16 OBJECT GLOBAL DEFAULT 3 aa_profile_mode_names
132868: c0c2ce84 80 OBJECT GLOBAL DEFAULT 3 hash_digest_size
132870: c132d6a4 4 OBJECT GLOBAL DEFAULT 28 ftrace_update_tot_cnt
132882: c12ab168 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cachefiles_m
132883: c12ab480 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_write_e
132889: c1206434 8 OBJECT GLOBAL DEFAULT 26 ptype_all
132893: c12a8eb8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_reclaim_retr
132894: c1333b38 4 OBJECT GLOBAL DEFAULT 28 vm_highmem_is_dirtyable
132898: c127c4c0 20 OBJECT GLOBAL DEFAULT 26 usb_bus_idr
132911: c12059a0 4 OBJECT GLOBAL DEFAULT 26 nsm_local_state
132919: c1234e34 36 OBJECT GLOBAL DEFAULT 26 nfs_fs_type
132924: c120dd08 80 OBJECT GLOBAL DEFAULT 26 root_user
132925: c1213ef4 8 OBJECT GLOBAL DEFAULT 26 cgroup_roots
132933: c135e058 4 OBJECT GLOBAL DEFAULT 28 fscache_n_store_pages
132944: c12bcfe8 12 OBJECT GLOBAL DEFAULT 28 avenrun
132952: c12a8c30 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpm_idle
132993: c1205068 4 OBJECT GLOBAL DEFAULT 26 printk_delay_msec
132998: c0c0a808 84 OBJECT GLOBAL DEFAULT 3 cpu_map_ops
133004: c1207f48 8 OBJECT GLOBAL DEFAULT 26 __pv_offset
133016: c12a8408 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_overut
133021: c135dff4 4 OBJECT GLOBAL DEFAULT 28 fscache_n_allocs
133037: c12a8378 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_wakeup
133038: c133860c 8 OBJECT GLOBAL DEFAULT 28 init_on_alloc
133074: c1262298 128 OBJECT GLOBAL DEFAULT 26 aa_file_perm_names
133078: c1262cac 4 OBJECT GLOBAL DEFAULT 26 unprivileged_userns_appar
133081: c12abb58 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_clk_prepare_
133097: c0c520f4 128 OBJECT GLOBAL DEFAULT 3 usbdev_file_operations
133101: c0c16600 64 OBJECT GLOBAL DEFAULT 3 nfs_dentry_operations
133108: c135f680 4 OBJECT GLOBAL DEFAULT 28 blk_requestq_cachep
133120: c109f39c 4 OBJECT GLOBAL DEFAULT 25 sd_llc
133121: c120568c 4 OBJECT GLOBAL DEFAULT 26 sysctl_perf_event_sample_
133123: c127e68d 1 OBJECT GLOBAL DEFAULT 26 fiq_enable
133130: c12153e0 8 OBJECT GLOBAL DEFAULT 26 freezer_cgrp_subsys_on_df
133131: c13636a0 4 OBJECT GLOBAL DEFAULT 28 platform_notify
133154: c135fef8 4 OBJECT GLOBAL DEFAULT 28 pci_slots_kset
133159: c1291f78 24 OBJECT GLOBAL DEFAULT 26 sd_type
133176: c12a9d70 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_journal
133178: c13636a4 4 OBJECT GLOBAL DEFAULT 28 platform_notify_remove
133199: c126a378 8 OBJECT GLOBAL DEFAULT 26 pci_bridge_groups
133224: c12153f8 8 OBJECT GLOBAL DEFAULT 26 devices_cgrp_subsys_enabl
133234: c12064bc 4 OBJECT GLOBAL DEFAULT 26 rps_sock_flow_table
133251: c135e034 4 OBJECT GLOBAL DEFAULT 28 fscache_n_retrieval_op_wa
133259: c12178f8 4 OBJECT GLOBAL DEFAULT 26 ftrace_graph_hash
133269: c135fca8 200 OBJECT GLOBAL DEFAULT 28 blkcg_root
133276: c1207688 1024 OBJECT GLOBAL DEFAULT 26 inet6_protos
133283: c1369f24 80 OBJECT GLOBAL DEFAULT 28 of_cfs_overlay_group
133301: c12a8bd0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pstate_sampl
133331: c0c01f80 54 OBJECT GLOBAL DEFAULT 3 taint_flags
133352: c12a99e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_drop_in
133366: c126a380 8 OBJECT GLOBAL DEFAULT 26 pci_dev_groups
133367: c12a8450 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pelt_dl_tp
133386: c12ad3e8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc__stale_c
133399: c12bb020 1 OBJECT GLOBAL DEFAULT 28 initcall_debug
133410: c133b994 4 OBJECT GLOBAL DEFAULT 28 aio_nr
133425: c0c00098 128 OBJECT GLOBAL DEFAULT 3 linux_banner
133432: c12a9de8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_ind_map
133442: c0c085c4 4 OBJECT GLOBAL DEFAULT 3 kprobe_prog_ops
133467: c12ad328 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_socket_c
133484: c138bac8 24 OBJECT GLOBAL DEFAULT 28 tcp_sockets_allocated
133487: c120703c 1024 OBJECT GLOBAL DEFAULT 26 inet_offloads
133490: c12a9848 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_fcntl_setlk
133495: c1213184 20 OBJECT GLOBAL DEFAULT 26 module_mutex
133524: c12a9938 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_fscache_enab
133527: c12ab318 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_issue_r
133544: c12ac368 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
133549: c1215400 8 OBJECT GLOBAL DEFAULT 26 memory_cgrp_subsys_on_dfl
133557: c12ac800 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_d
133558: c0c11a44 12 OBJECT GLOBAL DEFAULT 3 sysctl_vals
133570: c12a96b0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_wbc_writepag
133583: c12ac7d0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_gadget_a
133608: c0c0a760 84 OBJECT GLOBAL DEFAULT 3 dev_map_hash_ops
133635: c12a9608 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_writeback_pa
133645: c12ad5f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_wrap
133653: c1210228 4 OBJECT GLOBAL DEFAULT 26 sysctl_sched_cfs_bandwidt
133656: c135f690 4 OBJECT GLOBAL DEFAULT 28 blk_max_pfn
133658: c121bbbc 4 OBJECT GLOBAL DEFAULT 26 sysctl_oom_dump_tasks
133659: c12ad1f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_svc_recv
133663: c121021c 4 OBJECT GLOBAL DEFAULT 26 sysctl_sched_wakeup_granu
133678: c12bb178 4 OBJECT GLOBAL DEFAULT 28 pm_power_off
133679: c12056c0 4 OBJECT GLOBAL DEFAULT 26 sysctl_perf_event_max_sta
133688: c12aa028 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_mballoc
133712: c12a9b00 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_collaps
133716: c12ad550 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_upcal
133723: c0c0a7b4 84 OBJECT GLOBAL DEFAULT 3 dev_map_ops
133724: c12a8ac8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_power_domain
133738: c1205f28 4 OBJECT GLOBAL DEFAULT 26 sysctl_wmem_max
133739: c120590c 4 OBJECT GLOBAL DEFAULT 26 sysctl_vfs_cache_pressure
133742: c12a85b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_proces
133745: c12e1b10 4 OBJECT GLOBAL DEFAULT 28 system_freezing_cnt
133762: c1333b40 4 OBJECT GLOBAL DEFAULT 28 dirty_background_bytes
133764: c1208384 36 OBJECT GLOBAL DEFAULT 26 rootfs_fs_type
133766: c12a8c00 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_cpu_idle
133778: c135ff1c 4 OBJECT GLOBAL DEFAULT 28 fb_mode_option
133781: c0c243ec 88 OBJECT GLOBAL DEFAULT 3 cachefiles_cache_ops
133785: c12bce00 448 OBJECT GLOBAL DEFAULT 28 root_task_group
133793: c12a8cc0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xdp_devmap_x
133801: c0c022c0 16 OBJECT GLOBAL DEFAULT 3 param_ops_invbool
133802: c12ad568 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpcgss_upcal
133844: c0c66154 16 OBJECT GLOBAL DEFAULT 3 ip_tos2prio
133849: c1205f18 4 OBJECT GLOBAL DEFAULT 26 sysctl_rmem_default
133856: c126f054 1024 OBJECT GLOBAL DEFAULT 26 key_maps
133901: c12a8d50 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xdp_redirect
133902: c1075bc0 1 OBJECT GLOBAL DEFAULT 24 earlycon_acpi_spcr_enable
133942: c0c0db0c 16 OBJECT GLOBAL DEFAULT 3 nosteal_pipe_buf_ops
133946: c120afd4 4 OBJECT GLOBAL DEFAULT 26 pcibios_min_io
133960: c1362b48 4 OBJECT GLOBAL DEFAULT 28 console_blank_hook
133969: c135e280 400 OBJECT GLOBAL DEFAULT 28 fscache_ops_histogram
133991: c109f288 4 OBJECT GLOBAL DEFAULT 25 process_counts
134006: c12bbd98 4 OBJECT GLOBAL DEFAULT 28 reboot_cpu
134015: c1220930 20 OBJECT GLOBAL DEFAULT 26 slab_mutex
134030: c12ac9f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_i2c_read
134031: c0c24000 128 OBJECT GLOBAL DEFAULT 3 autofs_dir_operations
134039: c0c0200c 132 OBJECT GLOBAL DEFAULT 3 cpu_bit_bitmap
134044: c12153a8 8 OBJECT GLOBAL DEFAULT 26 pids_cgrp_subsys_enabled_
134045: c0c18380 576 OBJECT GLOBAL DEFAULT 3 nfs_procedures
134049: c0c0a10c 84 OBJECT GLOBAL DEFAULT 3 perf_event_array_map_ops
134064: c1333b2c 4 OBJECT GLOBAL DEFAULT 28 sysctl_panic_on_oom
134070: c12a1be8 36 OBJECT GLOBAL DEFAULT 26 event_class_ftrace_user_s
134078: c12a8a50 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pm_qos_updat
134087: c1206868 96 OBJECT GLOBAL DEFAULT 26 noqueue_qdisc_ops
134104: c0c0df30 128 OBJECT GLOBAL DEFAULT 3 def_blk_fops
134105: c1205000 4 OBJECT GLOBAL DEFAULT 26 __cpu_active_mask
134107: c1333914 4 OBJECT GLOBAL DEFAULT 28 btf_idr_lock
134108: c126a198 1 OBJECT GLOBAL DEFAULT 26 pci_dfl_cache_line_size
134123: c12a8d68 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xdp_bulk_tx
134166: c12aa748 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_mknod_en
134197: c12a9e48 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_truncat
134230: c1217340 84 OBJECT GLOBAL DEFAULT 26 kprobe_busy
134235: c0c16640 84 OBJECT GLOBAL DEFAULT 3 nfs_dir_aops
134237: c135e010 4 OBJECT GLOBAL DEFAULT 28 fscache_n_allocs_object_d
134249: c12aa9b8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_refresh_
134270: c12aadc0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_get_fs_
134281: c0c0405c 32 OBJECT GLOBAL DEFAULT 3 cgroupns_operations
134289: c0c0e298 20 OBJECT GLOBAL DEFAULT 3 fanotify_fsnotify_ops
134307: c12059f8 4 OBJECT GLOBAL DEFAULT 26 percpu_counter_batch
134354: c135e06c 4 OBJECT GLOBAL DEFAULT 28 fscache_n_store_vmscan_bu
134361: c0c085c8 20 OBJECT GLOBAL DEFAULT 3 kprobe_verifier_ops
134410: c12185f4 76 OBJECT GLOBAL DEFAULT 26 event_user_stack
134419: c12ad4f0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_rpc_bind_sta
134433: c1369f08 4 OBJECT GLOBAL DEFAULT 28 devtree_lock
134441: c120e0c4 4 OBJECT GLOBAL DEFAULT 26 overflowgid
134464: c0c28b60 48 OBJECT GLOBAL DEFAULT 3 sha384_zero_message_hash
134468: c12ac428 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_handle_
134475: c12ac4a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_urb_enq
134481: c12ab4f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_f2fs_prepare
134486: c126de94 4 OBJECT GLOBAL DEFAULT 26 want_console
134512: c12135c0 44 OBJECT GLOBAL DEFAULT 26 cgroup_subsys
134533: c12abfd8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_dma_fence_em
134558: c136235c 4 OBJECT GLOBAL DEFAULT 28 console_driver
134567: c1203040 4 OBJECT GLOBAL DEFAULT 26 tasklist_lock
134572: c12ac6c8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_usb_ep_queue
134583: c12bb494 4 OBJECT GLOBAL DEFAULT 28 panic_on_oops
134584: c1293c98 44 OBJECT GLOBAL DEFAULT 26 usb_hid_driver
134595: c1294cd8 8 OBJECT GLOBAL DEFAULT 26 net_namespace_list
134598: c12aafd0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_cb_seqi
134603: c1261964 4 OBJECT GLOBAL DEFAULT 26 key_quota_maxkeys
134622: c12be4f0 4 OBJECT GLOBAL DEFAULT 28 pm_wq
134637: c1204ff4 4 OBJECT GLOBAL DEFAULT 26 __cpu_present_mask
134648: c12aabe0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_cb_layo
134653: c0c00044 83 OBJECT GLOBAL DEFAULT 3 linux_proc_banner
134669: c12a8270 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_softirq_exit
134678: c0e563d0 4 OBJECT GLOBAL DEFAULT 3 pcpu_unit_offsets
134683: c1205028 1 OBJECT GLOBAL DEFAULT 26 sched_smp_initialized
134691: c12a8468 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_pelt_rt_tp
134703: c12a9878 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_fscache_wrot
134717: c127e9ec 16 OBJECT GLOBAL DEFAULT 26 dev_attr_hptxfsiz
134718: c12ac3e0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_xhci_alloc_d
134735: c12056d0 4 OBJECT GLOBAL DEFAULT 26 sysctl_overcommit_ratio
134744: c12acd88 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_tcp_send_res
134745: c133df10 4 OBJECT GLOBAL DEFAULT 28 sysfs_symlink_target_lock
134774: c1207454 4 OBJECT GLOBAL DEFAULT 26 sysctl_tcp_max_orphans
134788: c1210310 168 OBJECT GLOBAL DEFAULT 26 sched_feat_keys
134792: c127ea4c 16 OBJECT GLOBAL DEFAULT 26 dev_attr_spramdump
134795: c121c288 4 OBJECT GLOBAL DEFAULT 26 dirty_background_ratio
134798: c136357c 4 OBJECT GLOBAL DEFAULT 28 sample_dev
134805: c12ad010 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_kfree_skb
134809: c12e164c 4 OBJECT GLOBAL DEFAULT 28 irq_default_affinity
134824: c12a9ab8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_es_inse
134836: c109f3a8 4 OBJECT GLOBAL DEFAULT 25 sd_llc_shared
134847: c12aa6a0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs_remove_e
134861: c125b4e0 36 OBJECT GLOBAL DEFAULT 26 autofs_fs_type
134865: c0c2cbec 24 OBJECT GLOBAL DEFAULT 3 key_being_used_for
134866: c135e060 4 OBJECT GLOBAL DEFAULT 28 fscache_n_store_pages_ove
134869: c12a81f8 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_task_rename
134875: c1279dc8 84 OBJECT GLOBAL DEFAULT 26 mdio_bus_type
134876: c0c08a34 4 OBJECT GLOBAL DEFAULT 3 print_type_format_u64
134892: c135dfec 4 OBJECT GLOBAL DEFAULT 28 fscache_n_attr_changed_no
134904: c135e0b0 4 OBJECT GLOBAL DEFAULT 28 fscache_n_cop_update_obje
134928: c0c09cf8 32 OBJECT GLOBAL DEFAULT 3 bpf_get_current_pid_tgid_
134930: c12aae20 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_symlink
134947: c0e57044 12 OBJECT GLOBAL DEFAULT 3 phy_gbit_all_ports_featur
134948: c109b198 4 OBJECT GLOBAL DEFAULT 24 __event_user_stack
134951: c0c4c538 21 OBJECT GLOBAL DEFAULT 3 reservation_seqcount_stri
134961: c12aaf28 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_nfs4_close
134985: c12a9248 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_kmem_cache_a
134992: c120ec38 8 OBJECT GLOBAL DEFAULT 26 task_groups
134997: c12a9038 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_mm_vmscan_me
134998: c1204fd0 4 OBJECT GLOBAL DEFAULT 26 elf_hwcap2
135001: c12a8390 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_sched_migrat
135013: c12a9a88 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_fsmap_h
135031: c12a9fb0 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_ext4_da_rese
135035: c0c270cc 32 OBJECT GLOBAL DEFAULT 3 ipcns_operations
135075: c129c434 4 OBJECT GLOBAL DEFAULT 26 ic_servaddr
135083: c0c127c0 128 OBJECT GLOBAL DEFAULT 3 configfs_dir_inode_operat
135089: c12abe40 24 OBJECT GLOBAL DEFAULT 26 __tracepoint_regmap_hw_wr