Newer
Older
11001
11002
11003
11004
11005
11006
11007
11008
11009
11010
11011
11012
11013
11014
11015
11016
11017
11018
11019
11020
11021
11022
11023
11024
11025
11026
11027
11028
11029
11030
11031
11032
11033
11034
11035
11036
11037
11038
11039
11040
11041
11042
11043
11044
11045
11046
11047
11048
11049
11050
11051
11052
11053
11054
11055
11056
11057
11058
11059
11060
11061
11062
11063
11064
11065
11066
11067
11068
11069
11070
11071
11072
11073
11074
11075
11076
11077
11078
11079
11080
11081
11082
11083
11084
11085
11086
11087
11088
11089
11090
11091
11092
11093
11094
11095
11096
11097
11098
11099
11100
11101
11102
11103
11104
11105
11106
11107
11108
11109
11110
11111
11112
11113
11114
11115
11116
11117
11118
11119
11120
11121
11122
11123
11124
11125
11126
11127
11128
11129
11130
11131
11132
11133
11134
11135
11136
11137
11138
11139
11140
11141
11142
11143
11144
11145
11146
11147
11148
11149
11150
11151
11152
11153
11154
11155
11156
11157
11158
11159
11160
11161
11162
11163
11164
11165
11166
11167
11168
11169
11170
11171
11172
11173
11174
11175
11176
11177
11178
11179
11180
11181
11182
11183
11184
11185
11186
11187
11188
11189
11190
11191
11192
11193
11194
11195
11196
11197
11198
11199
11200
11201
11202
11203
11204
11205
11206
11207
11208
11209
11210
11211
11212
11213
11214
11215
11216
11217
11218
11219
11220
11221
11222
11223
11224
11225
11226
11227
11228
11229
11230
11231
11232
11233
11234
11235
11236
11237
11238
11239
11240
11241
11242
11243
11244
11245
11246
11247
11248
11249
11250
11251
11252
11253
11254
11255
11256
11257
11258
11259
11260
11261
11262
11263
11264
11265
11266
11267
11268
11269
11270
11271
11272
11273
11274
11275
11276
11277
11278
11279
11280
11281
11282
11283
11284
11285
11286
11287
11288
11289
11290
11291
11292
11293
11294
11295
11296
11297
11298
11299
11300
11301
11302
11303
11304
11305
11306
11307
11308
11309
11310
11311
11312
11313
11314
11315
11316
11317
11318
11319
11320
11321
11322
11323
11324
11325
11326
11327
11328
11329
11330
11331
11332
11333
11334
11335
11336
11337
11338
11339
11340
11341
11342
11343
11344
11345
11346
11347
11348
11349
11350
11351
11352
11353
11354
11355
11356
11357
11358
11359
11360
11361
11362
11363
11364
11365
11366
11367
11368
11369
11370
11371
11372
11373
11374
11375
11376
11377
11378
11379
11380
11381
11382
11383
11384
11385
11386
11387
11388
11389
11390
11391
11392
11393
11394
11395
11396
11397
11398
11399
11400
11401
11402
11403
11404
11405
11406
11407
11408
11409
11410
11411
11412
11413
11414
11415
11416
11417
11418
11419
11420
11421
11422
11423
11424
11425
11426
11427
11428
11429
11430
11431
11432
11433
11434
11435
11436
11437
11438
11439
11440
11441
11442
11443
11444
11445
11446
11447
11448
11449
11450
11451
11452
11453
11454
11455
11456
11457
11458
11459
11460
11461
11462
11463
11464
11465
11466
11467
11468
11469
11470
11471
11472
11473
11474
11475
11476
11477
11478
11479
11480
11481
11482
11483
11484
11485
11486
11487
11488
11489
11490
11491
11492
11493
11494
11495
11496
11497
11498
11499
11500
11501
11502
11503
11504
11505
11506
11507
11508
11509
11510
11511
11512
11513
11514
11515
11516
11517
11518
11519
11520
11521
11522
11523
11524
11525
11526
11527
11528
11529
11530
11531
11532
11533
11534
11535
11536
11537
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552
11553
11554
11555
11556
11557
11558
11559
11560
11561
11562
11563
11564
11565
11566
11567
11568
11569
11570
11571
11572
11573
11574
11575
11576
11577
11578
11579
11580
11581
11582
11583
11584
11585
11586
11587
11588
11589
11590
11591
11592
11593
11594
11595
11596
11597
11598
11599
11600
11601
11602
11603
11604
11605
11606
11607
11608
11609
11610
11611
11612
11613
11614
11615
11616
11617
11618
11619
11620
11621
11622
11623
11624
11625
11626
11627
11628
11629
11630
11631
11632
11633
11634
11635
11636
11637
11638
11639
11640
11641
11642
11643
11644
11645
11646
11647
11648
11649
11650
11651
11652
11653
11654
11655
11656
11657
11658
11659
11660
11661
11662
11663
11664
11665
11666
11667
11668
11669
11670
11671
11672
11673
11674
11675
11676
11677
11678
11679
11680
11681
11682
11683
11684
11685
11686
11687
11688
11689
11690
11691
11692
11693
11694
11695
11696
11697
11698
11699
11700
11701
11702
11703
11704
11705
11706
11707
11708
11709
11710
11711
11712
11713
11714
11715
11716
11717
11718
11719
11720
11721
11722
11723
11724
11725
11726
11727
11728
11729
11730
11731
11732
11733
11734
11735
11736
11737
11738
11739
11740
11741
11742
11743
11744
11745
11746
11747
11748
11749
11750
11751
11752
11753
11754
11755
11756
11757
11758
11759
11760
11761
11762
11763
11764
11765
11766
11767
11768
11769
11770
11771
11772
11773
11774
11775
11776
11777
11778
11779
11780
11781
11782
11783
11784
11785
11786
11787
11788
11789
11790
11791
11792
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
11813
11814
11815
11816
11817
11818
11819
11820
11821
11822
11823
11824
11825
11826
11827
11828
11829
11830
11831
11832
11833
11834
11835
11836
11837
11838
11839
11840
11841
11842
11843
11844
11845
11846
11847
11848
11849
11850
11851
11852
11853
11854
11855
11856
11857
11858
11859
11860
11861
11862
11863
11864
11865
11866
11867
11868
11869
11870
11871
11872
11873
11874
11875
11876
11877
11878
11879
11880
11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
11907
11908
11909
11910
11911
11912
11913
11914
11915
11916
11917
11918
11919
11920
11921
11922
11923
11924
11925
11926
11927
11928
11929
11930
11931
11932
11933
11934
11935
11936
11937
11938
11939
11940
11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
11951
11952
11953
11954
11955
11956
11957
11958
11959
11960
11961
11962
11963
11964
11965
11966
11967
11968
11969
11970
11971
11972
11973
11974
11975
11976
11977
11978
11979
11980
11981
11982
11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
11997
11998
11999
12000
ffffff80083bfbb8 t trace_raw_output_ext4_journal_start
ffffff80083bfc20 t trace_raw_output_ext4_journal_start_reserved
ffffff80083bfc88 t trace_raw_output_ext4__trim
ffffff80083bfce8 t trace_raw_output_ext4_ext_handle_unwritten_extents
ffffff80083bfdc0 t trace_raw_output_ext4_get_implied_cluster_alloc_exit
ffffff80083bfe80 t trace_raw_output_ext4_ext_put_in_cache
ffffff80083bfee8 t trace_raw_output_ext4_ext_in_cache
ffffff80083bff50 t trace_raw_output_ext4_find_delalloc_range
ffffff80083bffd0 t trace_raw_output_ext4_get_reserved_cluster_alloc
ffffff80083c0038 t trace_raw_output_ext4_ext_show_extent
ffffff80083c00a0 t trace_raw_output_ext4_remove_blocks
ffffff80083c0128 t trace_raw_output_ext4_ext_rm_leaf
ffffff80083c01a8 t trace_raw_output_ext4_ext_rm_idx
ffffff80083c0208 t trace_raw_output_ext4_ext_remove_space
ffffff80083c0270 t trace_raw_output_ext4_ext_remove_space_done
ffffff80083c02f0 t trace_raw_output_ext4__es_extent
ffffff80083c03b8 t trace_raw_output_ext4_es_remove_extent
ffffff80083c0420 t trace_raw_output_ext4_es_find_delayed_extent_range_enter
ffffff80083c0488 t trace_raw_output_ext4_es_find_delayed_extent_range_exit
ffffff80083c0550 t trace_raw_output_ext4_es_lookup_extent_enter
ffffff80083c05b8 t trace_raw_output_ext4_es_lookup_extent_exit
ffffff80083c0698 t trace_raw_output_ext4__es_shrink_enter
ffffff80083c06f8 t trace_raw_output_ext4_es_shrink_scan_exit
ffffff80083c0758 t trace_raw_output_ext4_collapse_range
ffffff80083c07c0 t trace_raw_output_ext4_insert_range
ffffff80083c0828 t trace_raw_output_ext4_es_shrink
ffffff80083c0890 t trace_raw_output_ext4_fsmap_class
ffffff80083c0910 t trace_raw_output_ext4_getfsmap_class
ffffff80083c0988 t trace_raw_output_ext4_shutdown
ffffff80083c09e8 t trace_raw_output_ext4_error
ffffff80083c0a50 t ext4_lazyinit_thread
ffffff80083c0dc0 t ext4_mount
ffffff80083c0de0 t ext4_fill_super
ffffff80083c41a0 t parse_options
ffffff80083c4aa0 t ext4_feature_set_ok
ffffff80083c4b98 t print_daily_error_info
ffffff80083c4cd8 t ext4_journal_commit_callback
ffffff80083c4da8 t ext4_setup_super
ffffff80083c4fc0 t ext4_enable_quotas
ffffff80083c51c0 t ext4_mark_recovery_complete
ffffff80083c5240 t ext4_unregister_li_request
ffffff80083c52e0 t set_qf_name
ffffff80083c5440 t ext4_alloc_inode
ffffff80083c5520 t ext4_destroy_inode
ffffff80083c55b8 t ext4_drop_inode
ffffff80083c56a0 t ext4_put_super
ffffff80083c59b8 t ext4_sync_fs
ffffff80083c5ba0 t ext4_freeze
ffffff80083c5c38 t ext4_unfreeze
ffffff80083c5ce0 t ext4_statfs
ffffff80083c5ec8 t ext4_remount
ffffff80083c6638 t ext4_show_options
ffffff80083c6658 t ext4_quota_read
ffffff80083c6770 t ext4_quota_write
ffffff80083c6978 t ext4_get_dquots
ffffff80083c6980 t bdev_try_to_free_page
ffffff80083c6a00 t ext4_i_callback
ffffff80083c6a38 t ext4_quota_off
ffffff80083c6b58 t ext4_clear_journal_err
ffffff80083c6cf8 t ext4_fh_to_dentry
ffffff80083c6d18 t ext4_fh_to_parent
ffffff80083c6d38 t ext4_nfs_commit_metadata
ffffff80083c6e50 t ext4_nfs_get_inode
ffffff80083c6ea0 t ext4_get_context
ffffff80083c6ec8 t ext4_set_context
ffffff80083c70e0 t ext4_dummy_context
ffffff80083c70f8 t ext4_has_stable_inodes
ffffff80083c7110 t ext4_get_ino_and_lblk_bits
ffffff80083c7120 t ext4_inline_crypt_enabled
ffffff80083c7130 t ext4_write_dquot
ffffff80083c71d0 t ext4_acquire_dquot
ffffff80083c7280 t ext4_release_dquot
ffffff80083c7320 t ext4_mark_dquot_dirty
ffffff80083c73f8 t ext4_write_info
ffffff80083c7480 t ext4_get_next_id
ffffff80083c74d0 t ext4_quota_on
ffffff80083c76b8 t init_once
ffffff80083c7730 t ext4_encrypted_get_link
ffffff80083c7820 T ext4_register_sysfs
ffffff80083c7950 T ext4_unregister_sysfs
ffffff80083c7990 T ext4_exit_sysfs
ffffff80083c79e0 t ext4_sb_release
ffffff80083c79f8 t ext4_attr_show
ffffff80083c7cb0 t ext4_attr_store
ffffff80083c7ed8 T ext4_xattr_ibody_get
ffffff80083c81d0 t ext4_xattr_inode_get
ffffff80083c83a8 T ext4_xattr_get
ffffff80083c8838 T ext4_listxattr
ffffff80083c8cf8 T ext4_get_inode_usage
ffffff80083c9178 T __ext4_xattr_set_credits
ffffff80083c9288 T ext4_xattr_ibody_find
ffffff80083c94e0 T ext4_xattr_ibody_inline_set
ffffff80083c9588 t ext4_xattr_set_entry
ffffff80083ca2e8 T ext4_xattr_set_handle
ffffff80083ca8f0 t ext4_xattr_get_block
ffffff80083cab38 t ext4_xattr_block_find
ffffff80083cae88 t ext4_xattr_block_set
ffffff80083cbc20 T ext4_xattr_set_credits
ffffff80083cbcd0 T ext4_xattr_set
ffffff80083cbe70 T ext4_expand_extra_isize_ea
ffffff80083cc858 T ext4_xattr_delete_inode
ffffff80083ccdb8 t ext4_xattr_ensure_credits
ffffff80083ccf70 t ext4_xattr_inode_dec_ref_all
ffffff80083cd228 t ext4_xattr_inode_iget
ffffff80083cd390 t ext4_xattr_release_block
ffffff80083cd650 T ext4_xattr_inode_array_free
ffffff80083cd6a0 T ext4_xattr_create_cache
ffffff80083cd6b8 T ext4_xattr_destroy_cache
ffffff80083cd6d0 t ext4_xattr_inode_read
ffffff80083cd860 t ext4_xattr_list_entries
ffffff80083cd980 t ext4_xattr_block_csum
ffffff80083cdae8 t ext4_xattr_inode_update_ref
ffffff80083cdd40 t ext4_xattr_trusted_list
ffffff80083cdd60 t ext4_xattr_trusted_get
ffffff80083cdd88 t ext4_xattr_trusted_set
ffffff80083cddb8 t ext4_xattr_user_list
ffffff80083cddd0 t ext4_xattr_user_get
ffffff80083cde18 t ext4_xattr_user_set
ffffff80083cde60 T ext4_get_acl
ffffff80083ce078 T ext4_set_acl
ffffff80083ce2f8 t __ext4_set_acl
ffffff80083ce4d0 T ext4_init_acl
ffffff80083ce5d8 T ext4_init_security
ffffff80083ce608 t ext4_initxattrs
ffffff80083ce668 t ext4_xattr_security_get
ffffff80083ce690 t ext4_xattr_security_set
ffffff80083ce6c0 t ext4_begin_enable_verity
ffffff80083ce7c8 t ext4_end_enable_verity
ffffff80083ce980 t ext4_get_verity_descriptor
ffffff80083ceb68 t ext4_read_merkle_tree_page
ffffff80083ced48 t ext4_write_merkle_tree_block
ffffff80083ced88 t pagecache_write
ffffff80083cef18 t pagecache_read
ffffff80083cf060 T jbd2_journal_destroy_transaction_cache
ffffff80083cf088 T jbd2_journal_free_transaction
ffffff80083cf0b0 T jbd2__journal_start
ffffff80083cf2b8 t start_this_handle
ffffff80083cf8d0 T jbd2_journal_start
ffffff80083cf8f8 T jbd2_journal_free_reserved
ffffff80083cf968 T jbd2_journal_start_reserved
ffffff80083cfad8 T jbd2_journal_stop
ffffff80083cfee0 T jbd2_journal_extend
ffffff80083d00f0 T jbd2__journal_restart
ffffff80083d0268 T jbd2_journal_restart
ffffff80083d0288 T jbd2_journal_lock_updates
ffffff80083d03f8 T jbd2_journal_unlock_updates
ffffff80083d0460 T jbd2_journal_get_write_access
ffffff80083d0530 t do_get_write_access
ffffff80083d0a80 T jbd2_journal_get_create_access
ffffff80083d0c48 T __jbd2_journal_file_buffer
ffffff80083d0e38 T jbd2_journal_get_undo_access
ffffff80083d1048 T jbd2_journal_set_triggers
ffffff80083d1088 T jbd2_buffer_frozen_trigger
ffffff80083d10c0 T jbd2_buffer_abort_trigger
ffffff80083d10f0 T jbd2_journal_dirty_metadata
ffffff80083d1570 T jbd2_journal_forget
ffffff80083d1820 t __jbd2_journal_temp_unlink_buffer
ffffff80083d1948 T jbd2_journal_unfile_buffer
ffffff80083d1a50 T jbd2_journal_try_to_free_buffers
ffffff80083d1bd8 T jbd2_journal_invalidatepage
ffffff80083d2098 T jbd2_journal_file_buffer
ffffff80083d2190 T __jbd2_journal_refile_buffer
ffffff80083d2288 T jbd2_journal_refile_buffer
ffffff80083d2388 T jbd2_journal_inode_add_write
ffffff80083d23a8 t jbd2_journal_file_inode
ffffff80083d24e8 T jbd2_journal_inode_add_wait
ffffff80083d2508 T jbd2_journal_inode_ranged_write
ffffff80083d2530 T jbd2_journal_inode_ranged_wait
ffffff80083d2558 T jbd2_journal_begin_ordered_truncate
ffffff80083d2600 T jbd2_journal_commit_transaction
ffffff80083d3fc8 t journal_end_buffer_io_sync
ffffff80083d4040 t journal_submit_commit_record
ffffff80083d4248 T jbd2_journal_recover
ffffff80083d4358 t do_one_pass
ffffff80083d4ef0 T jbd2_journal_skip_recovery
ffffff80083d4f98 t jread
ffffff80083d5238 T __jbd2_log_wait_for_space
ffffff80083d5468 T jbd2_log_do_checkpoint
ffffff80083d5990 T jbd2_cleanup_journal_tail
ffffff80083d5a38 T __jbd2_journal_remove_checkpoint
ffffff80083d5bd8 T __jbd2_journal_clean_checkpoint_list
ffffff80083d5da0 T jbd2_journal_destroy_checkpoint
ffffff80083d5df0 T __jbd2_journal_drop_transaction
ffffff80083d5f80 T __jbd2_journal_insert_checkpoint
ffffff80083d6000 T jbd2_journal_destroy_revoke_record_cache
ffffff80083d6028 T jbd2_journal_destroy_revoke_table_cache
ffffff80083d6050 T jbd2_journal_init_revoke
ffffff80083d6150 t jbd2_journal_init_revoke_table
ffffff80083d6220 T jbd2_journal_destroy_revoke
ffffff80083d62f0 T jbd2_journal_revoke
ffffff80083d64a8 T jbd2_journal_cancel_revoke
ffffff80083d6638 T jbd2_clear_buffer_revoked_flags
ffffff80083d66e0 T jbd2_journal_switch_revoke_table
ffffff80083d6738 T jbd2_journal_write_revoke_records
ffffff80083d6a68 T jbd2_journal_set_revoke
ffffff80083d6bb8 T jbd2_journal_test_revoke
ffffff80083d6c78 T jbd2_journal_clear_revoke
ffffff80083d6d28 t trace_event_raw_event_jbd2_checkpoint
ffffff80083d6de8 t perf_trace_jbd2_checkpoint
ffffff80083d6ec0 t trace_event_raw_event_jbd2_commit
ffffff80083d6f98 t perf_trace_jbd2_commit
ffffff80083d7088 t trace_event_raw_event_jbd2_end_commit
ffffff80083d7168 t perf_trace_jbd2_end_commit
ffffff80083d7260 t trace_event_raw_event_jbd2_submit_inode_data
ffffff80083d7328 t perf_trace_jbd2_submit_inode_data
ffffff80083d7400 t trace_event_raw_event_jbd2_handle_start
ffffff80083d74e0 t perf_trace_jbd2_handle_start
ffffff80083d75d0 t trace_event_raw_event_jbd2_handle_extend
ffffff80083d76b8 t perf_trace_jbd2_handle_extend
ffffff80083d77b8 t trace_event_raw_event_jbd2_handle_stats
ffffff80083d78b0 t perf_trace_jbd2_handle_stats
ffffff80083d79b8 t trace_event_raw_event_jbd2_run_stats
ffffff80083d7ac8 t perf_trace_jbd2_run_stats
ffffff80083d7be8 t trace_event_raw_event_jbd2_checkpoint_stats
ffffff80083d7cd0 t perf_trace_jbd2_checkpoint_stats
ffffff80083d7dc8 t trace_event_raw_event_jbd2_update_log_tail
ffffff80083d7ea8 t perf_trace_jbd2_update_log_tail
ffffff80083d7fa0 t trace_event_raw_event_jbd2_write_superblock
ffffff80083d8060 t perf_trace_jbd2_write_superblock
ffffff80083d8138 t trace_event_raw_event_jbd2_lock_buffer_stall
ffffff80083d81f8 t perf_trace_jbd2_lock_buffer_stall
ffffff80083d82d0 t __bpf_trace_jbd2_checkpoint
ffffff80083d8360 t __bpf_trace_jbd2_commit
ffffff80083d83f0 t __bpf_trace_jbd2_end_commit
ffffff80083d8480 t __bpf_trace_jbd2_submit_inode_data
ffffff80083d84e8 t __bpf_trace_jbd2_handle_start
ffffff80083d85e0 t __bpf_trace_jbd2_handle_extend
ffffff80083d8700 t __bpf_trace_jbd2_handle_stats
ffffff80083d8870 t __bpf_trace_jbd2_run_stats
ffffff80083d8920 t __bpf_trace_jbd2_checkpoint_stats
ffffff80083d89d0 t __bpf_trace_jbd2_update_log_tail
ffffff80083d8aa8 t __bpf_trace_jbd2_write_superblock
ffffff80083d8b38 t __bpf_trace_jbd2_lock_buffer_stall
ffffff80083d8bc8 T jbd2_journal_flush
ffffff80083d8d80 T jbd2_journal_init_dev
ffffff80083d8e00 T jbd2_journal_init_inode
ffffff80083d8ef0 T jbd2_journal_check_used_features
ffffff80083d8f98 T jbd2_journal_check_available_features
ffffff80083d8fe8 T jbd2_journal_set_features
ffffff80083d9218 T jbd2_journal_load
ffffff80083d9548 T jbd2_journal_destroy
ffffff80083d97b0 T jbd2_journal_abort
ffffff80083d97c8 T jbd2_journal_errno
ffffff80083d9810 T jbd2_journal_ack_err
ffffff80083d9858 T jbd2_journal_clear_err
ffffff80083d98b0 T jbd2_log_wait_commit
ffffff80083d99f0 T jbd2_log_start_commit
ffffff80083d9ad0 T jbd2_journal_start_commit
ffffff80083d9b88 T jbd2_journal_force_commit_nested
ffffff80083d9ba8 T jbd2_journal_wipe
ffffff80083d9c90 T jbd2_journal_blocks_per_page
ffffff80083d9cb0 T jbd2_journal_force_commit
ffffff80083d9cd8 T jbd2_journal_init_jbd_inode
ffffff80083d9cf8 T jbd2_journal_release_jbd_inode
ffffff80083d9e28 T jbd2_journal_write_metadata_buffer
ffffff80083da2e8 T jbd2_alloc
ffffff80083da358 T jbd2_free
ffffff80083da3b8 T __jbd2_log_start_commit
ffffff80083da478 t __jbd2_journal_force_commit
ffffff80083da520 T jbd2_trans_will_send_data_barrier
ffffff80083da5d0 T jbd2_transaction_committed
ffffff80083da648 T jbd2_complete_transaction
ffffff80083da6f0 T jbd2_journal_next_log_block
ffffff80083da7c0 T jbd2_journal_bmap
ffffff80083da848 t __journal_abort_soft
ffffff80083da9e8 T jbd2_journal_get_descriptor_buffer
ffffff80083daaf0 T jbd2_descriptor_block_csum_set
ffffff80083dabd0 T jbd2_journal_get_log_tail
ffffff80083dac88 T __jbd2_update_log_tail
ffffff80083dadd8 T jbd2_journal_update_sb_log_tail
ffffff80083daeb8 T jbd2_update_log_tail
ffffff80083daf18 t journal_init_common
ffffff80083db120 t jbd2_write_superblock
ffffff80083db3a0 T jbd2_journal_update_sb_errno
ffffff80083db410 t jbd2_mark_journal_empty
ffffff80083db4c0 t journal_get_superblock
ffffff80083db838 T jbd2_journal_clear_features
ffffff80083db878 T __jbd2_journal_abort_hard
ffffff80083db910 T journal_tag_bytes
ffffff80083db958 t get_slab
ffffff80083db9b0 T jbd2_journal_add_journal_head
ffffff80083dbbb8 T jbd2_journal_grab_journal_head
ffffff80083dbc98 T jbd2_journal_put_journal_head
ffffff80083dbe88 t jbd2_journal_destroy_caches
ffffff80083dbf48 t trace_raw_output_jbd2_checkpoint
ffffff80083dbfa8 t trace_raw_output_jbd2_commit
ffffff80083dc010 t trace_raw_output_jbd2_end_commit
ffffff80083dc078 t trace_raw_output_jbd2_submit_inode_data
ffffff80083dc0d8 t trace_raw_output_jbd2_handle_start
ffffff80083dc140 t trace_raw_output_jbd2_handle_extend
ffffff80083dc1b8 t trace_raw_output_jbd2_handle_stats
ffffff80083dc238 t trace_raw_output_jbd2_run_stats
ffffff80083dc350 t trace_raw_output_jbd2_checkpoint_stats
ffffff80083dc3e8 t trace_raw_output_jbd2_update_log_tail
ffffff80083dc450 t trace_raw_output_jbd2_write_superblock
ffffff80083dc4b0 t trace_raw_output_jbd2_lock_buffer_stall
ffffff80083dc510 t jbd2_seq_info_open
ffffff80083dc600 t jbd2_seq_info_release
ffffff80083dc650 t jbd2_seq_info_start
ffffff80083dc660 t jbd2_seq_info_stop
ffffff80083dc668 t jbd2_seq_info_next
ffffff80083dc680 t jbd2_seq_info_show
ffffff80083dc858 t kjournald2
ffffff80083dcab0 t commit_timeout
ffffff80083dcac8 T ramfs_get_inode
ffffff80083dcbe8 T ramfs_fill_super
ffffff80083dcd68 T ramfs_mount
ffffff80083dcd88 t ramfs_create
ffffff80083dcdf8 t ramfs_symlink
ffffff80083dcea8 t ramfs_mkdir
ffffff80083dcf20 t ramfs_mknod
ffffff80083dcf88 t ramfs_show_options
ffffff80083dcfc0 t ramfs_kill_sb
ffffff80083dcff0 t ramfs_mmu_get_unmapped_area
ffffff80083dd010 t init_once
ffffff80083dd020 T fat_cache_destroy
ffffff80083dd040 T fat_cache_inval_inode
ffffff80083dd0f0 T fat_get_cluster
ffffff80083dd4d8 t fat_cache_add
ffffff80083dd6d8 T fat_get_mapped_cluster
ffffff80083dd820 T fat_bmap
ffffff80083dd8f8 T fat_search_long
ffffff80083ddea0 t fat_parse_long
ffffff80083de308 t fat_parse_short
ffffff80083de948 t fat_readdir
ffffff80083de978 t fat_dir_ioctl
ffffff80083debf8 t fat_compat_dir_ioctl
ffffff80083dee60 T fat_get_dotdot_entry
ffffff80083def08 t fat_get_short_entry
ffffff80083df170 T fat_dir_empty
ffffff80083df268 T fat_subdirs
ffffff80083df308 T fat_scan
ffffff80083df3d8 T fat_scan_logstart
ffffff80083df4b8 T fat_remove_entries
ffffff80083df640 t __fat_remove_entries
ffffff80083df8f8 T fat_alloc_new_dir
ffffff80083dfb30 t fat_zeroed_cluster
ffffff80083dfd90 T fat_add_entries
ffffff80083e0710 t __fat_readdir
ffffff80083e0f48 t fat_ioctl_filldir
ffffff80083e1c30 t fat_compat_ioctl_filldir
ffffff80083e2918 T fat_ent_access_init
ffffff80083e29a0 T fat_ent_read
ffffff80083e2bb8 T fat_ent_write
ffffff80083e2c20 t fat_mirror_bhs
ffffff80083e2d98 T fat_alloc_clusters
ffffff80083e3210 T fat_free_clusters
ffffff80083e3598 T fat_count_free_clusters
ffffff80083e3850 T fat_trim_fs
ffffff80083e3cd0 t fat_ent_blocknr
ffffff80083e3d60 t fat32_ent_set_ptr
ffffff80083e3db0 t fat_ent_bread
ffffff80083e3e78 t fat32_ent_get
ffffff80083e3ed0 t fat32_ent_put
ffffff80083e3f30 t fat32_ent_next
ffffff80083e3f70 t fat16_ent_set_ptr
ffffff80083e3fb8 t fat16_ent_get
ffffff80083e4000 t fat16_ent_put
ffffff80083e4028 t fat16_ent_next
ffffff80083e4068 t fat12_ent_blocknr
ffffff80083e40f8 t fat12_ent_set_ptr
ffffff80083e41b0 t fat12_ent_bread
ffffff80083e4330 t fat12_ent_get
ffffff80083e4398 t fat12_ent_put
ffffff80083e4440 t fat12_ent_next
ffffff80083e4598 T fat_generic_ioctl
ffffff80083e4e48 T fat_file_fsync
ffffff80083e4ea0 t fat_generic_compat_ioctl
ffffff80083e4eb8 t fat_file_release
ffffff80083e4f00 t fat_fallocate
ffffff80083e4ff0 T fat_truncate_blocks
ffffff80083e5320 T fat_getattr
ffffff80083e5380 T fat_setattr
ffffff80083e55d0 t fat_cont_expand
ffffff80083e56a8 T fat_add_cluster
ffffff80083e5730 T fat_block_truncate_page
ffffff80083e5750 t fat_get_block
ffffff80083e59a8 T fat_attach
ffffff80083e5aa0 T fat_detach
ffffff80083e5b58 T fat_iget
ffffff80083e5c18 T fat_fill_inode
ffffff80083e6008 T fat_build_inode
ffffff80083e6168 T fat_sync_inode
ffffff80083e6180 t __fat_write_inode
ffffff80083e6398 T fat_fill_super
ffffff80083e7540 t fat_set_state
ffffff80083e7630 T fat_flush_inodes
ffffff80083e76d0 t fat_writepage
ffffff80083e76f0 t fat_readpage
ffffff80083e7710 t fat_writepages
ffffff80083e7730 t fat_readpages
ffffff80083e7760 t fat_write_begin
ffffff80083e77e8 t fat_write_end
ffffff80083e7890 t _fat_bmap
ffffff80083e78e8 t fat_direct_IO
ffffff80083e79a8 t fat_get_block_bmap
ffffff80083e7a78 t fat_alloc_inode
ffffff80083e7ad8 t fat_destroy_inode
ffffff80083e7af8 t fat_write_inode
ffffff80083e7b60 t fat_evict_inode
ffffff80083e7c28 t fat_put_super
ffffff80083e7c78 t fat_statfs
ffffff80083e7d30 t fat_remount
ffffff80083e7db0 t fat_show_options
ffffff80083e8130 t fat_i_callback
ffffff80083e8158 t delayed_free
ffffff80083e81c0 t init_once
ffffff80083e81f8 T __fat_fs_error
ffffff80083e8304 T fat_msg
ffffff80083e83a8 T fat_clusters_flush
ffffff80083e8498 T fat_chain_add
ffffff80083e86a0 T fat_time_fat2unix
ffffff80083e87b8 T fat_time_unix2fat
ffffff80083e8910 T fat_sync_bhs
ffffff80083e89c0 t fat_fh_to_dentry
ffffff80083e89e0 t fat_fh_to_parent
ffffff80083e8a00 t fat_get_parent
ffffff80083e8ce0 t fat_encode_fh_nostale
ffffff80083e8d68 t fat_fh_to_dentry_nostale
ffffff80083e8db8 t fat_fh_to_parent_nostale
ffffff80083e8e00 t fat_nfs_get_inode
ffffff80083e8e18 t __fat_nfs_get_inode
ffffff80083e8f50 t vfat_mount
ffffff80083e8f70 t vfat_fill_super
ffffff80083e8f90 t setup
ffffff80083e8fc8 t vfat_lookup
ffffff80083e9180 t vfat_create
ffffff80083e92d8 t vfat_unlink
ffffff80083e9418 t vfat_mkdir
ffffff80083e95b0 t vfat_rmdir
ffffff80083e9708 t vfat_rename
ffffff80083e9b20 t vfat_add_entry
ffffff80083eaad8 t vfat_revalidate_ci
ffffff80083eab60 t vfat_hashi
ffffff80083eabe8 t vfat_cmpi
ffffff80083eac88 t vfat_revalidate
ffffff80083eacf0 t vfat_hash
ffffff80083ead48 t vfat_cmp
ffffff80083eadc0 t msdos_mount
ffffff80083eade0 t msdos_fill_super
ffffff80083eae00 t setup
ffffff80083eae30 t msdos_lookup
ffffff80083eaf60 t msdos_create
ffffff80083eb0f0 t msdos_unlink
ffffff80083eb230 t msdos_mkdir
ffffff80083eb3f8 t msdos_rmdir
ffffff80083eb558 t msdos_rename
ffffff80083ebb08 t msdos_format_name
ffffff80083ebe30 t msdos_add_entry
ffffff80083ebf88 t msdos_hash
ffffff80083ec010 t msdos_cmp
ffffff80083ec0d8 t ecryptfs_d_revalidate
ffffff80083ec158 t ecryptfs_d_release
ffffff80083ec190 t ecryptfs_dentry_free_rcu
ffffff80083ec1b8 t ecryptfs_dir_llseek
ffffff80083ec1d8 t ecryptfs_readdir
ffffff80083ec280 t ecryptfs_unlocked_ioctl
ffffff80083ec348 t ecryptfs_compat_ioctl
ffffff80083ec400 t ecryptfs_dir_open
ffffff80083ec4c8 t ecryptfs_dir_release
ffffff80083ec508 t ecryptfs_fsync
ffffff80083ec548 t ecryptfs_read_update_atime
ffffff80083ec580 t ecryptfs_mmap
ffffff80083ec5b8 t ecryptfs_open
ffffff80083ec7a0 t ecryptfs_flush
ffffff80083ec7f8 t ecryptfs_release
ffffff80083ec830 t ecryptfs_fasync
ffffff80083ec868 t ecryptfs_filldir
ffffff80083ec980 T ecryptfs_get_inode
ffffff80083eca30 T ecryptfs_initialize_file
ffffff80083ecb38 T ecryptfs_truncate
ffffff80083ecc90 t truncate_upper
ffffff80083ecec0 T ecryptfs_setxattr
ffffff80083ecf28 T ecryptfs_getxattr_lower
ffffff80083ecfa8 t ecryptfs_get_link
ffffff80083ed0b0 t ecryptfs_permission
ffffff80083ed0c8 t ecryptfs_setattr
ffffff80083ed360 t ecryptfs_getattr_link
ffffff80083ed468 t ecryptfs_listxattr
ffffff80083ed4e8 t ecryptfs_lookup
ffffff80083ed7c0 t ecryptfs_create
ffffff80083ed998 t ecryptfs_link
ffffff80083edae0 t ecryptfs_unlink
ffffff80083edaf8 t ecryptfs_symlink
ffffff80083edc68 t ecryptfs_mkdir
ffffff80083edd68 t ecryptfs_rmdir
ffffff80083ede90 t ecryptfs_mknod
ffffff80083edf88 t ecryptfs_rename
ffffff80083ee0c8 t ecryptfs_getattr
ffffff80083ee158 t ecryptfs_xattr_get
ffffff80083ee1e0 t ecryptfs_xattr_set
ffffff80083ee2a8 t ecryptfs_inode_test
ffffff80083ee2b8 t ecryptfs_inode_set
ffffff80083ee390 t ecryptfs_do_unlink
ffffff80083ee480 T __ecryptfs_printk
ffffff80083ee540 T ecryptfs_get_lower_file
ffffff80083ee600 T ecryptfs_put_lower_file
ffffff80083ee650 t do_sysfs_unregistration
ffffff80083ee688 t ecryptfs_free_kmem_caches
ffffff80083ee720 t version_show
ffffff80083ee750 t ecryptfs_mount
ffffff80083eeed0 t ecryptfs_kill_block_super
ffffff80083eef10 t inode_info_init_once
ffffff80083eef28 t ecryptfs_alloc_inode
ffffff80083eefa0 t ecryptfs_destroy_inode
ffffff80083eefe0 t ecryptfs_evict_inode
ffffff80083ef018 t ecryptfs_statfs
ffffff80083ef080 t ecryptfs_show_options
ffffff80083ef1d8 t ecryptfs_i_callback
ffffff80083ef200 T ecryptfs_get_locked_page
ffffff80083ef270 T ecryptfs_write_inode_size_to_metadata
ffffff80083ef410 t ecryptfs_writepage
ffffff80083ef488 t ecryptfs_readpage
ffffff80083ef5c0 t ecryptfs_write_begin
ffffff80083ef9b8 t ecryptfs_write_end
ffffff80083efc00 t ecryptfs_bmap
ffffff80083efc40 t ecryptfs_copy_up_encrypted_with_header
ffffff80083efe48 T ecryptfs_write_lower
ffffff80083efec8 T ecryptfs_write_lower_page_segment
ffffff80083eff78 T ecryptfs_write
ffffff80083f0270 T ecryptfs_read_lower
ffffff80083f02d8 T ecryptfs_read_lower_page_segment
ffffff80083f0388 T ecryptfs_from_hex
ffffff80083f0450 T ecryptfs_derive_iv
ffffff80083f0618 T ecryptfs_init_crypt_stat
ffffff80083f06f0 T ecryptfs_destroy_crypt_stat
ffffff80083f07b0 T ecryptfs_destroy_mount_crypt_stat
ffffff80083f0888 T virt_to_scatterlist
ffffff80083f0960 T ecryptfs_encrypt_page
ffffff80083f0ac8 t crypt_extent
ffffff80083f0dc8 T ecryptfs_decrypt_page
ffffff80083f0ee0 T ecryptfs_init_crypt_ctx
ffffff80083f1000 t ecryptfs_crypto_api_algify_cipher_name
ffffff80083f1088 T ecryptfs_set_default_sizes
ffffff80083f10b0 T ecryptfs_compute_root_iv
ffffff80083f11d8 T ecryptfs_new_file_context
ffffff80083f1480 T ecryptfs_write_crypt_stat_flags
ffffff80083f14c0 T ecryptfs_code_for_cipher_string
ffffff80083f15f8 T ecryptfs_cipher_code_to_string
ffffff80083f16f0 T ecryptfs_read_and_validate_header_region
ffffff80083f1800 T ecryptfs_i_size_init
ffffff80083f1850 T ecryptfs_write_header_metadata
ffffff80083f1878 T ecryptfs_write_metadata
ffffff80083f1af8 T ecryptfs_read_xattr_region
ffffff80083f1b70 T ecryptfs_read_and_validate_xattr_region
ffffff80083f1c90 T ecryptfs_read_metadata
ffffff80083f1e80 t ecryptfs_read_headers_virt
ffffff80083f2088 T ecryptfs_destroy_crypto
ffffff80083f2148 T ecryptfs_add_new_key_tfm
ffffff80083f2378 T ecryptfs_tfm_exists
ffffff80083f2410 T ecryptfs_get_tfm_and_mutex_for_cipher_name
ffffff80083f2528 T ecryptfs_encrypt_and_encode_filename
ffffff80083f2940 t ecryptfs_copy_filename
ffffff80083f29b0 T ecryptfs_decode_and_decrypt_filename
ffffff80083f2bd8 T ecryptfs_set_f_namelen
ffffff80083f2cc0 t extent_crypt_complete
ffffff80083f2ce8 T ecryptfs_parse_packet_length
ffffff80083f2d78 T ecryptfs_write_packet_length
ffffff80083f2df0 T ecryptfs_write_tag_70_packet
ffffff80083f3478 T ecryptfs_parse_tag_70_packet
ffffff80083f3a98 T ecryptfs_keyring_auth_tok_for_sig
ffffff80083f3bc8 t ecryptfs_verify_auth_tok_from_key
ffffff80083f3c90 T ecryptfs_parse_packet_set
ffffff80083f4cb0 T ecryptfs_generate_key_packet_set
ffffff80083f5a28 t ecryptfs_find_global_auth_tok_for_sig
ffffff80083f5b50 T ecryptfs_add_keysig
ffffff80083f5be8 T ecryptfs_add_global_auth_tok
ffffff80083f5ca0 t ecryptfs_threadfn
ffffff80083f5e48 T ecryptfs_destroy_kthread
ffffff80083f5f30 T ecryptfs_privileged_open
ffffff80083f60b0 T ecryptfs_dump_auth_tok
ffffff80083f63e8 T ecryptfs_dump_hex
ffffff80083f64c0 T ecryptfs_msg_ctx_alloc_to_free
ffffff80083f6540 T ecryptfs_find_daemon_by_euid
ffffff80083f65d8 T ecryptfs_spawn_daemon
ffffff80083f66e0 T ecryptfs_exorcise_daemon
ffffff80083f6840 T ecryptfs_process_response
ffffff80083f6978 T ecryptfs_send_message
ffffff80083f6ba8 T ecryptfs_wait_for_response
ffffff80083f6ce8 T ecryptfs_release_messaging
ffffff80083f6e58 T ecryptfs_send_miscdev
ffffff80083f6f60 T ecryptfs_destroy_ecryptfs_miscdev
ffffff80083f6f90 t ecryptfs_miscdev_read
ffffff80083f7538 t ecryptfs_miscdev_write
ffffff80083f7800 t ecryptfs_miscdev_poll
ffffff80083f78e0 t ecryptfs_miscdev_open
ffffff80083f79e0 t ecryptfs_miscdev_release
ffffff80083f7a80 t sdcardfs_d_revalidate
ffffff80083f7d28 t sdcardfs_hash_ci
ffffff80083f7d90 t sdcardfs_cmp_ci
ffffff80083f7dc8 t sdcardfs_d_delete
ffffff80083f7dd8 t sdcardfs_d_release
ffffff80083f7ed0 t sdcardfs_canonical_path
ffffff80083f7f50 T sdcardfs_read_iter
ffffff80083f7ff0 T sdcardfs_write_iter
ffffff80083f80b8 t sdcardfs_read
ffffff80083f8100 t sdcardfs_write
ffffff80083f8258 t sdcardfs_unlocked_ioctl
ffffff80083f8368 t sdcardfs_compat_ioctl
ffffff80083f8408 t sdcardfs_mmap
ffffff80083f8518 t sdcardfs_open
ffffff80083f8770 t sdcardfs_flush
ffffff80083f87d0 t sdcardfs_file_release
ffffff80083f8810 t sdcardfs_fsync
ffffff80083f88e0 t sdcardfs_fasync
ffffff80083f8918 t sdcardfs_get_lower_file
ffffff80083f8928 t sdcardfs_file_llseek
ffffff80083f8978 t sdcardfs_readdir
ffffff80083f89d8 T override_fsids
ffffff80083f8a60 T revert_fsids
ffffff80083f8aa8 T copy_attrs
ffffff80083f8b08 t sdcardfs_permission
ffffff80083f8d00 t sdcardfs_setattr
ffffff80083f9148 t sdcardfs_permission_wrn
ffffff80083f9188 t sdcardfs_create
ffffff80083f9428 t sdcardfs_unlink
ffffff80083f9650 t sdcardfs_mkdir
ffffff80083f9c68 t sdcardfs_rmdir
ffffff80083f9e88 t sdcardfs_rename
ffffff80083fa248 t sdcardfs_setattr_wrn
ffffff80083fa288 t sdcardfs_getattr
ffffff80083fa540 T parse_options_remount
ffffff80083fa780 T sdcardfs_alloc_mnt_data
ffffff80083fa7b0 T sdcardfs_kill_sb
ffffff80083fa838 t sdcardfs_mount_wrn
ffffff80083fa860 t sdcardfs_mount
ffffff80083fa8c0 t __sdcardfs_fill_super
ffffff80083faeb0 T data_release
ffffff80083faed8 T sdcardfs_init_inode_cache
ffffff80083faf58 t init_once
ffffff80083faf70 T sdcardfs_destroy_inode_cache
ffffff80083faf98 T sdcardfs_on_fscrypt_key_removed
ffffff80083fafb8 t sdcardfs_alloc_inode
ffffff80083fb050 t sdcardfs_destroy_inode
ffffff80083fb070 t sdcardfs_evict_inode
ffffff80083fb0f0 t sdcardfs_put_super
ffffff80083fb158 t sdcardfs_statfs
ffffff80083fb258 t sdcardfs_remount_fs
ffffff80083fb298 t sdcardfs_remount_fs2
ffffff80083fb310 t sdcardfs_clone_mnt_data
ffffff80083fb358 t sdcardfs_copy_mnt_data
ffffff80083fb370 t sdcardfs_umount_begin
ffffff80083fb3a0 t sdcardfs_show_options
ffffff80083fb4e0 t i_callback
ffffff80083fb540 T sdcardfs_init_dentry_cache
ffffff80083fb588 T sdcardfs_destroy_dentry_cache
ffffff80083fb5a8 T free_dentry_private_data
ffffff80083fb5d8 T new_dentry_private_data
ffffff80083fb628 T sdcardfs_iget
ffffff80083fb830 t sdcardfs_inode_test
ffffff80083fb868 t sdcardfs_inode_set
ffffff80083fb870 T sdcardfs_interpose
ffffff80083fb8f8 T sdcardfs_lookup
ffffff80083fbd78 t sdcardfs_name_match
ffffff80083fbdf0 t sdcardfs_direct_IO
ffffff80083fbdf8 t sdcardfs_vm_open
ffffff80083fbe18 t sdcardfs_vm_close
ffffff80083fbe30 t sdcardfs_fault
ffffff80083fbe60 t sdcardfs_page_mkwrite
ffffff80083fbea0 T get_appid
ffffff80083fbfa0 T get_ext_gid
ffffff80083fc0a0 T is_excluded
ffffff80083fc1b8 T check_caller_access_to_name
ffffff80083fc250 T packagelist_init
ffffff80083fc378 T packagelist_exit
ffffff80083fc520 t extensions_make_group
ffffff80083fc5e8 t extensions_drop_group
ffffff80083fc620 t extension_details_make_item
ffffff80083fc838 t extension_details_release
ffffff80083fc938 t packages_make_item
ffffff80083fca38 t package_details_release
ffffff80083fcca0 t package_details_appid_show
ffffff80083fcd50 t package_details_appid_store
ffffff80083fcf40 t package_details_excluded_userids_show
ffffff80083fd030 t package_details_excluded_userids_store
ffffff80083fd220 t package_details_clear_userid_store
ffffff80083fd3c8 t packages_list_show
ffffff80083fd560 t packages_remove_userid_store
ffffff80083fd740 T setup_derived_state
ffffff80083fd778 T get_derived_permission_new
ffffff80083fdab8 T get_derived_permission
ffffff80083fdad0 T fixup_lower_ownership
ffffff80083fde00 T fixup_perms_recursive
ffffff80083fde18 t __fixup_perms_recursive
ffffff80083fdfb0 T update_derived_permission_lock
ffffff80083fe058 T need_graft_path
ffffff80083fe0f8 T is_obbpath_invalid
ffffff80083fe230 T is_base_obbpath
ffffff80083fe2d0 T setup_obb_dentry
ffffff80083fe388 T exportfs_encode_inode_fh
ffffff80083fe428 T exportfs_encode_fh
ffffff80083fe528 T exportfs_decode_fh
ffffff80083fe778 t reconnect_path
ffffff80083fe9c0 t find_acceptable_alias
ffffff80083feac8 t exportfs_get_name
ffffff80083fec40 t filldir_one
ffffff80083feca8 T utf8_to_utf32
ffffff80083fee00 T utf32_to_utf8
ffffff80083feec0 T utf8s_to_utf16s
ffffff80083ff168 T utf16s_to_utf8s
ffffff80083ff438 T __register_nls
ffffff80083ff4b8 T unregister_nls
ffffff80083ff540 T load_nls
ffffff80083ff580 t find_nls
ffffff80083ff608 T unload_nls
ffffff80083ff628 T load_nls_default
ffffff80083ff688 t uni2char
ffffff80083ff6d0 t char2uni
ffffff80083ff6f8 t uni2char
ffffff80083ff740 t char2uni
ffffff80083ff768 t uni2char
ffffff80083ff7b0 t char2uni
ffffff80083ff7d8 t ntfs_readpage
ffffff80084000b8 t ntfs_bmap
ffffff8008400268 t ntfs_end_buffer_async_read
ffffff8008400640 T ntfs_map_runlist_nolock
ffffff8008400ab0 T ntfs_attr_get_search_ctx
ffffff8008400b10 T ntfs_attr_reinit_search_ctx
ffffff8008400b90 T ntfs_attr_lookup
ffffff8008401348 T ntfs_attr_put_search_ctx
ffffff8008401390 T ntfs_map_runlist
ffffff8008401400 T ntfs_attr_vcn_to_lcn_nolock
ffffff80084015d0 T ntfs_attr_find_vcn_nolock
ffffff8008401728 T load_attribute_list
ffffff8008401960 t ntfs_attr_find
ffffff8008401ce8 T ntfs_collate
ffffff8008401db0 t ntfs_collate_binary
ffffff8008401e08 t ntfs_collate_ntofs_ulong
ffffff8008401e38 T allocate_compression_buffers
ffffff8008401e80 T free_compression_buffers
ffffff8008401eb0 T ntfs_read_compressed_block
ffffff80084033d0 T __ntfs_warning
ffffff80084034e0 T __ntfs_error
ffffff80084035f0 T ntfs_lookup_inode_by_name
ffffff8008404158 t ntfs_readdir
ffffff8008404f40 t ntfs_dir_open
ffffff8008404f48 t ntfs_file_open
ffffff8008404f60 T ntfs_index_ctx_get
ffffff8008404fb0 T ntfs_index_ctx_put
ffffff8008405068 T ntfs_index_lookup
ffffff8008405800 T ntfs_test_inode
ffffff8008405880 T ntfs_iget
ffffff8008405928 t ntfs_init_locked_inode
ffffff8008405a20 t ntfs_read_locked_inode
ffffff8008406970 T ntfs_attr_iget
ffffff8008406fe8 T ntfs_index_iget
ffffff8008407770 T ntfs_alloc_big_inode
ffffff80084077d8 T ntfs_destroy_big_inode
ffffff8008407828 t ntfs_i_callback
ffffff8008407850 T __ntfs_init_inode
ffffff8008407910 T ntfs_new_extent_inode
ffffff8008407a20 T ntfs_read_inode_mount
ffffff8008408230 T ntfs_clear_extent_inode
ffffff80084082a8 t __ntfs_clear_inode
ffffff8008408348 T ntfs_evict_big_inode
ffffff8008408440 T ntfs_show_options
ffffff80084085e8 T map_mft_record
ffffff8008408800 T unmap_mft_record
ffffff8008408878 T map_extent_mft_record
ffffff8008408c08 T post_read_mst_fixup
ffffff8008408cc0 T pre_write_mst_fixup
ffffff8008408d88 T post_write_mst_fixup
ffffff8008408dc8 t ntfs_lookup
ffffff80084091a0 t ntfs_fh_to_dentry
ffffff80084091c0 t ntfs_fh_to_parent
ffffff80084091e0 t ntfs_get_parent
ffffff8008409300 t ntfs_nfs_get_inode
ffffff8008409358 T ntfs_runlists_merge
ffffff800840a390 T ntfs_mapping_pairs_decompress
ffffff800840a7f8 T ntfs_rl_vcn_to_lcn
ffffff800840a898 t ntfs_mount
ffffff800840a8b8 t ntfs_fill_super
ffffff800840ba80 t parse_options
ffffff800840c388 t simple_getbool
ffffff800840c440 t is_boot_sector_ntfs
ffffff800840c5f0 t ntfs_put_super
ffffff800840c758 t ntfs_statfs
ffffff800840ca80 t ntfs_remount
ffffff800840cad8 t ntfs_big_inode_init_once
ffffff800840caf0 T ntfs_are_names_equal
ffffff800840cb88 T ntfs_ucsncmp
ffffff800840cbe0 T ntfs_ucsncasecmp
ffffff800840cc50 T ntfs_collate_names
ffffff800840cd68 T ntfs_upcase_name
ffffff800840cda8 T ntfs_file_upcase_value
ffffff800840cde8 T ntfs_file_compare_values
ffffff800840cf18 T ntfs_nlstoucs
ffffff800840d0b0 T ntfs_ucstonls
ffffff800840d2c8 T generate_default_upcase
ffffff800840d410 T fuse_request_alloc
ffffff800840d430 t __fuse_request_alloc
ffffff800840d500 T fuse_request_alloc_nofs
ffffff800840d520 T fuse_request_free
ffffff800840d580 T __fuse_get_request
ffffff800840d598 T fuse_set_initialized
ffffff800840d5a8 T fuse_get_req
ffffff800840d5c0 t __fuse_get_req
ffffff800840d7f0 T fuse_get_req_for_background
ffffff800840d808 T fuse_get_req_nofail_nopages
ffffff800840da00 T fuse_put_request
ffffff800840db50 T fuse_queue_forget
ffffff800840dbd8 T fuse_request_send
ffffff800840dc28 t __fuse_request_send
ffffff800840df28 T fuse_simple_request
ffffff800840e0f8 T fuse_request_send_background_locked
ffffff800840e1e0 t flush_bg_queue
ffffff800840e340 T fuse_request_send_background
ffffff800840e3c0 T fuse_force_forget
ffffff800840e490 T fuse_abort_conn
ffffff800840e7f0 T fuse_wait_aborted
ffffff800840e880 T fuse_dev_release
ffffff800840ea08 t fuse_dev_read
ffffff800840eab0 t fuse_dev_write
ffffff800840eb48 t fuse_dev_poll
ffffff800840ec00 t fuse_dev_ioctl
ffffff800840ee00 t fuse_dev_open
ffffff800840ee10 t fuse_dev_fasync
ffffff800840ee40 t fuse_dev_splice_write
ffffff800840f140 t fuse_dev_splice_read
ffffff800840f320 T fuse_dev_cleanup
ffffff800840f348 t fuse_request_init
ffffff800840f498 t queue_interrupt
ffffff800840f550 t request_end
ffffff800840f720 t fuse_dev_do_read
ffffff8008410048 t fuse_copy_args
ffffff8008410220 t fuse_copy_finish
ffffff80084102b8 t fuse_copy_fill
ffffff80084104c0 t fuse_copy_do
ffffff80084105d0 t fuse_copy_page
ffffff8008410d18 t fuse_dev_do_write
ffffff8008411978 t fuse_retrieve_end
ffffff8008411998 T fuse_invalidate_attr
ffffff80084119a0 T fuse_invalidate_atime
ffffff80084119b8 T fuse_invalidate_entry_cache
ffffff80084119c8 T fuse_get_attr_version
ffffff80084119f8 t fuse_dentry_revalidate
ffffff8008411d28 t fuse_dentry_init
ffffff8008411d78 t fuse_dentry_release
ffffff8008411d98 t fuse_dentry_canonical_path
ffffff8008411e90 T fuse_valid_type
ffffff8008411ed8 T fuse_invalid_attr
ffffff8008411f18 T fuse_lookup_name
ffffff8008412130 T fuse_update_ctime
ffffff8008412168 T fuse_update_attributes
ffffff80084121b8 T fuse_reverse_inval_entry
ffffff8008412398 T fuse_allow_current_process
ffffff8008412418 T fuse_set_nowrite
ffffff8008412510 T fuse_release_nowrite
ffffff8008412568 T fuse_flush_times
ffffff80084126b0 T fuse_do_setattr
ffffff8008412c68 T fuse_init_common
ffffff8008412c78 T fuse_init_dir
ffffff8008412c98 T fuse_init_symlink
ffffff8008412ca8 t fuse_do_getattr
ffffff8008412f78 t fuse_permission
ffffff8008413228 t fuse_setattr
ffffff80084133d0 t fuse_getattr
ffffff80084134d8 t fuse_lookup
ffffff8008413628 t fuse_create
ffffff8008413640 t fuse_link
ffffff80084137a8 t fuse_unlink
ffffff80084138f0 t fuse_symlink
ffffff80084139c8 t fuse_mkdir
ffffff8008413ad8 t fuse_rmdir
ffffff8008413bc0 t fuse_mknod
ffffff8008413cf0 t fuse_rename2
ffffff8008413d78 t fuse_atomic_open
ffffff8008414228 t create_new_entry
ffffff80084144b0 t fuse_rename_common
ffffff80084146b8 t fuse_readdir
ffffff8008414d60 t fuse_dir_ioctl
ffffff8008414da0 t fuse_dir_compat_ioctl
ffffff8008414de0 t fuse_dir_open
ffffff8008414df8 t fuse_dir_release
ffffff8008414e18 t fuse_dir_fsync
ffffff8008414e30 t fuse_get_link
ffffff8008414f58 T fuse_file_alloc
ffffff8008415018 T fuse_file_free
ffffff8008415048 T fuse_do_open
ffffff8008415258 T fuse_finish_open
ffffff80084153b8 T fuse_open_common
ffffff8008415490 T fuse_release_common
ffffff80084155a8 t fuse_prepare_release
ffffff8008415670 T fuse_lock_owner_id
ffffff80084156e8 t fuse_file_put
ffffff80084157b8 T fuse_sync_release
ffffff8008415818 T fuse_fsync_common
ffffff80084159f8 T fuse_read_fill
ffffff8008415a48 T fuse_write_update_size
ffffff8008415ab8 T fuse_direct_io
ffffff8008416010 t fuse_send_write
ffffff80084161f8 t fuse_send_read
ffffff8008416388 T fuse_flush_writepages
ffffff8008416418 t fuse_send_writepage
ffffff80084164f8 T fuse_write_inode
ffffff8008416580 T fuse_do_ioctl
ffffff8008416c60 T fuse_ioctl_common
ffffff8008416ce0 T fuse_file_poll
ffffff8008416ed0 T fuse_notify_poll_wakeup
ffffff8008416f48 T fuse_init_file_inode
ffffff8008416f68 t fuse_release_end
ffffff8008416f80 t fuse_aio_complete_req
ffffff80084170b0 t fuse_aio_complete
ffffff80084171e0 t fuse_writepage_finish
ffffff8008417300 t fuse_file_llseek
ffffff80084174e8 t fuse_direct_read_iter
ffffff8008417598 t fuse_direct_write_iter
ffffff80084176d0 t fuse_file_ioctl
ffffff8008417740 t fuse_file_compat_ioctl
ffffff80084177b0 t fuse_direct_mmap
ffffff80084177f8 t fuse_open
ffffff8008417810 t fuse_flush
ffffff8008417a00 t fuse_release
ffffff8008417a50 t fuse_fsync
ffffff8008417a68 t fuse_file_lock
ffffff8008417cb8 t fuse_file_flock
ffffff8008417d18 t fuse_file_fallocate
ffffff8008417f70 t fuse_setlk
ffffff8008418170 t fuse_file_read_iter
ffffff8008418210 t fuse_file_write_iter
ffffff8008418478 t fuse_file_mmap
ffffff8008418558 t fuse_perform_write
ffffff8008418ac8 t fuse_wait_on_page_writeback
ffffff8008418c28 t fuse_vma_close
ffffff8008418c48 t fuse_page_mkwrite
ffffff8008418ce8 t fuse_writepage
ffffff8008418dd8 t fuse_readpage
ffffff8008418e40 t fuse_writepages
ffffff8008418f48 t fuse_readpages
ffffff8008419060 t fuse_write_begin
ffffff8008419228 t fuse_write_end
ffffff80084193a8 t fuse_bmap
ffffff80084194e0 t fuse_direct_IO
ffffff8008419810 t fuse_launder_page
ffffff8008419858 t fuse_writepage_locked
ffffff8008419c38 t fuse_writepage_end
ffffff8008419d98 t fuse_do_readpage
ffffff8008419f70 t fuse_short_read
ffffff800841a150 t fuse_writepages_fill
ffffff800841a8b0 t fuse_writepages_send
ffffff800841a9c8 t fuse_readpages_fill
ffffff800841ab48 t fuse_send_readpages
ffffff800841ac58 t fuse_readpages_end
ffffff800841ad80 T fuse_alloc_forget
ffffff800841adb0 T fuse_change_attributes_common
ffffff800841aec8 T fuse_change_attributes
ffffff800841aff0 T fuse_inode_eq
ffffff800841b008 T fuse_iget
ffffff800841b238 t fuse_inode_set
ffffff800841b250 T fuse_reverse_inval_inode
ffffff800841b308 T fuse_lock_inode
ffffff800841b340 T fuse_unlock_inode
ffffff800841b360 T fuse_conn_init
ffffff800841b490 T fuse_conn_put
ffffff800841b4d0 T fuse_conn_get
ffffff800841b4f8 T fuse_dev_alloc
ffffff800841b5c8 T fuse_dev_free
ffffff800841b650 t fuse_sysfs_cleanup
ffffff800841b688 t fuse_fs_cleanup
ffffff800841b6c0 t set_global_limit
ffffff800841b738 t fuse_mount
ffffff800841b758 t fuse_kill_sb_anon
ffffff800841b780 t fuse_fill_super
ffffff800841bf88 t fuse_free_conn
ffffff800841bfd8 t fuse_alloc_inode
ffffff800841c0c0 t fuse_destroy_inode
ffffff800841c120 t fuse_evict_inode
ffffff800841c170 t fuse_put_super
ffffff800841c1f8 t fuse_statfs
ffffff800841c320 t fuse_remount_fs
ffffff800841c350 t fuse_umount_begin
ffffff800841c370 t fuse_show_options
ffffff800841c468 t fuse_i_callback
ffffff800841c490 t fuse_encode_fh
ffffff800841c4f8 t fuse_fh_to_dentry
ffffff800841c570 t fuse_fh_to_parent
ffffff800841c5e8 t fuse_get_parent
ffffff800841c6c0 t fuse_get_dentry
ffffff800841c808 t process_init_reply
ffffff800841cc18 t fuse_sb_destroy
ffffff800841ccb8 t fuse_mount_blk
ffffff800841ccd8 t fuse_kill_sb_blk
ffffff800841cd00 t fuse_inode_init_once
ffffff800841cd18 T fuse_ctl_add_conn
ffffff800841cef8 t fuse_ctl_add_dentry
ffffff800841cff8 T fuse_ctl_remove_conn
ffffff800841d098 t fuse_conn_waiting_read
ffffff800841d188 t fuse_conn_abort_write
ffffff800841d200 t fuse_conn_max_background_read
ffffff800841d2e0 t fuse_conn_max_background_write
ffffff800841d3f0 t fuse_conn_congestion_threshold_read
ffffff800841d4d0 t fuse_conn_congestion_threshold_write
ffffff800841d5e0 t fuse_ctl_mount
ffffff800841d600 t fuse_ctl_kill_sb
ffffff800841d668 t fuse_ctl_fill_super
ffffff800841d720 T fuse_setxattr
ffffff800841d878 T fuse_getxattr
ffffff800841d9e8 T fuse_listxattr
ffffff800841db98 T fuse_removexattr
ffffff800841dca0 t fuse_xattr_get