Newer
Older
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
12259
12260
12261
12262
12263
12264
12265
12266
12267
12268
12269
12270
12271
12272
12273
12274
12275
12276
12277
12278
12279
12280
12281
12282
12283
12284
12285
12286
12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
12310
12311
12312
12313
12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
12333
12334
12335
12336
12337
12338
12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
12349
12350
12351
12352
12353
12354
12355
12356
12357
12358
12359
12360
12361
12362
12363
12364
12365
12366
12367
12368
12369
12370
12371
12372
12373
12374
12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
12385
12386
12387
12388
12389
12390
12391
12392
12393
12394
12395
12396
12397
12398
12399
12400
12401
12402
12403
12404
12405
12406
12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
12423
12424
12425
12426
12427
12428
12429
12430
12431
12432
12433
12434
12435
12436
12437
12438
12439
12440
12441
12442
12443
12444
12445
12446
12447
12448
12449
12450
12451
12452
12453
12454
12455
12456
12457
12458
12459
12460
12461
12462
12463
12464
12465
12466
12467
12468
12469
12470
12471
12472
12473
12474
12475
12476
12477
12478
12479
12480
12481
12482
12483
12484
12485
12486
12487
12488
12489
12490
12491
12492
12493
12494
12495
12496
12497
12498
12499
12500
12501
12502
12503
12504
12505
12506
12507
12508
12509
12510
12511
12512
12513
12514
12515
12516
12517
12518
12519
12520
12521
12522
12523
12524
12525
12526
12527
12528
12529
12530
12531
12532
12533
12534
12535
12536
12537
12538
12539
12540
12541
12542
12543
12544
12545
12546
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
12557
12558
12559
12560
12561
12562
12563
12564
12565
12566
12567
12568
12569
12570
12571
12572
12573
12574
12575
12576
12577
12578
12579
12580
12581
12582
12583
12584
12585
12586
12587
12588
12589
12590
12591
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
12603
12604
12605
12606
12607
12608
12609
12610
12611
12612
12613
12614
12615
12616
12617
12618
12619
12620
12621
12622
12623
12624
12625
12626
12627
12628
12629
12630
12631
12632
12633
12634
12635
12636
12637
12638
12639
12640
12641
12642
12643
12644
12645
12646
12647
12648
12649
12650
12651
12652
12653
12654
12655
12656
12657
12658
12659
12660
12661
12662
12663
12664
12665
12666
12667
12668
12669
12670
12671
12672
12673
12674
12675
12676
12677
12678
12679
12680
12681
12682
12683
12684
12685
12686
12687
12688
12689
12690
12691
12692
12693
12694
12695
12696
12697
12698
12699
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714
12715
12716
12717
12718
12719
12720
12721
12722
12723
12724
12725
12726
12727
12728
12729
12730
12731
12732
12733
12734
12735
12736
12737
12738
12739
12740
12741
12742
12743
12744
12745
12746
12747
12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
12771
12772
12773
12774
12775
12776
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
12789
12790
12791
12792
12793
12794
12795
12796
12797
12798
12799
12800
12801
12802
12803
12804
12805
12806
12807
12808
12809
12810
12811
12812
12813
12814
12815
12816
12817
12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
12841
12842
12843
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
12942
12943
12944
12945
12946
12947
12948
12949
12950
12951
12952
12953
12954
12955
12956
12957
12958
12959
12960
12961
12962
12963
12964
12965
12966
12967
12968
12969
12970
12971
12972
12973
12974
12975
12976
12977
12978
12979
12980
12981
12982
12983
12984
12985
12986
12987
12988
12989
12990
12991
12992
12993
12994
12995
12996
12997
12998
12999
13000
ffffffc0085989ec T mntput
ffffffc008598a2c T __lookup_mnt
ffffffc008598aa4 T __is_local_mountpoint
ffffffc008598c2c T mnt_set_mountpoint
ffffffc008598d6c T fc_mount
ffffffc008598dc0 T vfs_submount
ffffffc008598e0c T mntget
ffffffc008598f14 T path_is_mountpoint
ffffffc00859905c T mnt_clone_internal
ffffffc0085990a8 T mnt_cursor_del
ffffffc00859921c T may_umount_tree
ffffffc0085994c4 T may_umount
ffffffc00859965c T __detach_mounts
ffffffc008599c0c T from_mnt_ns
ffffffc008599c1c T collect_mounts
ffffffc008599c9c T drop_collected_mounts
ffffffc008599e1c T clone_private_mount
ffffffc008599fc4 T iterate_mounts
ffffffc00859a0a8 T count_mounts
ffffffc00859a150 T finish_automount
ffffffc00859a7c0 T mnt_set_expiry
ffffffc00859a82c T mark_mounts_for_expiry
ffffffc00859ab4c T do_mount
ffffffc00859ac44 T copy_mnt_ns
ffffffc00859b294 t alloc_mnt_ns
ffffffc00859b3f0 T mount_subtree
ffffffc00859b608 T is_path_reachable
ffffffc00859b738 T path_is_under
ffffffc00859b984 T kern_unmount_array
ffffffc00859ba18 T our_mnt
ffffffc00859ba3c T current_chrooted
ffffffc00859bca0 T mnt_may_suid
ffffffc00859bcd8 t m_start.15606
ffffffc00859be74 t m_stop.15607
ffffffc00859c02c t m_next.15608
ffffffc00859c19c t m_show.15609
ffffffc00859c21c T single_release
ffffffc00859c298 T single_open_size
ffffffc00859c3f8 T single_open
ffffffc00859c4f0 t single_start
ffffffc00859c508 t single_next
ffffffc00859c524 t single_stop
ffffffc00859c530 T seq_write
ffffffc00859c598 T seq_vprintf
ffffffc00859c648 T seq_release_private
ffffffc00859c6cc T seq_release
ffffffc00859c73c T seq_read
ffffffc00859c870 T seq_read_iter
ffffffc00859ceb0 t traverse
ffffffc00859d1c0 T seq_puts
ffffffc00859d238 T seq_putc
ffffffc00859d264 T seq_printf
ffffffc00859d33c T seq_open_private
ffffffc00859d3f8 T __seq_open_private
ffffffc00859d4b0 T seq_open
ffffffc00859d544 T seq_lseek
ffffffc00859d604 T seq_list_start
ffffffc00859d63c T seq_list_next
ffffffc00859d660 T seq_hex_dump
ffffffc00859d800 T seq_file_path
ffffffc00859d828 T seq_path
ffffffc00859d978 T seq_escape
ffffffc00859db14 T seq_escape_mem_ascii
ffffffc00859dc58 T mangle_path
ffffffc00859dd1c T seq_path_root
ffffffc00859def8 T seq_dentry
ffffffc00859e0a0 T seq_put_decimal_ull_width
ffffffc00859e1b8 T seq_put_decimal_ull
ffffffc00859e1e0 T seq_put_hex_ll
ffffffc00859e338 T seq_put_decimal_ll
ffffffc00859e494 T seq_pad
ffffffc00859e53c T seq_list_start_head
ffffffc00859e57c T seq_hlist_start
ffffffc00859e5a8 T seq_hlist_start_head
ffffffc00859e5e8 T seq_hlist_next
ffffffc00859e60c T seq_hlist_start_rcu
ffffffc00859e63c T seq_hlist_start_head_rcu
ffffffc00859e678 T seq_hlist_next_rcu
ffffffc00859e6b0 T seq_hlist_start_percpu
ffffffc00859e79c T seq_hlist_next_percpu
ffffffc00859e8f0 T __arm64_sys_setxattr
ffffffc00859e92c t path_setxattr
ffffffc00859eab0 t setxattr
ffffffc00859ede0 t _copy_from_user.15664
ffffffc00859efa4 T vfs_setxattr
ffffffc00859f0c0 T __vfs_setxattr_locked
ffffffc00859f294 t xattr_permission
ffffffc00859f500 T __vfs_setxattr_noperm
ffffffc00859f7c0 T __vfs_setxattr
ffffffc00859f948 T __arm64_sys_removexattr
ffffffc00859f97c t path_removexattr
ffffffc00859fbc0 T vfs_removexattr
ffffffc00859fcb4 T __vfs_removexattr_locked
ffffffc00859fec8 T __vfs_removexattr
ffffffc0085a002c T __arm64_sys_lsetxattr
ffffffc0085a0068 T __arm64_sys_lremovexattr
ffffffc0085a009c T __arm64_sys_llistxattr
ffffffc0085a01c4 t listxattr
ffffffc0085a0454 t _copy_to_user.15681
ffffffc0085a05d8 T __arm64_sys_listxattr
ffffffc0085a0700 T __arm64_sys_lgetxattr
ffffffc0085a0834 t getxattr
ffffffc0085a0a78 T __vfs_getxattr
ffffffc0085a0e2c T __arm64_sys_getxattr
ffffffc0085a0f60 T __arm64_sys_fsetxattr
ffffffc0085a10e8 T __arm64_sys_fremovexattr
ffffffc0085a135c T __arm64_sys_flistxattr
ffffffc0085a1480 T __arm64_sys_fgetxattr
ffffffc0085a15ac T xattr_supported_namespace
ffffffc0085a1650 T vfs_getxattr_alloc
ffffffc0085a1894 T vfs_getxattr
ffffffc0085a18d0 T vfs_listxattr
ffffffc0085a1a84 T generic_listxattr
ffffffc0085a1c30 T xattr_full_name
ffffffc0085a1c74 T simple_xattr_alloc
ffffffc0085a1cec T simple_xattr_get
ffffffc0085a1e94 T simple_xattr_set
ffffffc0085a2294 T simple_xattr_list
ffffffc0085a261c T simple_xattr_list_add
ffffffc0085a2770 T simple_write_to_buffer
ffffffc0085a2830 t _copy_from_user.15697
ffffffc0085a29f4 T simple_statfs
ffffffc0085a2a1c T simple_read_from_buffer
ffffffc0085a2ad8 t _copy_to_user.15702
ffffffc0085a2c5c T simple_open
ffffffc0085a2c78 T dcache_dir_lseek
ffffffc0085a2f24 T generic_read_dir
ffffffc0085a2f34 T dcache_readdir
ffffffc0085a345c T dcache_dir_open
ffffffc0085a34d4 T dcache_dir_close
ffffffc0085a3500 T noop_fsync
ffffffc0085a3510 t scan_positives
ffffffc0085a3a1c T simple_lookup
ffffffc0085a3ab0 T always_delete_dentry
ffffffc0085a3ac0 T simple_attr_write
ffffffc0085a3ae8 t simple_attr_write_xsigned
ffffffc0085a3f28 T simple_attr_release
ffffffc0085a3f54 T simple_attr_read
ffffffc0085a410c T simple_attr_open
ffffffc0085a41b8 T memory_read_from_buffer
ffffffc0085a4230 T init_pseudo
ffffffc0085a42a8 t pseudo_fs_free
ffffffc0085a42d0 t pseudo_fs_get_tree
ffffffc0085a4304 t pseudo_fs_fill_super
ffffffc0085a43d0 T generic_set_encrypted_ci_d_ops
ffffffc0085a44e4 t generic_ci_d_hash
ffffffc0085a4560 t generic_ci_d_compare
ffffffc0085a4698 T generic_fh_to_parent
ffffffc0085a4760 T generic_fh_to_dentry
ffffffc0085a4808 T alloc_anon_inode
ffffffc0085a48ac t anon_set_page_dirty
ffffffc0085a48bc T simple_getattr
ffffffc0085a4958 T simple_recursive_removal
ffffffc0085a4f50 T simple_link
ffffffc0085a5070 T simple_empty
ffffffc0085a536c T simple_unlink
ffffffc0085a541c T simple_rmdir
ffffffc0085a58c8 T simple_rename
ffffffc0085a5ea4 T simple_setattr
ffffffc0085a5ff4 T simple_readpage
ffffffc0085a61d0 T simple_write_begin
ffffffc0085a63f4 T simple_write_end
ffffffc0085a66e0 T simple_fill_super
ffffffc0085a68e0 T simple_pin_fs
ffffffc0085a6c98 T simple_release_fs
ffffffc0085a6e1c T simple_transaction_set
ffffffc0085a6e44 T simple_transaction_get
ffffffc0085a711c T simple_transaction_read
ffffffc0085a71ec T simple_transaction_release
ffffffc0085a7240 T simple_attr_write_signed
ffffffc0085a7268 T __generic_file_fsync
ffffffc0085a73f0 T generic_file_fsync
ffffffc0085a7438 T generic_check_addressable
ffffffc0085a7484 T noop_set_page_dirty
ffffffc0085a7494 T noop_invalidatepage
ffffffc0085a74a0 T noop_direct_IO
ffffffc0085a74b0 T kfree_link
ffffffc0085a74d4 T simple_nosetlease
ffffffc0085a74e4 T simple_get_link
ffffffc0085a74f4 T make_empty_dir_inode
ffffffc0085a7588 t empty_dir_llseek
ffffffc0085a75b4 t empty_dir_readdir
ffffffc0085a77fc t empty_dir_lookup
ffffffc0085a780c t empty_dir_setattr
ffffffc0085a781c t empty_dir_getattr
ffffffc0085a78a8 t empty_dir_listxattr
ffffffc0085a78b8 T is_empty_dir_inode
ffffffc0085a78f8 t trace_raw_output_writeback_work_class
ffffffc0085a7a6c t trace_raw_output_writeback_write_inode_template
ffffffc0085a7b74 t trace_raw_output_writeback_class
ffffffc0085a7c74 t trace_raw_output_writeback_congest_waited_template
ffffffc0085a7d70 t trace_raw_output_writeback_single_inode_template
ffffffc0085a7ee0 t trace_raw_output_writeback_sb_inodes_requeue
ffffffc0085a8038 t trace_raw_output_writeback_queue_io
ffffffc0085a8178 t trace_raw_output_writeback_pages_written
ffffffc0085a8274 t trace_raw_output_writeback_dirty_inode_template
ffffffc0085a83cc t trace_raw_output_writeback_inode_template
ffffffc0085a8518 t trace_raw_output_writeback_page_template
ffffffc0085a8618 t trace_raw_output_writeback_bdi_register
ffffffc0085a8714 t trace_raw_output_wbc_class
ffffffc0085a8840 t trace_raw_output_track_foreign_dirty
ffffffc0085a8948 t trace_raw_output_inode_switch_wbs
ffffffc0085a8a4c t trace_raw_output_inode_foreign_history
ffffffc0085a8b50 t trace_raw_output_global_dirty_state
ffffffc0085a8c64 t trace_raw_output_flush_foreign
ffffffc0085a8d68 t trace_event_raw_event_writeback_write_inode_template
ffffffc0085a8f88 t perf_trace_writeback_write_inode_template
ffffffc0085a91e8 t trace_event_raw_event_writeback_work_class
ffffffc0085a9404 t perf_trace_writeback_work_class
ffffffc0085a9660 t trace_event_raw_event_writeback_single_inode_template
ffffffc0085a98a4 t perf_trace_writeback_single_inode_template
ffffffc0085a9b30 t trace_event_raw_event_writeback_sb_inodes_requeue
ffffffc0085a9d40 t perf_trace_writeback_sb_inodes_requeue
ffffffc0085a9f98 t trace_event_raw_event_writeback_queue_io
ffffffc0085aa1b8 t perf_trace_writeback_queue_io
ffffffc0085aa418 t trace_event_raw_event_writeback_pages_written
ffffffc0085aa59c t perf_trace_writeback_pages_written
ffffffc0085aa760 t trace_event_raw_event_writeback_page_template
ffffffc0085aa984 t perf_trace_writeback_page_template
ffffffc0085aabe8 t trace_event_raw_event_writeback_inode_template
ffffffc0085aad94 t perf_trace_writeback_inode_template
ffffffc0085aaf80 t trace_event_raw_event_writeback_dirty_inode_template
ffffffc0085ab184 t perf_trace_writeback_dirty_inode_template
ffffffc0085ab3c8 t trace_event_raw_event_writeback_congest_waited_template
ffffffc0085ab558 t perf_trace_writeback_congest_waited_template
ffffffc0085ab71c t trace_event_raw_event_writeback_class
ffffffc0085ab8e0 t perf_trace_writeback_class
ffffffc0085abaec t trace_event_raw_event_writeback_bdi_register
ffffffc0085abc94 t perf_trace_writeback_bdi_register
ffffffc0085abe7c t trace_event_raw_event_wbc_class
ffffffc0085ac0b0 t perf_trace_wbc_class
ffffffc0085ac320 t trace_event_raw_event_track_foreign_dirty
ffffffc0085ac5d0 t perf_trace_track_foreign_dirty
ffffffc0085ac8c8 t trace_event_raw_event_inode_switch_wbs
ffffffc0085acab8 t perf_trace_inode_switch_wbs
ffffffc0085accf0 t trace_event_raw_event_inode_foreign_history
ffffffc0085acf10 t perf_trace_inode_foreign_history
ffffffc0085ad178 t trace_event_raw_event_global_dirty_state
ffffffc0085ad368 t perf_trace_global_dirty_state
ffffffc0085ad58c t trace_event_raw_event_flush_foreign
ffffffc0085ad764 t perf_trace_flush_foreign
ffffffc0085ad984 t trace_event_raw_event_bdi_dirty_ratelimit
ffffffc0085adb90 t perf_trace_bdi_dirty_ratelimit
ffffffc0085adde4 t trace_event_raw_event_balance_dirty_pages
ffffffc0085ae0e8 t perf_trace_balance_dirty_pages
ffffffc0085ae43c t trace_raw_output_bdi_dirty_ratelimit
ffffffc0085ae554 t trace_raw_output_balance_dirty_pages
ffffffc0085ae690 T __traceiter_writeback_written
ffffffc0085ae6f8 T __traceiter_writeback_write_inode_start
ffffffc0085ae760 T __traceiter_writeback_write_inode
ffffffc0085ae7c8 T __traceiter_writeback_wake_background
ffffffc0085ae820 T __traceiter_writeback_wait_iff_congested
ffffffc0085ae888 T __traceiter_writeback_wait
ffffffc0085ae8f0 T __traceiter_writeback_start
ffffffc0085ae958 T __traceiter_writeback_single_inode_start
ffffffc0085ae9c8 T __traceiter_writeback_single_inode
ffffffc0085aea38 T __traceiter_writeback_sb_inodes_requeue
ffffffc0085aea90 T __traceiter_writeback_queue_io
ffffffc0085aeb10 T __traceiter_writeback_queue
ffffffc0085aeb78 T __traceiter_writeback_pages_written
ffffffc0085aebd0 T __traceiter_writeback_mark_inode_dirty
ffffffc0085aec38 T __traceiter_writeback_lazytime_iput
ffffffc0085aec90 T __traceiter_writeback_lazytime
ffffffc0085aece8 T __traceiter_writeback_exec
ffffffc0085aed50 T __traceiter_writeback_dirty_page
ffffffc0085aedb8 T __traceiter_writeback_dirty_inode_start
ffffffc0085aee20 T __traceiter_writeback_dirty_inode_enqueue
ffffffc0085aee78 T __traceiter_writeback_dirty_inode
ffffffc0085aeee0 T __traceiter_writeback_congestion_wait
ffffffc0085aef48 T __traceiter_writeback_bdi_register
ffffffc0085aefa0 T __traceiter_wbc_writepage
ffffffc0085af008 T __traceiter_wait_on_page_writeback
ffffffc0085af070 T __traceiter_track_foreign_dirty
ffffffc0085af0d8 T __traceiter_sb_mark_inode_writeback
ffffffc0085af130 T __traceiter_sb_clear_inode_writeback
ffffffc0085af188 T __traceiter_inode_switch_wbs
ffffffc0085af1f8 T __traceiter_inode_foreign_history
ffffffc0085af268 T __traceiter_global_dirty_state
ffffffc0085af2d0 T __traceiter_flush_foreign
ffffffc0085af340 T __traceiter_bdi_dirty_ratelimit
ffffffc0085af3b0 T __traceiter_balance_dirty_pages
ffffffc0085af494 t __bpf_trace_writeback_work_class
ffffffc0085af4b8 t __bpf_trace_writeback_write_inode_template
ffffffc0085af4dc t __bpf_trace_writeback_class
ffffffc0085af500 t __bpf_trace_writeback_congest_waited_template
ffffffc0085af52c t __bpf_trace_writeback_single_inode_template
ffffffc0085af550 t __bpf_trace_writeback_sb_inodes_requeue
ffffffc0085af574 t __bpf_trace_writeback_queue_io
ffffffc0085af59c t __bpf_trace_writeback_pages_written
ffffffc0085af5c0 t __bpf_trace_writeback_dirty_inode_template
ffffffc0085af5e8 t __bpf_trace_writeback_inode_template
ffffffc0085af60c t __bpf_trace_writeback_page_template
ffffffc0085af630 t __bpf_trace_writeback_bdi_register
ffffffc0085af654 t __bpf_trace_wbc_class
ffffffc0085af678 t __bpf_trace_track_foreign_dirty
ffffffc0085af69c t __bpf_trace_inode_switch_wbs
ffffffc0085af6c0 t __bpf_trace_inode_foreign_history
ffffffc0085af6e8 t __bpf_trace_global_dirty_state
ffffffc0085af70c t __bpf_trace_flush_foreign
ffffffc0085af738 t __bpf_trace_bdi_dirty_ratelimit
ffffffc0085af75c t __bpf_trace_balance_dirty_pages
ffffffc0085af7a0 T write_inode_now
ffffffc0085af870 t writeback_single_inode
ffffffc0085afee0 T wbc_attach_and_unlock_inode
ffffffc0085b0258 t __writeback_single_inode
ffffffc0085b07dc T wbc_detach_inode
ffffffc0085b0a90 t locked_inode_to_wb_and_lock_list
ffffffc0085b0e68 t wb_io_lists_depopulated
ffffffc0085b0f44 t percpu_ref_put_many.15907
ffffffc0085b1120 t inode_switch_wbs
ffffffc0085b1610 t percpu_ref_tryget_many.15908
ffffffc0085b17cc t inode_switch_wbs_rcu_fn
ffffffc0085b1898 t inode_switch_wbs_work_fn
ffffffc0085b2814 T __mark_inode_dirty
ffffffc0085b30c8 t write_inode
ffffffc0085b33c8 T __inode_attach_wb
ffffffc0085b3618 T wbc_account_cgroup_owner
ffffffc0085b36c4 T try_to_writeback_inodes_sb
ffffffc0085b37dc t bdi_split_work_to_wbs
ffffffc0085b3aec T wb_wait_for_completion
ffffffc0085b3c00 t wb_queue_work
ffffffc0085b3f70 T sync_inodes_sb
ffffffc0085b45e8 T sync_inode_metadata
ffffffc0085b4660 t wakeup_dirtytime_writeback
ffffffc0085b48b0 T inode_congested
ffffffc0085b4b0c T cgroup_writeback_by_id
ffffffc0085b4dc0 T cgroup_writeback_umount
ffffffc0085b4e04 T wb_start_background_writeback
ffffffc0085b5098 T inode_io_list_del
ffffffc0085b5330 T sb_mark_inode_writeback
ffffffc0085b5604 T sb_clear_inode_writeback
ffffffc0085b58c8 T inode_wait_for_writeback
ffffffc0085b5c20 T wb_workfn
ffffffc0085b627c t wb_do_writeback
ffffffc0085b6744 t queue_io
ffffffc0085b69cc t __writeback_inodes_wb
ffffffc0085b6d08 t writeback_sb_inodes
ffffffc0085b7b58 t requeue_inode
ffffffc0085b80dc t move_expired_inodes
ffffffc0085b8400 t wb_writeback
ffffffc0085b8d20 t wb_check_start_all
ffffffc0085b8e64 T wakeup_flusher_threads_bdi
ffffffc0085b8f14 t wb_start_writeback
ffffffc0085b90e4 T wakeup_flusher_threads
ffffffc0085b9200 T dirtytime_interval_handler
ffffffc0085b9340 T writeback_inodes_sb_nr
ffffffc0085b940c T writeback_inodes_sb
ffffffc0085b950c T sync_inode
ffffffc0085b9530 T get_dominating_id
ffffffc0085b95d0 T change_mnt_propagation
ffffffc0085b9804 T propagate_mnt
ffffffc0085b9b70 t propagate_one
ffffffc0085b9f6c T propagate_mount_busy
ffffffc0085ba18c T propagate_mount_unlock
ffffffc0085ba2dc T propagate_umount
ffffffc0085bab08 T __arm64_sys_vmsplice
ffffffc0085bae9c t iter_to_pipe
ffffffc0085bb1b8 t pipe_to_user
ffffffc0085bb208 T __splice_from_pipe
ffffffc0085bb4cc t splice_from_pipe_next
ffffffc0085bb674 t page_cache_pipe_buf_release
ffffffc0085bb744 t user_page_pipe_buf_try_steal
ffffffc0085bb784 T __arm64_sys_tee
ffffffc0085bb958 T do_tee
ffffffc0085bbccc t opipe_prep
ffffffc0085bbdc8 T __arm64_sys_splice
ffffffc0085bc08c t _copy_from_user.15972
ffffffc0085bc248 T do_splice
ffffffc0085bce7c t _copy_to_user.15973
ffffffc0085bd004 T iter_file_splice_write
ffffffc0085bd464 T generic_file_splice_read
ffffffc0085bd644 T splice_to_pipe
ffffffc0085bd7f0 T add_to_pipe
ffffffc0085bd900 T splice_grow_spd
ffffffc0085bd990 T splice_shrink_spd
ffffffc0085bd9d8 T splice_from_pipe
ffffffc0085bda8c T generic_splice_sendpage
ffffffc0085bdb44 t pipe_to_sendpage
ffffffc0085bdc48 T splice_direct_to_actor
ffffffc0085bdf74 T do_splice_direct
ffffffc0085be054 t direct_splice_actor
ffffffc0085be100 t page_cache_pipe_buf_confirm
ffffffc0085be2e8 t page_cache_pipe_buf_try_steal
ffffffc0085be5e0 T __arm64_sys_syncfs
ffffffc0085be770 T sync_filesystem
ffffffc0085be994 T __arm64_sys_sync_file_range2
ffffffc0085beaa4 T sync_file_range
ffffffc0085bebc0 T __arm64_sys_sync_file_range
ffffffc0085becd0 T __arm64_sys_sync
ffffffc0085becf8 T ksys_sync
ffffffc0085bee2c t sync_inodes_one_sb
ffffffc0085bee58 t sync_fs_one_sb
ffffffc0085beeec t fdatawrite_one_bdev
ffffffc0085bef24 t fdatawait_one_bdev
ffffffc0085bef70 T __arm64_sys_fsync
ffffffc0085bf0e0 T __arm64_sys_fdatasync
ffffffc0085bf230 T vfs_fsync_range
ffffffc0085bf304 T vfs_fsync
ffffffc0085bf3c8 T emergency_sync
ffffffc0085bf4ac t do_sync_work
ffffffc0085bf584 T ksys_sync_file_range
ffffffc0085bf690 T __arm64_sys_utimes_time32
ffffffc0085bf6bc t do_compat_futimesat
ffffffc0085bfd2c T do_utimes
ffffffc0085bff44 T vfs_utimes
ffffffc0085c0178 T __arm64_sys_utimensat_time32
ffffffc0085c0270 T __arm64_sys_utimensat
ffffffc0085c03a0 T __arm64_sys_utime32
ffffffc0085c03cc t __do_sys_utime32
ffffffc0085c07ec T __arm64_sys_futimesat_time32
ffffffc0085c081c T __arm64_sys_getcwd
ffffffc0085c0a64 t prepend_path
ffffffc0085c1094 t _copy_to_user.16026
ffffffc0085c1218 T dentry_path_raw
ffffffc0085c123c t __dentry_path
ffffffc0085c1530 T d_path
ffffffc0085c1770 T __d_path
ffffffc0085c17fc T d_absolute_path
ffffffc0085c1898 T dynamic_dname
ffffffc0085c1988 T simple_dname
ffffffc0085c1a0c T dentry_path
ffffffc0085c1aa0 T fsstack_copy_inode_size
ffffffc0085c1abc T fsstack_copy_attr_all
ffffffc0085c1ba8 T current_umask
ffffffc0085c1bc0 T set_fs_root
ffffffc0085c1d68 T set_fs_pwd
ffffffc0085c1f10 T chroot_fs_refs
ffffffc0085c2360 T free_fs_struct
ffffffc0085c23ec T exit_fs
ffffffc0085c269c T copy_fs_struct
ffffffc0085c2838 T unshare_fs_struct
ffffffc0085c2c48 T __arm64_sys_ustat
ffffffc0085c2d20 t vfs_ustat
ffffffc0085c2e94 t _copy_to_user.16060
ffffffc0085c3018 T __arm64_sys_statfs64
ffffffc0085c31d4 T vfs_statfs
ffffffc0085c338c T __arm64_sys_statfs
ffffffc0085c3534 T __arm64_sys_fstatfs64
ffffffc0085c36dc T __arm64_sys_fstatfs
ffffffc0085c3874 T __arm64_compat_sys_ustat
ffffffc0085c394c T __arm64_compat_sys_statfs64
ffffffc0085c3984 T kcompat_sys_statfs64
ffffffc0085c3b5c T __arm64_compat_sys_statfs
ffffffc0085c3d40 T __arm64_compat_sys_fstatfs64
ffffffc0085c3d78 T kcompat_sys_fstatfs64
ffffffc0085c3f38 T __arm64_compat_sys_fstatfs
ffffffc0085c410c T vfs_get_fsid
ffffffc0085c4294 T user_statfs
ffffffc0085c43b0 T fd_statfs
ffffffc0085c448c T pin_remove
ffffffc0085c47e0 T pin_insert
ffffffc0085c496c T pin_kill
ffffffc0085c4ee0 T mnt_pin_kill
ffffffc0085c4f7c T group_pin_kill
ffffffc0085c5010 T ns_get_path_cb
ffffffc0085c50ac t __ns_get_path
ffffffc0085c5304 t ns_ioctl
ffffffc0085c5560 t ns_get_owner
ffffffc0085c5570 T open_related_ns
ffffffc0085c5738 T ns_get_path
ffffffc0085c57e8 t ns_get_path_task
ffffffc0085c5860 T ns_get_name
ffffffc0085c5974 T proc_ns_file
ffffffc0085c5994 T proc_ns_fget
ffffffc0085c59ec T ns_match
ffffffc0085c5a28 t nsfs_init_fs_context
ffffffc0085c5acc t ns_prune_dentry
ffffffc0085c5ae8 t ns_dname
ffffffc0085c5b24 t nsfs_evict
ffffffc0085c5ba4 t nsfs_show_path
ffffffc0085c5be4 T fs_ftype_to_dtype
ffffffc0085c5c10 T fs_umode_to_ftype
ffffffc0085c5c2c T fs_umode_to_dtype
ffffffc0085c5c54 T logfc
ffffffc0085c5e3c T vfs_parse_fs_param
ffffffc0085c618c T vfs_parse_fs_string
ffffffc0085c6294 T generic_parse_monolithic
ffffffc0085c6490 T fs_context_for_mount
ffffffc0085c64c4 t alloc_fs_context
ffffffc0085c674c t legacy_init_fs_context
ffffffc0085c67b4 T put_fs_context
ffffffc0085c6a84 t put_fc_log
ffffffc0085c6be0 t legacy_fs_context_free
ffffffc0085c6c2c t legacy_fs_context_dup
ffffffc0085c6d30 t legacy_parse_param
ffffffc0085c6f7c t legacy_parse_monolithic
ffffffc0085c7060 t legacy_get_tree
ffffffc0085c7118 t legacy_reconfigure
ffffffc0085c71d0 T fs_context_for_reconfigure
ffffffc0085c7210 T fs_context_for_submount
ffffffc0085c7240 T fc_drop_locked
ffffffc0085c7284 T vfs_dup_fs_context
ffffffc0085c75ac T parse_monolithic_mount_data
ffffffc0085c7634 T vfs_clean_context
ffffffc0085c7764 T finish_clean_context
ffffffc0085c7860 T lookup_constant
ffffffc0085c78d4 T __fs_parse
ffffffc0085c7ab4 T fs_lookup_param
ffffffc0085c7c78 T fs_param_is_bool
ffffffc0085c7dbc T fs_param_is_u32
ffffffc0085c7e8c T fs_param_is_s32
ffffffc0085c80f8 T fs_param_is_u64
ffffffc0085c8254 T fs_param_is_enum
ffffffc0085c8308 T fs_param_is_string
ffffffc0085c8368 T fs_param_is_blob
ffffffc0085c83bc T fs_param_is_fd
ffffffc0085c853c T fs_param_is_blockdev
ffffffc0085c854c T fs_param_is_path
ffffffc0085c855c T __arm64_sys_fspick
ffffffc0085c87ec t fscontext_read
ffffffc0085c8918 t fscontext_release
ffffffc0085c894c t _copy_to_user.16174
ffffffc0085c8ad0 T __arm64_sys_fsopen
ffffffc0085c8cb8 T __arm64_sys_fsconfig
ffffffc0085c938c T kernel_read_file
ffffffc0085c9770 T kernel_read_file_from_path
ffffffc0085c981c T kernel_read_file_from_path_initns
ffffffc0085c9b84 T kernel_read_file_from_fd
ffffffc0085c9cb4 T generic_remap_file_range_prep
ffffffc0085ca1d8 t vfs_dedupe_file_range_compare
ffffffc0085ca974 t vfs_lock_two_pages
ffffffc0085caaf0 T do_clone_file_range
ffffffc0085caf3c T vfs_clone_file_range
ffffffc0085cb400 T vfs_dedupe_file_range_one
ffffffc0085cb714 T vfs_dedupe_file_range
ffffffc0085cba64 T __arm64_sys_bdflush
ffffffc0085cbb90 T unlock_buffer
ffffffc0085cbc7c T sync_dirty_buffer
ffffffc0085cbca4 T __sync_dirty_buffer
ffffffc0085cbfd0 T end_buffer_write_sync
ffffffc0085cc1b8 t submit_bh_wbc
ffffffc0085cc45c t end_bio_bh_io_sync
ffffffc0085cc530 T mark_buffer_write_io_error
ffffffc0085cc840 T submit_bh
ffffffc0085cc870 T page_zero_new_buffers
ffffffc0085ccb38 T mark_buffer_dirty
ffffffc0085cce04 T __set_page_dirty
ffffffc0085cd00c T mark_buffer_async_write
ffffffc0085cd060 T end_buffer_async_write
ffffffc0085cd49c T ll_rw_block
ffffffc0085cd6f4 T end_buffer_read_sync
ffffffc0085cd760 t __end_buffer_read_notouch
ffffffc0085cd8bc T free_buffer_head
ffffffc0085cdadc T create_empty_buffers
ffffffc0085cddbc T alloc_page_buffers
ffffffc0085ce228 T alloc_buffer_head
ffffffc0085ce458 t percpu_ref_put_many.16232
ffffffc0085ce634 T clean_bdev_aliases
ffffffc0085ce960 T block_is_partially_uptodate
ffffffc0085cea04 T block_invalidatepage
ffffffc0085ceb94 t discard_buffer
ffffffc0085cedfc T __wait_on_buffer
ffffffc0085cee3c T __set_page_dirty_buffers
ffffffc0085cf154 T __lock_buffer
ffffffc0085cf254 T __getblk_gfp
ffffffc0085cf360 T __find_get_block
ffffffc0085cf4e4 t grow_dev_page
ffffffc0085cf89c t init_page_buffers
ffffffc0085cf9b8 T try_to_free_buffers
ffffffc0085cfe54 t lookup_bh_lru
ffffffc0085cff64 t __find_get_block_slow
ffffffc0085d0260 t bh_lru_install
ffffffc0085d0488 T __brelse
ffffffc0085d0504 T __breadahead
ffffffc0085d05dc T __bread_gfp
ffffffc0085d0610 t __bread_slow
ffffffc0085d0900 T __bforget
ffffffc0085d0af4 T touch_buffer
ffffffc0085d0c4c T buffer_check_dirty_writeback
ffffffc0085d0cf8 T inode_has_buffers
ffffffc0085d0d18 T emergency_thaw_bdev
ffffffc0085d0d70 T sync_mapping_buffers
ffffffc0085d0dbc t fsync_buffers_list
ffffffc0085d1580 T write_dirty_buffer
ffffffc0085d1800 t osync_buffers_list
ffffffc0085d1ad0 T write_boundary_block
ffffffc0085d1b90 T mark_buffer_dirty_inode
ffffffc0085d1d4c T invalidate_inode_buffers
ffffffc0085d1ee8 T remove_inode_buffers
ffffffc0085d20a8 T set_bh_page
ffffffc0085d20fc T __breadahead_gfp
ffffffc0085d21d0 T has_bh_in_lru
ffffffc0085d2290 T invalidate_bh_lrus
ffffffc0085d22dc t invalidate_bh_lru
ffffffc0085d243c T invalidate_bh_lrus_cpu
ffffffc0085d2528 T __block_write_full_page
ffffffc0085d2f20 T __block_write_begin_int
ffffffc0085d35b0 t iomap_to_bh
ffffffc0085d3890 T __block_write_begin
ffffffc0085d38b8 T block_write_begin
ffffffc0085d3a68 T block_write_end
ffffffc0085d3b40 t __block_commit_write
ffffffc0085d3c8c T generic_write_end
ffffffc0085d3eb8 T block_read_full_page
ffffffc0085d4570 t end_buffer_async_read_io
ffffffc0085d46a4 t end_buffer_async_read
ffffffc0085d4ba4 t decrypt_bh
ffffffc0085d4cd0 T generic_cont_expand_simple
ffffffc0085d4e8c T cont_write_begin
ffffffc0085d4f50 t cont_expand_zero
ffffffc0085d54c0 T block_commit_write
ffffffc0085d54e8 T block_page_mkwrite
ffffffc0085d56e4 T nobh_write_begin
ffffffc0085d5e6c t end_buffer_read_nobh
ffffffc0085d5e90 t attach_nobh_buffers
ffffffc0085d60e4 T nobh_write_end
ffffffc0085d62e0 T nobh_writepage
ffffffc0085d65a0 T nobh_truncate_page
ffffffc0085d6c00 T block_truncate_page
ffffffc0085d7090 T block_write_full_page
ffffffc0085d72b4 T generic_block_bmap
ffffffc0085d738c T bh_uptodate_or_lock
ffffffc0085d7594 T bh_submit_read
ffffffc0085d7750 t buffer_exit_cpu_dead
ffffffc0085d790c T thaw_bdev
ffffffc0085d7a0c T sync_blockdev
ffffffc0085d7a48 T set_blocksize
ffffffc0085d7ba0 T sb_set_blocksize
ffffffc0085d7c0c T sb_min_blocksize
ffffffc0085d7c9c T revalidate_disk_size
ffffffc0085d7e6c T __invalidate_device
ffffffc0085d7fd0 T lookup_bdev
ffffffc0085d80ec t bd_acquire
ffffffc0085d8724 t bdev_test
ffffffc0085d8740 t bdev_set
ffffffc0085d8758 t blkdev_writepage
ffffffc0085d8788 t blkdev_readpage
ffffffc0085d87b8 t blkdev_writepages
ffffffc0085d8890 t blkdev_readahead
ffffffc0085d88bc t blkdev_write_begin
ffffffc0085d8900 t blkdev_write_end
ffffffc0085d8ab4 t blkdev_releasepage
ffffffc0085d8b5c t blkdev_direct_IO
ffffffc0085d8f54 t blkdev_bio_end_io_simple
ffffffc0085d8fa0 t __blkdev_direct_IO
ffffffc0085d9564 t blkdev_bio_end_io
ffffffc0085d971c t blkdev_get_block
ffffffc0085d976c T invalidate_bdev
ffffffc0085d9804 T fsync_bdev
ffffffc0085d9874 T freeze_bdev
ffffffc0085d99ec T blkdev_put
ffffffc0085d9bf4 t __blkdev_put
ffffffc0085da1ac T blkdev_get_by_path
ffffffc0085da388 t __blkdev_get
ffffffc0085db108 T bd_prepare_to_claim
ffffffc0085db3d8 T bdev_disk_changed
ffffffc0085db694 t bd_may_claim
ffffffc0085db6ec T blkdev_get_by_dev
ffffffc0085db860 T blkdev_fsync
ffffffc0085db920 T bdput
ffffffc0085db948 T bd_unlink_disk_holder
ffffffc0085dba60 T bd_set_nr_sectors
ffffffc0085dbba4 T bd_link_disk_holder
ffffffc0085dbd78 T I_BDEV
ffffffc0085dbd88 T truncate_bdev_range
ffffffc0085dbfd8 T bd_abort_claiming
ffffffc0085dc1c0 T __sync_blockdev
ffffffc0085dc20c T bdev_read_page
ffffffc0085dc2f4 T bdev_write_page
ffffffc0085dc450 t init_once.16300
ffffffc0085dc580 t bd_init_fs_context
ffffffc0085dc624 t bdev_alloc_inode
ffffffc0085dc660 t bdev_free_inode
ffffffc0085dc694 t bdev_evict_inode
ffffffc0085dc73c t percpu_ref_put_many.16304
ffffffc0085dc918 T bdgrab
ffffffc0085dc978 T bdget_part
ffffffc0085dca54 T nr_blockdev_pages
ffffffc0085dcbcc T bd_forget
ffffffc0085dcd50 T blkdev_write_iter
ffffffc0085dcf8c T blkdev_read_iter
ffffffc0085dd004 T iterate_bdevs
ffffffc0085dd4d8 t block_llseek
ffffffc0085dd568 t blkdev_iopoll
ffffffc0085dd5b4 t block_ioctl
ffffffc0085dd600 t blkdev_open
ffffffc0085dd738 t blkdev_close
ffffffc0085dd770 t blkdev_fallocate
ffffffc0085dd8f0 T __blockdev_direct_IO
ffffffc0085dd93c t do_blockdev_direct_IO
ffffffc0085de96c t do_direct_IO
ffffffc0085df110 t submit_page_section
ffffffc0085df628 t dio_send_cur_page
ffffffc0085dfd1c t dio_complete
ffffffc0085e0078 t dio_new_bio
ffffffc0085e03dc t dio_bio_end_io
ffffffc0085e0580 t dio_bio_end_aio
ffffffc0085e0910 t dio_aio_complete_work
ffffffc0085e0940 t dio_refill_pages
ffffffc0085e0a8c t get_more_blocks
ffffffc0085e0c68 T sb_init_dio_done_wq
ffffffc0085e0d18 t trace_event_raw_event_android_fs_data_start_template
ffffffc0085e0f88 t perf_trace_android_fs_data_start_template
ffffffc0085e11f4 t trace_event_raw_event_android_fs_data_end_template
ffffffc0085e1390 t perf_trace_android_fs_data_end_template
ffffffc0085e155c t trace_raw_output_android_fs_data_start_template
ffffffc0085e1684 t trace_raw_output_android_fs_data_end_template
ffffffc0085e1784 T __traceiter_android_fs_datawrite_start
ffffffc0085e181c T __traceiter_android_fs_datawrite_end
ffffffc0085e188c T __traceiter_android_fs_dataread_start
ffffffc0085e1924 T __traceiter_android_fs_dataread_end
ffffffc0085e1994 t __bpf_trace_android_fs_data_start_template
ffffffc0085e19c0 t __bpf_trace_android_fs_data_end_template
ffffffc0085e19e8 T mpage_readpage
ffffffc0085e1a88 t do_mpage_readpage
ffffffc0085e24f0 t mpage_bio_submit
ffffffc0085e27e8 t mpage_end_io
ffffffc0085e2a40 t map_buffer_to_page
ffffffc0085e2b34 T mpage_readahead
ffffffc0085e2ce8 T clean_page_buffers
ffffffc0085e2da4 T mpage_writepages
ffffffc0085e2f3c t __mpage_writepage
ffffffc0085e3b40 T mpage_writepage
ffffffc0085e3c04 t mounts_poll
ffffffc0085e3cd8 t mounts_open
ffffffc0085e3d04 t mounts_release
ffffffc0085e3dcc t show_vfsmnt
ffffffc0085e4098 t mounts_open_common
ffffffc0085e46f4 t show_sb_opts
ffffffc0085e48bc t show_mnt_opts
ffffffc0085e4adc t mountinfo_open
ffffffc0085e4b0c t show_mountinfo
ffffffc0085e4fd4 t mountstats_open
ffffffc0085e5004 t show_vfsstat
ffffffc0085e5388 T __fsnotify_inode_delete
ffffffc0085e53b0 T __fsnotify_vfsmount_delete
ffffffc0085e53d8 T fsnotify_sb_delete
ffffffc0085e5a58 T fsnotify
ffffffc0085e63c4 T __fsnotify_update_child_dentry_flags
ffffffc0085e6788 T __fsnotify_parent
ffffffc0085e6a38 T fsnotify_get_cookie
ffffffc0085e6a8c T fsnotify_notify_queue_is_empty
ffffffc0085e6ac0 T fsnotify_destroy_event
ffffffc0085e6cac T fsnotify_add_event
ffffffc0085e7084 T fsnotify_remove_queued_event
ffffffc0085e70f0 T fsnotify_remove_first_event
ffffffc0085e7170 T fsnotify_peek_first_event
ffffffc0085e7194 T fsnotify_flush_notify
ffffffc0085e75d0 T fsnotify_put_group
ffffffc0085e76f4 t percpu_ref_put_many.16385
ffffffc0085e78d0 T fsnotify_alloc_group
ffffffc0085e7980 T fsnotify_group_stop_queueing
ffffffc0085e7ab4 T fsnotify_destroy_group
ffffffc0085e7d9c T fsnotify_get_group
ffffffc0085e7e5c T fsnotify_fasync
ffffffc0085e7f08 T fsnotify_put_mark
ffffffc0085e86c4 t fsnotify_mark_destroy_workfn
ffffffc0085e8920 t fsnotify_connector_destroy_workfn
ffffffc0085e8a98 T fsnotify_init_mark
ffffffc0085e8b9c T fsnotify_destroy_mark
ffffffc0085e8dd8 T fsnotify_detach_mark
ffffffc0085e9024 T fsnotify_add_mark
ffffffc0085e90a8 T fsnotify_add_mark_locked
ffffffc0085e99d0 t fsnotify_attach_connector_to_object
ffffffc0085e9aec T fsnotify_recalc_mask
ffffffc0085e9cd4 T fsnotify_get_mark
ffffffc0085e9da8 T fsnotify_conn_mask
ffffffc0085e9e0c T fsnotify_prepare_user_wait
ffffffc0085e9f40 t fsnotify_get_mark_safe
ffffffc0085ea1fc T fsnotify_finish_user_wait
ffffffc0085ea2cc T fsnotify_free_mark
ffffffc0085ea4ec T fsnotify_compare_groups
ffffffc0085ea544 T fsnotify_find_mark
ffffffc0085ea8e0 T fsnotify_clear_marks_by_group
ffffffc0085ead5c T fsnotify_destroy_marks
ffffffc0085eb578 T fsnotify_wait_marks_destroyed
ffffffc0085eb63c T inotify_show_fdinfo
ffffffc0085eb6bc t inotify_fdinfo
ffffffc0085eb93c T inotify_handle_inode_event
ffffffc0085ebd54 t inotify_merge
ffffffc0085ebdcc t inotify_free_group_priv
ffffffc0085ebffc t inotify_freeing_mark
ffffffc0085ec05c t inotify_free_event
ffffffc0085ec080 t inotify_free_mark
ffffffc0085ec0b4 t idr_callback
ffffffc0085ec130 T __arm64_sys_inotify_rm_watch
ffffffc0085ec550 t inotify_read
ffffffc0085eca74 t inotify_poll
ffffffc0085ecc44 t inotify_ioctl
ffffffc0085ecf38 t inotify_release
ffffffc0085ecf64 t _copy_to_user.16434
ffffffc0085ed0e8 t __clear_user.16435
ffffffc0085ed26c T __arm64_sys_inotify_init1
ffffffc0085ed298 t do_inotify_init
ffffffc0085ed4f0 T __arm64_sys_inotify_init
ffffffc0085ed51c T __arm64_sys_inotify_add_watch
ffffffc0085edde8 t inotify_remove_from_idr
ffffffc0085ee288 T inotify_ignored_and_remove_idr
ffffffc0085ee2e8 T __arm64_sys_epoll_wait
ffffffc0085ee324 t do_epoll_wait
ffffffc0085eed48 t ep_busy_loop_end
ffffffc0085eee88 t ep_autoremove_wake_function
ffffffc0085eef00 t ep_send_events_proc
ffffffc0085ef3a0 t ep_scan_ready_list
ffffffc0085ef7f8 t ep_read_events_proc
ffffffc0085ef8d8 t ep_item_poll
ffffffc0085efa68 t ep_ptable_queue_proc
ffffffc0085efb34 t ep_poll_callback
ffffffc0085eff7c t ep_eventpoll_poll
ffffffc0085f0058 t ep_eventpoll_release
ffffffc0085f0088 t ep_show_fdinfo
ffffffc0085f016c t ep_free
ffffffc0085f0274 t ep_unregister_pollwait
ffffffc0085f035c t ep_remove
ffffffc0085f06e0 t epi_rcu_free
ffffffc0085f0714 T __arm64_sys_epoll_pwait
ffffffc0085f0748 t __se_sys_epoll_pwait
ffffffc0085f0834 T __arm64_sys_epoll_ctl
ffffffc0085f08dc t _copy_from_user.16465
ffffffc0085f0a98 T do_epoll_ctl
ffffffc0085f141c t ep_loop_check_proc
ffffffc0085f1630 t ep_call_nested
ffffffc0085f1a8c t ep_insert
ffffffc0085f2560 t ep_create_wakeup_source
ffffffc0085f2910 t ep_destroy_wakeup_source
ffffffc0085f29e0 t reverse_path_check_proc
ffffffc0085f2b6c T __arm64_sys_epoll_create1
ffffffc0085f2b98 t do_epoll_create
ffffffc0085f2cb8 t ep_alloc
ffffffc0085f2e14 T __arm64_sys_epoll_create
ffffffc0085f2e54 T __arm64_compat_sys_epoll_pwait
ffffffc0085f2e88 t __se_compat_sys_epoll_pwait
ffffffc0085f2f74 T eventpoll_release_file
ffffffc0085f2ffc T get_epoll_tfile_raw_ptr
ffffffc0085f30e8 T anon_inode_getfile
ffffffc0085f3200 T anon_inode_getfd
ffffffc0085f322c t __anon_inode_getfd
ffffffc0085f351c t anon_inodefs_init_fs_context
ffffffc0085f35b0 t anon_inodefs_dname
ffffffc0085f35e0 T anon_inode_getfd_secure
ffffffc0085f3608 T __arm64_sys_signalfd4
ffffffc0085f36a4 t _copy_from_user.16500
ffffffc0085f3860 t do_signalfd4
ffffffc0085f3b6c t signalfd_read
ffffffc0085f41a0 t signalfd_poll
ffffffc0085f43ac t signalfd_release
ffffffc0085f43d8 t signalfd_show_fdinfo
ffffffc0085f4444 t _copy_to_user.16503
ffffffc0085f45cc T __arm64_sys_signalfd
ffffffc0085f4664 T __arm64_compat_sys_signalfd4
ffffffc0085f4704 T __arm64_compat_sys_signalfd
ffffffc0085f47a0 T signalfd_cleanup
ffffffc0085f47dc T __arm64_sys_timerfd_settime32
ffffffc0085f48f0 t do_timerfd_settime
ffffffc0085f5688 t timerfd_alarmproc
ffffffc0085f58b8 t timerfd_tmrproc
ffffffc0085f5ae8 t timerfd_read
ffffffc0085f61c0 t timerfd_poll
ffffffc0085f63a4 t timerfd_release
ffffffc0085f6668 t timerfd_show
ffffffc0085f6964 T __arm64_sys_timerfd_settime
ffffffc0085f6ab4 T __arm64_sys_timerfd_gettime32
ffffffc0085f6b74 t do_timerfd_gettime
ffffffc0085f7158 T __arm64_sys_timerfd_gettime
ffffffc0085f7218 T __arm64_sys_timerfd_create
ffffffc0085f7248 t __do_sys_timerfd_create
ffffffc0085f7600 T timerfd_clock_was_set
ffffffc0085f78f8 T __arm64_sys_eventfd2
ffffffc0085f792c t do_eventfd
ffffffc0085f7a8c t eventfd_write
ffffffc0085f7f40 t eventfd_read
ffffffc0085f8520 t eventfd_poll
ffffffc0085f85ec t eventfd_release
ffffffc0085f8638 t eventfd_show_fdinfo
ffffffc0085f87c0 T eventfd_ctx_put
ffffffc0085f8888 t eventfd_free
ffffffc0085f88d0 t _copy_from_user.16535
ffffffc0085f8a8c T __arm64_sys_eventfd
ffffffc0085f8abc T eventfd_signal
ffffffc0085f8ae4 T eventfd_signal_mask
ffffffc0085f8f74 T eventfd_ctx_remove_wait_queue
ffffffc0085f9200 T eventfd_ctx_fileget
ffffffc0085f92fc T eventfd_ctx_fdget
ffffffc0085f94b0 T eventfd_ctx_do_read
ffffffc0085f94e0 T eventfd_fget
ffffffc0085f9538 T __arm64_sys_userfaultfd
ffffffc0085f9560 t __do_sys_userfaultfd
ffffffc0085f9798 t userfaultfd_read
ffffffc0085f989c t userfaultfd_poll
ffffffc0085f9988 t userfaultfd_ioctl
ffffffc0085f9dfc t userfaultfd_release
ffffffc0085fa1bc t userfaultfd_show_fdinfo
ffffffc0085fa38c t userfaultfd_ctx_put
ffffffc0085fa4a0 t __free_userfaultfd_ctx
ffffffc0085fa4d4 t userfaultfd_api
ffffffc0085fa6c4 t userfaultfd_register
ffffffc0085fad28 t userfaultfd_unregister
ffffffc0085fb400 t _copy_from_user.16554
ffffffc0085fb5c4 t userfaultfd_copy
ffffffc0085fbb7c t userfaultfd_zeropage
ffffffc0085fc11c t userfaultfd_writeprotect
ffffffc0085fc540 t userfaultfd_continue
ffffffc0085fcae8 t _copy_to_user.16555
ffffffc0085fcc6c t userfaultfd_ctx_read
ffffffc0085fd8f8 t init_once_userfaultfd_ctx
ffffffc0085fd948 T userfaultfd_using_sigbus
ffffffc0085fd9d0 T handle_userfault
ffffffc0085fe074 t userfaultfd_wake_function
ffffffc0085fe110 T dup_userfaultfd
ffffffc0085fe34c T dup_userfaultfd_complete
ffffffc0085fe434 t userfaultfd_event_wait_completion
ffffffc0085fe8c4 T mremap_userfaultfd_prep
ffffffc0085fe9d4 T mremap_userfaultfd_complete
ffffffc0085fea64 T userfaultfd_remove
ffffffc0085febdc T userfaultfd_unmap_prep
ffffffc0085feda0 T userfaultfd_unmap_complete
ffffffc0085fee98 T __arm64_sys_io_submit
ffffffc0085feec8 t __do_sys_io_submit
ffffffc0085ff1a4 t lookup_ioctx
ffffffc0085ff3dc t percpu_ref_put_many.16582
ffffffc0085ff5b8 t io_submit_one
ffffffc0085ff784 t _copy_from_user.16583
ffffffc0085ff948 t aio_get_req
ffffffc0085ffb30 t __io_submit_one
ffffffc0086005a0 t iocb_put
ffffffc008600690 t aio_complete
ffffffc008600bdc t aio_read
ffffffc008600e54 t aio_write
ffffffc00860128c t aio_fsync_work
ffffffc008601420 t aio_poll_complete_work
ffffffc0086019c8 t aio_poll_queue_proc
ffffffc008601a24 t aio_poll_wake
ffffffc008601eb0 t aio_poll_cancel
ffffffc0086020d8 t aio_poll_put_work
ffffffc008602100 t aio_prep_rw
ffffffc008602250 t aio_complete_rw
ffffffc0086026dc t __get_reqs_available
ffffffc0086027c8 t user_refill_reqs_available
ffffffc008602b04 t percpu_ref_tryget_live.16584
ffffffc008602cd0 T __arm64_sys_io_setup
ffffffc008602d00 t __do_sys_io_setup
ffffffc00860304c t ioctx_alloc
ffffffc008603ab0 t kill_ioctx
ffffffc008603f6c t free_ioctx_users
ffffffc008604180 t free_ioctx_reqs
ffffffc008604280 t aio_setup_ring
ffffffc008604f68 t ioctx_add_table
ffffffc008605374 t aio_ring_mmap
ffffffc00860539c t aio_ring_mremap
ffffffc008605590 t aio_migratepage
ffffffc008605abc t free_ioctx
ffffffc008605d80 T __arm64_sys_io_pgetevents
ffffffc008605db4 t __do_sys_io_pgetevents
ffffffc008605f6c t do_io_getevents
ffffffc0086061a0 t aio_read_events_ring
ffffffc008606550 t _copy_to_user.16597
ffffffc0086066d4 T __arm64_sys_io_getevents_time32
ffffffc0086067b0 T __arm64_sys_io_getevents
ffffffc0086068a8 T __arm64_sys_io_destroy
ffffffc008606970 T __arm64_sys_io_cancel
ffffffc00860699c t __do_sys_io_cancel
ffffffc008606dc8 T __arm64_compat_sys_io_submit
ffffffc008606dfc t __do_compat_sys_io_submit
ffffffc0086070f8 T __arm64_compat_sys_io_setup
ffffffc008607128 t __do_compat_sys_io_setup
ffffffc008607478 T __arm64_compat_sys_io_pgetevents_time64
ffffffc0086074b4 t __do_compat_sys_io_pgetevents_time64
ffffffc00860766c T __arm64_compat_sys_io_pgetevents
ffffffc0086076a8 t __do_compat_sys_io_pgetevents
ffffffc008607844 T kiocb_set_cancel_fn
ffffffc008607a14 t aio_init_fs_context
ffffffc008607aac T exit_aio
ffffffc008607c0c T fscrypt_free_bounce_page
ffffffc008607c74 T fscrypt_encrypt_pagecache_blocks
ffffffc008607e2c T fscrypt_crypt_block
ffffffc008608164 T fscrypt_msg
ffffffc008608278 T fscrypt_enqueue_decrypt_work
ffffffc008608324 T fscrypt_alloc_bounce_page
ffffffc008608358 T fscrypt_generate_iv
ffffffc00860842c T fscrypt_encrypt_block_inplace
ffffffc00860846c T fscrypt_decrypt_pagecache_blocks
ffffffc00860856c T fscrypt_decrypt_block_inplace
ffffffc0086085ac T fscrypt_initialize
ffffffc008608688 T fscrypt_setup_filename
ffffffc008608964 T fscrypt_fname_encrypt
ffffffc008608c20 T fscrypt_match_name
ffffffc008608d2c T fscrypt_fname_siphash
ffffffc008608d74 T fscrypt_fname_free_buffer
ffffffc008608db4 T fscrypt_fname_disk_to_usr
ffffffc008609224 T fscrypt_fname_alloc_buffer
ffffffc008609280 T fscrypt_fname_encrypted_size
ffffffc0086092e8 T fscrypt_d_revalidate
ffffffc008609370 T fscrypt_init_hkdf
ffffffc008609544 T fscrypt_hkdf_expand
ffffffc0086097bc T fscrypt_destroy_hkdf
ffffffc0086097e8 T fscrypt_symlink_getattr
ffffffc008609918 T fscrypt_prepare_symlink
ffffffc008609a90 T fscrypt_get_symlink
ffffffc008609c60 T fscrypt_file_open
ffffffc008609d84 T __fscrypt_prepare_setattr
ffffffc008609de8 T __fscrypt_prepare_rename
ffffffc008609e84 T __fscrypt_prepare_readdir
ffffffc008609eac T __fscrypt_prepare_lookup
ffffffc00860a018 T __fscrypt_prepare_link
ffffffc00860a064 T __fscrypt_encrypt_symlink
ffffffc00860a1fc T fscrypt_prepare_setflags
ffffffc00860a2e4 T fscrypt_ioctl_remove_key_all_users
ffffffc00860a3d4 t do_remove_key
ffffffc00860af80 t _copy_from_user.16654
ffffffc00860b144 T fscrypt_find_master_key