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
ffffff800841dcc8 t fuse_xattr_set
ffffff800841ddf0 t no_xattr_list
ffffff800841ddf8 t no_xattr_get
ffffff800841de00 t no_xattr_set
ffffff800841de08 T fuse_get_acl
ffffff800841df60 T fuse_set_acl
ffffff800841e0a8 T inode_name
ffffff800841e190 T fuse_shortcircuit_setup
ffffff800841e470 T fuse_shortcircuit_read_iter
ffffff800841e5e0 t fuse_aio_rw_complete
ffffff800841e678 T fuse_shortcircuit_write_iter
ffffff800841e888 T fuse_shortcircuit_mmap
ffffff800841e9c0 T fuse_shortcircuit_release
ffffff800841ea18 t ovl_mount
ffffff800841ea38 t ovl_fill_super
ffffff800841fca8 t ovl_free_fs
ffffff800841fe00 t ovl_alloc_inode
ffffff800841fe68 t ovl_destroy_inode
ffffff800841fed0 t ovl_put_super
ffffff800841fee8 t ovl_sync_fs
ffffff800841ff40 t ovl_statfs
ffffff800841ffc0 t ovl_remount
ffffff800841fff0 t ovl_show_options
ffffff8008420280 t ovl_i_callback
ffffff80084202a8 t ovl_mount_dir
ffffff8008420390 t ovl_mount_dir_noesc
ffffff8008420460 t ovl_workdir_create
ffffff80084206a0 t ovl_dentry_revalidate
ffffff8008420740 t ovl_dentry_weak_revalidate
ffffff80084207c8 t ovl_dentry_release
ffffff8008420828 t ovl_d_real
ffffff8008420940 t ovl_check_layer
ffffff8008420a48 t ovl_posix_acl_xattr_get
ffffff8008420a78 t __ovl_posix_acl_xattr_get
ffffff8008420aa8 t ovl_posix_acl_xattr_set
ffffff8008420ce0 t ovl_own_xattr_get
ffffff8008420ce8 t ovl_own_xattr_set
ffffff8008420cf0 t ovl_other_xattr_get
ffffff8008420d18 t __ovl_other_xattr_get
ffffff8008420d40 t ovl_other_xattr_set
ffffff8008420d70 t ovl_inode_init_once
ffffff8008420d88 T ovl_check_fh_len
ffffff8008420de0 T ovl_decode_real_fh
ffffff8008420ea0 t ovl_acceptable
ffffff8008420ef8 T ovl_check_origin_fh
ffffff80084210f0 T ovl_verify_set_fh
ffffff8008421258 T ovl_index_upper
ffffff80084213d8 t ovl_get_fh
ffffff8008421518 T ovl_verify_index
ffffff8008421810 T ovl_get_index_name
ffffff8008421860 t ovl_get_index_name_fh
ffffff80084218d0 T ovl_get_index_fh
ffffff80084219a0 T ovl_lookup_index
ffffff8008421c40 T ovl_path_next
ffffff8008421cd8 T ovl_lookup
ffffff80084225f8 t ovl_lookup_layer
ffffff8008422790 T ovl_lower_positive
ffffff80084228a8 t ovl_lookup_single
ffffff8008422ad8 T ovl_want_write
ffffff8008422af8 T ovl_drop_write
ffffff8008422b18 T ovl_workdir
ffffff8008422b28 T ovl_override_creds
ffffff8008422b58 T ovl_revert_creds
ffffff8008422b70 T ovl_vfs_getxattr
ffffff8008422b98 T ovl_same_sb
ffffff8008422bd8 T ovl_can_decode_fh
ffffff8008422c30 T ovl_indexdir
ffffff8008422c40 T ovl_index_all
ffffff8008422c68 T ovl_verify_lower
ffffff8008422c90 T ovl_alloc_entry
ffffff8008422cd0 T ovl_dentry_remote
ffffff8008422ce8 T ovl_dentry_weird
ffffff8008422d00 T ovl_path_type
ffffff8008422d88 T ovl_dentry_upper
ffffff8008422d98 T ovl_test_flag
ffffff8008422dc0 T ovl_has_upperdata
ffffff8008422df8 T ovl_path_upper
ffffff8008422e18 T ovl_path_lower
ffffff8008422e48 T ovl_path_lowerdata
ffffff8008422e90 T ovl_path_real
ffffff8008422f68 T ovl_dentry_lower
ffffff8008422f88 T ovl_layer_lower
ffffff8008422fa8 T ovl_dentry_lowerdata
ffffff8008422fd0 T ovl_dentry_real
ffffff8008423000 T ovl_i_dentry_upper
ffffff8008423008 T ovl_inode_upper
ffffff8008423020 T ovl_inode_lower
ffffff8008423028 T ovl_inode_real
ffffff8008423050 T ovl_inode_lowerdata
ffffff8008423098 T ovl_inode_realdata
ffffff8008423128 T ovl_dir_cache
ffffff8008423130 T ovl_set_dir_cache
ffffff8008423138 T ovl_dentry_set_flag
ffffff8008423160 T ovl_dentry_clear_flag
ffffff8008423188 T ovl_dentry_test_flag
ffffff80084231b0 T ovl_dentry_is_opaque
ffffff80084231c0 T ovl_dentry_is_whiteout
ffffff80084231e0 T ovl_dentry_set_opaque
ffffff80084231f8 T ovl_dentry_has_upper_alias
ffffff8008423208 T ovl_dentry_set_upper_alias
ffffff8008423220 T ovl_set_upperdata
ffffff8008423240 T ovl_set_flag
ffffff8008423268 T ovl_dentry_needs_data_copy_up_locked
ffffff80084232a0 T ovl_dentry_needs_data_copy_up
ffffff80084232f8 T ovl_redirect_dir
ffffff8008423320 T ovl_dentry_get_redirect
ffffff8008423330 T ovl_dentry_set_redirect
ffffff8008423360 T ovl_inode_init
ffffff8008423418 T ovl_inode_update
ffffff8008423490 T ovl_dir_modified
ffffff80084235b8 T ovl_dentry_version_get
ffffff80084235f8 T ovl_is_whiteout
ffffff8008423628 T ovl_path_open
ffffff8008423648 T ovl_already_copied_up
ffffff80084236b8 T ovl_copy_up_start
ffffff8008423748 T ovl_copy_up_end
ffffff8008423768 T ovl_check_origin_xattr
ffffff8008423798 T ovl_check_dir_xattr
ffffff8008423820 T ovl_check_setxattr
ffffff80084238a0 T ovl_set_impure
ffffff8008423948 T ovl_clear_flag
ffffff8008423970 T ovl_inuse_trylock
ffffff80084239c8 T ovl_inuse_unlock
ffffff8008423a28 T ovl_is_inuse
ffffff8008423a68 T ovl_need_index
ffffff8008423ad8 T ovl_nlink_start
ffffff8008423c28 T ovl_nlink_end
ffffff8008423e40 T ovl_lock_rename_workdir
ffffff8008423e90 T ovl_check_metacopy_xattr
ffffff8008423f30 T ovl_is_metacopy_dentry
ffffff8008423fa0 T ovl_getxattr
ffffff80084240a8 T ovl_get_redirect_xattr
ffffff80084241c0 T ovl_setattr
ffffff8008424368 T ovl_getattr
ffffff8008424698 T ovl_permission
ffffff8008424788 T ovl_is_private_xattr
ffffff80084247b0 T ovl_xattr_set
ffffff8008424920 T __ovl_xattr_get
ffffff80084249a8 T ovl_xattr_get
ffffff8008424a30 T ovl_listxattr
ffffff8008424b60 T ovl_get_acl
ffffff8008424bd0 T ovl_update_time
ffffff8008424c58 T ovl_set_nlink_upper
ffffff8008424d10 T ovl_set_nlink_lower
ffffff8008424dc8 T ovl_get_nlink
ffffff8008424f08 T ovl_new_inode
ffffff8008425018 T ovl_lookup_inode
ffffff80084250a8 t ovl_inode_test
ffffff80084250b8 T ovl_lookup_trap_inode
ffffff8008425130 T ovl_get_trap_inode
ffffff80084251c8 t ovl_inode_set
ffffff80084251d8 T ovl_get_inode
ffffff80084256b0 t ovl_fiemap
ffffff8008425750 t ovl_get_link
ffffff80084257b0 t ovl_llseek
ffffff80084258c8 t ovl_read_iter
ffffff8008425a38 t ovl_write_iter
ffffff8008425c40 t ovl_ioctl
ffffff8008425f78 t ovl_compat_ioctl
ffffff8008425fc8 t ovl_mmap
ffffff80084260f8 t ovl_open
ffffff80084261c8 t ovl_release
ffffff80084261e8 t ovl_fsync
ffffff80084262d0 t ovl_fallocate
ffffff80084263e0 t ovl_copy_file_range
ffffff80084263f8 t ovl_clone_file_range
ffffff8008426418 t ovl_dedupe_file_range
ffffff8008426498 t ovl_fadvise
ffffff8008426558 t ovl_real_fdget_meta
ffffff80084266e0 t ovl_ioctl_set_flags
ffffff8008426868 t ovl_copyfile
ffffff8008426a18 T ovl_cleanup
ffffff8008426aa0 T ovl_cleanup_and_whiteout
ffffff8008426c18 T ovl_create_real
ffffff8008426d98 T ovl_create_temp
ffffff8008426dd0 t ovl_lookup_temp
ffffff8008426e98 t ovl_create
ffffff8008426ec8 t ovl_link
ffffff8008427000 t ovl_unlink
ffffff8008427020 t ovl_symlink
ffffff8008427048 t ovl_mkdir
ffffff8008427070 t ovl_rmdir
ffffff8008427090 t ovl_mknod
ffffff80084270d0 t ovl_rename
ffffff8008427878 t ovl_create_object
ffffff8008427980 t ovl_create_or_link
ffffff8008428070 t ovl_instantiate
ffffff80084281a8 t ovl_set_upper_acl
ffffff8008428260 t ovl_set_redirect
ffffff8008428508 t ovl_do_remove
ffffff80084288a8 t ovl_clear_empty
ffffff8008428b88 T ovl_cache_free
ffffff8008428bd8 T ovl_dir_cache_free
ffffff8008428c48 t ovl_dir_llseek
ffffff8008428dc0 t ovl_iterate
ffffff80084295f8 t ovl_dir_open
ffffff80084296e0 t ovl_dir_release
ffffff8008429750 t ovl_dir_fsync
ffffff8008429880 T ovl_check_empty_dir
ffffff80084299b0 t ovl_dir_read_merged
ffffff8008429ce0 T ovl_cleanup_whiteouts
ffffff8008429dd8 T ovl_check_d_type_supported
ffffff8008429f68 t ovl_check_d_type
ffffff8008429fd8 T ovl_workdir_cleanup
ffffff800842a2b8 T ovl_indexdir_cleanup
ffffff800842a5e0 t ovl_fill_merge
ffffff800842a818 t ovl_cache_put
ffffff800842a8d0 t ovl_cache_update_ino
ffffff800842ab28 t ovl_fill_real
ffffff800842ac80 t ovl_fill_plain
ffffff800842ad08 t ovl_cache_entry_new
ffffff800842ae18 T ovl_copy_xattr
ffffff800842b018 T ovl_set_attr
ffffff800842b120 T ovl_encode_real_fh
ffffff800842b2a8 T ovl_set_origin
ffffff800842b350 T ovl_copy_up_flags
ffffff800842bac0 T ovl_maybe_copy_up
ffffff800842bb70 T ovl_copy_up_with_data
ffffff800842bb88 T ovl_copy_up
ffffff800842bba0 t ovl_ccup_set
ffffff800842bbc0 t ovl_ccup_get
ffffff800842bbd8 t ovl_copy_up_locked
ffffff800842c0f0 t ovl_install_temp
ffffff800842c1c8 t ovl_copy_up_data
ffffff800842c340 t ovl_encode_fh
ffffff800842c6c0 t ovl_fh_to_dentry
ffffff800842c9c8 t ovl_fh_to_parent
ffffff800842ca08 t ovl_get_name
ffffff800842ca18 t ovl_get_parent
ffffff800842ca28 t ovl_get_dentry
ffffff800842cc10 t ovl_lookup_real
ffffff800842cfe0 t ovl_lookup_real_ancestor
ffffff800842d2a0 T incfs_alloc_mount_info
ffffff800842d400 t log_wake_up_all
ffffff800842d428 T incfs_realloc_mount_info
ffffff800842d520 T incfs_free_mount_info
ffffff800842d598 T incfs_open_data_file
ffffff800842d7a8 T incfs_scan_metadata_chain
ffffff800842d908 T incfs_free_data_file
ffffff800842d940 T make_inode_ready_for_data_ops
ffffff800842da28 T incfs_open_dir_file
ffffff800842daa8 T incfs_free_dir_file
ffffff800842dae0 T incfs_get_filled_blocks
ffffff800842dee0 T incfs_read_data_file_block
ffffff800842e9e0 t log_block_read
ffffff800842ec08 T incfs_process_new_data_block
ffffff800842ee08 T incfs_read_file_signature
ffffff800842ee78 T incfs_process_new_hash_block
ffffff800842ef48 t process_blockmap_md
ffffff800842ef88 t process_file_attr_md
ffffff800842efc8 t process_file_signature_md
ffffff800842f140 T incfs_fresh_pending_reads_exist
ffffff800842f1a0 T incfs_collect_pending_reads
ffffff800842f288 T incfs_get_log_state
ffffff800842f2e0 T incfs_get_uncollected_logs_count
ffffff800842f350 T incfs_collect_logged_reads
ffffff800842f488 t log_read_one_record
ffffff800842f570 T incfs_equal_ranges
ffffff800842f5a8 T incfs_alloc_bfc
ffffff800842f620 T incfs_free_bfc
ffffff800842f658 T incfs_get_end_offset
ffffff800842f668 T incfs_write_file_header_flags
ffffff800842f6e8 T incfs_write_blockmap_to_backing_file
ffffff800842f858 t append_md_to_backing_file
ffffff800842f990 T incfs_write_file_attr_to_backing_file
ffffff800842fb50 T incfs_write_signature_to_backing_file
ffffff800842fd48 T incfs_write_fh_to_backing_file
ffffff800842fe20 T incfs_write_data_block_to_backing_file
ffffff800842ff40 T incfs_write_hash_block_to_backing_file
ffffff8008430080 T incfs_make_empty_backing_file
ffffff8008430218 T incfs_read_blockmap_entry
ffffff80084302d8 T incfs_read_blockmap_entries
ffffff8008430370 T incfs_kread
ffffff80084303b8 T incfs_read_file_header
ffffff80084304f0 T incfs_read_next_metadata_record
ffffff80084306f8 T incfs_kwrite
ffffff8008430740 T incfs_get_hash_alg
ffffff80084307f8 T incfs_alloc_mtree
ffffff8008430ac8 T incfs_free_mtree
ffffff8008430ae0 T incfs_calc_digest
ffffff8008430c00 t cleanup_sysfs
ffffff8008430c50 t corefs_show
ffffff8008430c78 T incfs_mount_fs
ffffff8008431038 t parse_options
ffffff80084311f8 T incfs_kill_sb
ffffff8008431228 t alloc_inode
ffffff8008431278 t free_inode
ffffff80084312e8 t evict_inode
ffffff8008431390 t incfs_remount_fs
ffffff8008431428 t show_options
ffffff80084314f0 t dentry_revalidate
ffffff8008431638 t dentry_release
ffffff8008431670 t incfs_handler_getxattr
ffffff8008431790 t incfs_handler_setxattr
ffffff80084318d0 t inode_test
ffffff8008431968 t inode_set
ffffff8008431c00 t read_single_page
ffffff8008431e20 t incfs_setattr
ffffff8008431f10 t incfs_listxattr
ffffff8008431f48 t dispatch_ioctl
ffffff8008433218 t file_open
ffffff8008433358 t file_release
ffffff80084333a8 t dir_lookup
ffffff8008433760 t dir_link
ffffff8008433978 t dir_unlink
ffffff8008433c58 t dir_mkdir
ffffff8008433eb8 t dir_rmdir
ffffff8008433ff0 t dir_rename_wrap
ffffff80084341f8 t iterate_incfs_dir
ffffff8008434378 t pending_reads_read
ffffff8008434510 t pending_reads_poll
ffffff80084345a0 t pending_reads_open
ffffff80084345f0 t pending_reads_release
ffffff8008434610 t log_read
ffffff8008434858 t log_poll
ffffff80084348f0 t log_open
ffffff80084349c0 t log_release
ffffff80084349e0 T tracefs_create_file
ffffff8008434b38 t start_creating
ffffff8008434bf8 T tracefs_create_dir
ffffff8008434c18 t __create_dir
ffffff8008434d58 T tracefs_remove
ffffff8008434dc8 t __tracefs_remove
ffffff8008434e58 T tracefs_remove_recursive
ffffff8008434fc0 T tracefs_initialized
ffffff8008434fd0 t trace_mount
ffffff8008434ff0 t trace_fill_super
ffffff80084350d0 t tracefs_parse_options
ffffff8008435200 t tracefs_remount
ffffff8008435278 t tracefs_show_options
ffffff8008435310 t default_read_file
ffffff8008435318 t default_write_file
ffffff8008435320 t tracefs_syscall_mkdir
ffffff8008435390 t tracefs_syscall_rmdir
ffffff8008435420 t get_dname
ffffff8008435468 T f2fs_get_de_type
ffffff8008435490 T f2fs_init_casefolded_name
ffffff8008435498 T f2fs_setup_filename
ffffff8008435548 T f2fs_prepare_lookup
ffffff8008435638 T f2fs_free_filename
ffffff8008435660 T f2fs_find_target_dentry
ffffff80084358c0 T __f2fs_find_entry
ffffff8008435ca8 T f2fs_find_entry
ffffff8008435d98 T f2fs_parent_dir
ffffff8008435df0 T f2fs_inode_by_name
ffffff8008435e60 T f2fs_set_link
ffffff8008435fe0 T f2fs_do_make_empty_dir
ffffff80084360b8 T f2fs_update_dentry
ffffff80084361e8 T f2fs_init_inode_metadata
ffffff80084366f8 T f2fs_update_parent_metadata
ffffff80084367e8 T f2fs_room_for_filename
ffffff8008436878 T f2fs_has_enough_room
ffffff8008436960 T f2fs_add_regular_entry
ffffff8008436f58 T f2fs_add_dentry
ffffff8008436ff0 T f2fs_do_add_link
ffffff80084371a0 T f2fs_do_tmpfile
ffffff80084372f8 T f2fs_drop_nlink
ffffff8008437410 T f2fs_delete_entry
ffffff8008437788 T f2fs_empty_dir
ffffff8008437938 T f2fs_fill_dentries
ffffff8008437d28 t f2fs_readdir
ffffff8008438040 t f2fs_dir_open
ffffff8008438078 T f2fs_sync_file
ffffff80084380b8 t f2fs_do_sync_file
ffffff8008438d48 T f2fs_truncate_data_blocks_range
ffffff80084391c0 T f2fs_truncate_data_blocks
ffffff8008439208 T f2fs_truncate_blocks
ffffff80084397a8 T f2fs_truncate
ffffff80084398f0 T f2fs_getattr
ffffff8008439a40 T f2fs_setattr
ffffff8008439e30 T f2fs_truncate_hole
ffffff800843a110 T f2fs_transfer_project_quota
ffffff800843a1c0 T f2fs_pin_file_control
ffffff800843a268 T f2fs_precache_extents
ffffff800843a348 T f2fs_ioctl
ffffff800843da08 T f2fs_compat_ioctl
ffffff800843dcc0 t f2fs_llseek
ffffff800843e538 t f2fs_file_read_iter
ffffff800843e5d8 t f2fs_file_write_iter
ffffff800843eab8 t f2fs_file_mmap
ffffff800843eb78 t f2fs_file_open
ffffff800843ebe8 t f2fs_file_flush
ffffff800843ec20 t f2fs_release_file
ffffff800843ecf0 t f2fs_fallocate
ffffff800843fd88 t truncate_partial_data_page
ffffff8008440078 t f2fs_setflags_common
ffffff8008440380 t punch_hole
ffffff80084404d8 t fill_zero
ffffff80084406c8 t __exchange_data_block
ffffff80084419f8 t f2fs_filemap_fault
ffffff8008441b38 t f2fs_vm_page_mkwrite
ffffff8008442180 T f2fs_mark_inode_dirty_sync
ffffff80084421c0 T f2fs_set_inode_flags
ffffff8008442238 T f2fs_inode_chksum_verify
ffffff8008442330 t f2fs_inode_chksum
ffffff80084424e8 T f2fs_inode_chksum_set
ffffff8008442558 T f2fs_iget
ffffff8008443510 T f2fs_iget_retry
ffffff8008443578 T f2fs_update_inode
ffffff8008443940 T f2fs_update_inode_page
ffffff8008443a60 T f2fs_write_inode
ffffff8008443c70 T f2fs_evict_inode
ffffff80084440a0 T f2fs_handle_failed_inode
ffffff80084441c0 T f2fs_update_extension_list
ffffff80084443d0 T f2fs_get_parent
ffffff8008444468 t f2fs_encrypted_get_link
ffffff8008444530 t f2fs_lookup
ffffff8008444930 t f2fs_create
ffffff8008444fa0 t f2fs_link
ffffff8008445268 t f2fs_unlink
ffffff8008445528 t f2fs_symlink
ffffff80084458c8 t f2fs_mkdir
ffffff8008445a58 t f2fs_rmdir
ffffff8008445aa0 t f2fs_mknod
ffffff8008445d08 t f2fs_rename2
ffffff80084469c8 t f2fs_tmpfile
ffffff8008446b30 t f2fs_get_link
ffffff8008446b78 t __recover_dot_dentries
ffffff8008446d70 t f2fs_new_inode
ffffff8008447468 t __f2fs_tmpfile
ffffff80084475e0 T f2fs_hash_filename
ffffff80084477c0 t trace_event_raw_event_f2fs__inode
ffffff80084478b8 t perf_trace_f2fs__inode
ffffff80084479c0 t trace_event_raw_event_f2fs__inode_exit
ffffff8008447a90 t perf_trace_f2fs__inode_exit
ffffff8008447b78 t trace_event_raw_event_f2fs_sync_file_exit
ffffff8008447c58 t perf_trace_f2fs_sync_file_exit
ffffff8008447d50 t trace_event_raw_event_f2fs_sync_fs
ffffff8008447e20 t perf_trace_f2fs_sync_fs
ffffff8008447f08 t trace_event_raw_event_f2fs_unlink_enter
ffffff8008448030 t perf_trace_f2fs_unlink_enter
ffffff8008448188 t trace_event_raw_event_f2fs_truncate_data_blocks_range
ffffff8008448268 t perf_trace_f2fs_truncate_data_blocks_range
ffffff8008448360 t trace_event_raw_event_f2fs__truncate_op
ffffff8008448438 t perf_trace_f2fs__truncate_op
ffffff8008448528 t trace_event_raw_event_f2fs__truncate_node
ffffff8008448600 t perf_trace_f2fs__truncate_node
ffffff80084486e8 t trace_event_raw_event_f2fs_truncate_partial_nodes
ffffff80084487e0 t perf_trace_f2fs_truncate_partial_nodes
ffffff80084488f0 t trace_event_raw_event_f2fs_file_write_iter
ffffff80084489d0 t perf_trace_f2fs_file_write_iter
ffffff8008448ac8 t trace_event_raw_event_f2fs_map_blocks
ffffff8008448bd0 t perf_trace_f2fs_map_blocks
ffffff8008448ce8 t trace_event_raw_event_f2fs_background_gc
ffffff8008448db8 t perf_trace_f2fs_background_gc
ffffff8008448ea0 t trace_event_raw_event_f2fs_gc_begin
ffffff8008448fb8 t perf_trace_f2fs_gc_begin
ffffff80084490e0 t trace_event_raw_event_f2fs_gc_end
ffffff80084491f0 t perf_trace_f2fs_gc_end
ffffff8008449310 t trace_event_raw_event_f2fs_get_victim
ffffff8008449428 t perf_trace_f2fs_get_victim
ffffff8008449550 t trace_event_raw_event_f2fs_lookup_start
ffffff8008449678 t perf_trace_f2fs_lookup_start
ffffff80084497c8 t trace_event_raw_event_f2fs_lookup_end
ffffff80084498f8 t perf_trace_f2fs_lookup_end
ffffff8008449a50 t trace_event_raw_event_f2fs_readdir
ffffff8008449b30 t perf_trace_f2fs_readdir
ffffff8008449c28 t trace_event_raw_event_f2fs_fallocate
ffffff8008449d28 t perf_trace_f2fs_fallocate
ffffff8008449e38 t trace_event_raw_event_f2fs_direct_IO_enter
ffffff8008449f18 t perf_trace_f2fs_direct_IO_enter
ffffff800844a010 t trace_event_raw_event_f2fs_direct_IO_exit
ffffff800844a100 t perf_trace_f2fs_direct_IO_exit
ffffff800844a200 t trace_event_raw_event_f2fs_reserve_new_blocks
ffffff800844a2d8 t perf_trace_f2fs_reserve_new_blocks
ffffff800844a3c8 t trace_event_raw_event_f2fs__submit_page_bio
ffffff800844a538 t perf_trace_f2fs__submit_page_bio
ffffff800844a6c0 t trace_event_raw_event_f2fs__bio
ffffff800844a7b8 t perf_trace_f2fs__bio
ffffff800844a8c0 t trace_event_raw_event_f2fs_write_begin
ffffff800844a9a0 t perf_trace_f2fs_write_begin
ffffff800844aa98 t trace_event_raw_event_f2fs_write_end
ffffff800844ab78 t perf_trace_f2fs_write_end
ffffff800844ac70 t trace_event_raw_event_f2fs__page
ffffff800844ae40 t perf_trace_f2fs__page
ffffff800844b028 t trace_event_raw_event_f2fs_filemap_fault
ffffff800844b100 t perf_trace_f2fs_filemap_fault
ffffff800844b1e8 t trace_event_raw_event_f2fs_writepages
ffffff800844b350 t perf_trace_f2fs_writepages
ffffff800844b4c8 t trace_event_raw_event_f2fs_readpages
ffffff800844b5a8 t perf_trace_f2fs_readpages
ffffff800844b698 t trace_event_raw_event_f2fs_write_checkpoint
ffffff800844b768 t perf_trace_f2fs_write_checkpoint
ffffff800844b848 t trace_event_raw_event_f2fs_discard
ffffff800844b918 t perf_trace_f2fs_discard
ffffff800844b9f8 t trace_event_raw_event_f2fs_issue_reset_zone
ffffff800844bab8 t perf_trace_f2fs_issue_reset_zone
ffffff800844bb90 t trace_event_raw_event_f2fs_issue_flush
ffffff800844bc60 t perf_trace_f2fs_issue_flush
ffffff800844bd48 t trace_event_raw_event_f2fs_lookup_extent_tree_start
ffffff800844be18 t perf_trace_f2fs_lookup_extent_tree_start
ffffff800844bf00 t trace_event_raw_event_f2fs_lookup_extent_tree_end
ffffff800844bff0 t perf_trace_f2fs_lookup_extent_tree_end
ffffff800844c0f0 t trace_event_raw_event_f2fs_update_extent_tree_range
ffffff800844c1d0 t perf_trace_f2fs_update_extent_tree_range
ffffff800844c2c8 t trace_event_raw_event_f2fs_shrink_extent_tree
ffffff800844c398 t perf_trace_f2fs_shrink_extent_tree
ffffff800844c478 t trace_event_raw_event_f2fs_destroy_extent_tree
ffffff800844c548 t perf_trace_f2fs_destroy_extent_tree
ffffff800844c630 t trace_event_raw_event_f2fs_sync_dirty_inodes
ffffff800844c700 t perf_trace_f2fs_sync_dirty_inodes
ffffff800844c7e0 t trace_event_raw_event_f2fs_shutdown
ffffff800844c8b0 t perf_trace_f2fs_shutdown
ffffff800844c990 t trace_event_raw_event_f2fs_zip_start
ffffff800844ca70 t perf_trace_f2fs_zip_start
ffffff800844cb68 t trace_event_raw_event_f2fs_zip_end
ffffff800844cc48 t perf_trace_f2fs_zip_end
ffffff800844cd40 t trace_event_raw_event_f2fs_iostat
ffffff800844cea0 t perf_trace_f2fs_iostat
ffffff800844d018 t __bpf_trace_f2fs__inode
ffffff800844d080 t __bpf_trace_f2fs_sync_file_exit
ffffff800844d158 t __bpf_trace_f2fs_sync_fs
ffffff800844d1e8 t __bpf_trace_f2fs__inode_exit
ffffff800844d278 t __bpf_trace_f2fs_unlink_enter
ffffff800844d308 t __bpf_trace_f2fs_truncate_data_blocks_range
ffffff800844d3e0 t __bpf_trace_f2fs__truncate_op
ffffff800844d470 t __bpf_trace_f2fs__truncate_node
ffffff800844d520 t __bpf_trace_f2fs_truncate_partial_nodes
ffffff800844d5f8 t __bpf_trace_f2fs_file_write_iter
ffffff800844d6d0 t __bpf_trace_f2fs_map_blocks
ffffff800844d780 t __bpf_trace_f2fs_background_gc
ffffff800844d858 t __bpf_trace_f2fs_gc_begin
ffffff800844da00 t __bpf_trace_f2fs_gc_end
ffffff800844dbd0 t __bpf_trace_f2fs_get_victim
ffffff800844dd10 t __bpf_trace_f2fs_lookup_start
ffffff800844ddc0 t __bpf_trace_f2fs_lookup_end
ffffff800844de98 t __bpf_trace_f2fs_readdir
ffffff800844df70 t __bpf_trace_f2fs_fallocate
ffffff800844e068 t __bpf_trace_f2fs_direct_IO_enter
ffffff800844e140 t __bpf_trace_f2fs_direct_IO_exit
ffffff800844e238 t __bpf_trace_f2fs_reserve_new_blocks
ffffff800844e310 t __bpf_trace_f2fs__submit_page_bio
ffffff800844e3a0 t __bpf_trace_f2fs__bio
ffffff800844e450 t __bpf_trace_f2fs_write_begin
ffffff800844e528 t __bpf_trace_f2fs_write_end
ffffff800844e600 t __bpf_trace_f2fs__page
ffffff800844e690 t __bpf_trace_f2fs_filemap_fault
ffffff800844e740 t __bpf_trace_f2fs_writepages
ffffff800844e7f0 t __bpf_trace_f2fs_readpages
ffffff800844e8a0 t __bpf_trace_f2fs_write_checkpoint
ffffff800844e950 t __bpf_trace_f2fs_discard
ffffff800844ea00 t __bpf_trace_f2fs_issue_reset_zone
ffffff800844ea90 t __bpf_trace_f2fs_issue_flush
ffffff800844eb68 t __bpf_trace_f2fs_lookup_extent_tree_start
ffffff800844ebf8 t __bpf_trace_f2fs_lookup_extent_tree_end
ffffff800844eca8 t __bpf_trace_f2fs_update_extent_tree_range
ffffff800844ed80 t __bpf_trace_f2fs_shrink_extent_tree
ffffff800844ee30 t __bpf_trace_f2fs_destroy_extent_tree
ffffff800844eec0 t __bpf_trace_f2fs_sync_dirty_inodes
ffffff800844ef70 t __bpf_trace_f2fs_shutdown
ffffff800844f020 t __bpf_trace_f2fs_zip_start
ffffff800844f0f8 t __bpf_trace_f2fs_zip_end
ffffff800844f1d0 t __bpf_trace_f2fs_iostat
ffffff800844f260 T f2fs_panel_notifier_register
ffffff800844f280 T f2fs_panel_notifier_unregister
ffffff800844f2a0 T f2fs_panel_notifier_call_chain
ffffff800844f2c8 T f2fs_battery_notifier_register
ffffff800844f2e8 T f2fs_battery_notifier_unregister
ffffff800844f308 T f2fs_battery_notifier_call_chain
ffffff800844f330 T f2fs_printk
ffffff800844f438 T odiscard_wake_up_thread
ffffff800844f4e8 T odiscard_update_state
ffffff800844f538 T f2fs_inode_dirtied
ffffff800844f628 T f2fs_inode_synced
ffffff800844f708 T f2fs_sync_fs
ffffff800844f888 T f2fs_enable_quota_files
ffffff800844fa10 t f2fs_enable_quotas
ffffff800844fc98 T f2fs_quota_sync
ffffff800844ff08 T f2fs_quota_off_umount
ffffff8008450018 t __f2fs_quota_off
ffffff80084500f0 T f2fs_sanity_check_ckpt
ffffff8008450458 T f2fs_commit_super
ffffff8008450610 t __f2fs_commit_super
ffffff80084506a8 t trace_raw_output_f2fs__inode
ffffff8008450730 t trace_raw_output_f2fs_sync_file_exit
ffffff80084507c8 t trace_raw_output_f2fs_sync_fs
ffffff8008450840 t trace_raw_output_f2fs__inode_exit
ffffff80084508a8 t trace_raw_output_f2fs_unlink_enter
ffffff8008450918 t trace_raw_output_f2fs_truncate_data_blocks_range
ffffff8008450980 t trace_raw_output_f2fs__truncate_op
ffffff80084509e8 t trace_raw_output_f2fs__truncate_node
ffffff8008450a50 t trace_raw_output_f2fs_truncate_partial_nodes
ffffff8008450ad0 t trace_raw_output_f2fs_file_write_iter
ffffff8008450b38 t trace_raw_output_f2fs_map_blocks
ffffff8008450bc8 t trace_raw_output_f2fs_background_gc
ffffff8008450c28 t trace_raw_output_f2fs_gc_begin
ffffff8008450cb8 t trace_raw_output_f2fs_gc_end
ffffff8008450d48 t trace_raw_output_f2fs_get_victim
ffffff8008450e60 t trace_raw_output_f2fs_lookup_start
ffffff8008450ed0 t trace_raw_output_f2fs_lookup_end
ffffff8008450f40 t trace_raw_output_f2fs_readdir
ffffff8008450fa8 t trace_raw_output_f2fs_fallocate
ffffff8008451028 t trace_raw_output_f2fs_direct_IO_enter
ffffff8008451090 t trace_raw_output_f2fs_direct_IO_exit
ffffff8008451108 t trace_raw_output_f2fs_reserve_new_blocks
ffffff8008451170 t trace_raw_output_f2fs__submit_page_bio
ffffff8008451298 t trace_raw_output_f2fs__bio
ffffff80084513b0 t trace_raw_output_f2fs_write_begin
ffffff8008451418 t trace_raw_output_f2fs_write_end
ffffff8008451480 t trace_raw_output_f2fs__page
ffffff8008451558 t trace_raw_output_f2fs_filemap_fault
ffffff80084515c0 t trace_raw_output_f2fs_writepages
ffffff80084516d0 t trace_raw_output_f2fs_readpages
ffffff8008451738 t trace_raw_output_f2fs_write_checkpoint
ffffff80084517c8 t trace_raw_output_f2fs_discard
ffffff8008451828 t trace_raw_output_f2fs_issue_reset_zone
ffffff8008451888 t trace_raw_output_f2fs_issue_flush
ffffff8008451918 t trace_raw_output_f2fs_lookup_extent_tree_start
ffffff8008451980 t trace_raw_output_f2fs_lookup_extent_tree_end
ffffff80084519f8 t trace_raw_output_f2fs_update_extent_tree_range
ffffff8008451a60 t trace_raw_output_f2fs_shrink_extent_tree
ffffff8008451ac0 t trace_raw_output_f2fs_destroy_extent_tree
ffffff8008451b28 t trace_raw_output_f2fs_sync_dirty_inodes
ffffff8008451bb0 t trace_raw_output_f2fs_shutdown
ffffff8008451c38 t trace_raw_output_f2fs_zip_start
ffffff8008451cd8 t trace_raw_output_f2fs_zip_end
ffffff8008451d40 t trace_raw_output_f2fs_iostat
ffffff8008451e00 t f2fs_plane_notify_callback
ffffff8008451f70 t f2fs_battery_notify_callback
ffffff80084520f8 t f2fs_mount
ffffff8008452118 t kill_f2fs_super
ffffff80084521f0 t f2fs_fill_super
ffffff8008453e20 t parse_options
ffffff80084549e0 t f2fs_disable_checkpoint
ffffff8008454ba0 t f2fs_set_qf_name
ffffff8008454cd8 t f2fs_dquot_commit
ffffff8008454d38 t f2fs_dquot_acquire
ffffff8008454d98 t f2fs_dquot_release
ffffff8008454dd8 t f2fs_dquot_mark_dquot_dirty
ffffff8008454e38 t f2fs_dquot_commit_info
ffffff8008454e70 t f2fs_get_reserved_space
ffffff8008454e78 t f2fs_get_projid
ffffff8008454e88 t f2fs_quota_on
ffffff8008454f48 t f2fs_quota_off
ffffff8008454fa0 t f2fs_alloc_inode
ffffff80084550c0 t f2fs_destroy_inode
ffffff80084550e0 t f2fs_dirty_inode
ffffff80084551a8 t f2fs_drop_inode
ffffff8008455520 t f2fs_put_super
ffffff8008455830 t f2fs_freeze
ffffff8008455870 t f2fs_unfreeze
ffffff8008455878 t f2fs_statfs
ffffff8008455a68 t f2fs_remount
ffffff80084560c8 t f2fs_show_options
ffffff8008456708 t f2fs_quota_read
ffffff8008456b20 t f2fs_quota_write
ffffff8008456d38 t f2fs_get_dquots
ffffff8008456d40 t f2fs_i_callback
ffffff8008456d78 t f2fs_get_context
ffffff8008456da8 t f2fs_set_context
ffffff8008456e10 t f2fs_dummy_context
ffffff8008456e20 t f2fs_has_stable_inodes
ffffff8008456e28 t f2fs_get_ino_and_lblk_bits
ffffff8008456e38 t f2fs_inline_crypt_enabled
ffffff8008456e48 t f2fs_get_num_devices
ffffff8008456e60 t f2fs_get_devices
ffffff8008456ea8 t f2fs_fh_to_dentry
ffffff8008456ec8 t f2fs_fh_to_parent
ffffff8008456ee8 t f2fs_nfs_get_inode
ffffff8008456f58 t e843419@0284_0000427f_844
ffffff8008457f58 T f2fs_may_inline_data
ffffff8008457fe0 T f2fs_may_inline_dentry
ffffff8008458010 T f2fs_do_read_inline_data
ffffff8008458240 T f2fs_truncate_inline_inode
ffffff8008458330 T f2fs_read_inline_data
ffffff8008458940 T f2fs_convert_inline_page
ffffff8008458fb8 T f2fs_convert_inline_inode
ffffff8008459278 T f2fs_write_inline_data
ffffff8008459668 T f2fs_recover_inline_data
ffffff8008459a08 T f2fs_find_in_inline_dir
ffffff8008459b88 T f2fs_make_empty_inline_dir
ffffff8008459ce8 T f2fs_try_convert_inline_dir
ffffff8008459f68 t do_convert_inline_dir
ffffff800845aa18 T f2fs_add_inline_entry
ffffff800845adc8 T f2fs_delete_inline_entry
ffffff800845b010 T f2fs_empty_inline_dir
ffffff800845b180 T f2fs_read_inline_dir
ffffff800845b368 T f2fs_inline_data_fiemap
ffffff800845b5a8 T f2fs_stop_checkpoint
ffffff800845b608 T f2fs_grab_meta_page
ffffff800845b698 T f2fs_get_meta_page
ffffff800845b6b0 t __get_meta_page
ffffff800845ba58 T f2fs_get_meta_page_nofail
ffffff800845bbf0 T f2fs_get_tmp_page
ffffff800845bc08 T f2fs_is_valid_blkaddr
ffffff800845bf30 T f2fs_ra_meta_pages
ffffff800845c3a8 T f2fs_ra_meta_pages_cond
ffffff800845c478 T f2fs_sync_meta_pages
ffffff800845c7a0 t __f2fs_write_meta_page
ffffff800845c958 t f2fs_write_meta_page
ffffff800845c970 t f2fs_write_meta_pages
ffffff800845cba0 t f2fs_set_meta_page_dirty
ffffff800845cd50 T f2fs_add_ino_entry
ffffff800845cd70 t __add_ino_entry
ffffff800845cf50 T f2fs_remove_ino_entry
ffffff800845cf68 t __remove_ino_entry
ffffff800845d038 T f2fs_exist_written_data
ffffff800845d098 T f2fs_release_ino_entry
ffffff800845d198 T f2fs_set_dirty_device
ffffff800845d1b0 T f2fs_is_dirty_device
ffffff800845d230 T f2fs_acquire_orphan_inode
ffffff800845d290 T f2fs_release_orphan_inode
ffffff800845d2f8 T f2fs_add_orphan_inode
ffffff800845d338 T f2fs_remove_orphan_inode
ffffff800845d350 T f2fs_recover_orphan_inodes
ffffff800845d7b0 T f2fs_get_valid_checkpoint
ffffff800845dd70 t validate_checkpoint
ffffff800845dfb8 T f2fs_update_dirty_page
ffffff800845e180 T f2fs_remove_dirty_inode
ffffff800845e290 T f2fs_sync_dirty_inodes
ffffff800845e4c0 T f2fs_sync_inode_meta
ffffff800845e580 T f2fs_wait_on_all_pages
ffffff800845e6b0 T f2fs_write_checkpoint
ffffff800845fdb0 T f2fs_init_ino_entry_info
ffffff800845fe68 T f2fs_destroy_checkpoint_caches
ffffff800845fe90 t get_checkpoint_version
ffffff8008460198 T f2fs_start_gc_thread
ffffff80084602e0 t gc_thread_func
ffffff8008460e48 T f2fs_stop_gc_thread
ffffff8008460e80 T f2fs_start_bidx_of_node
ffffff8008460f58 T f2fs_gc
ffffff8008461970 t do_garbage_collect
ffffff80084642e0 T f2fs_build_gc_manager
ffffff8008464388 T f2fs_resize_fs
ffffff8008464c30 t add_gc_inode
ffffff8008464d10 t get_victim_by_default
ffffff8008465550 T f2fs_destroy_bioset
ffffff8008465570 T f2fs_bio_alloc
ffffff80084655a0 T f2fs_target_device
ffffff8008465638 T f2fs_target_device_index
ffffff8008465690 T f2fs_submit_bio
ffffff80084659f8 T f2fs_submit_merged_write
ffffff8008465b40 T f2fs_submit_merged_write_cond
ffffff8008465e18 T f2fs_flush_merged_writes
ffffff8008465f30 T f2fs_submit_page_bio
ffffff8008466568 t __bio_alloc
ffffff8008466698 t __f2fs_submit_read_bio
ffffff8008466be8 T f2fs_submit_merged_ipu_write
ffffff8008467170 T f2fs_merge_page_bio
ffffff8008467a78 T f2fs_submit_page_write
ffffff8008468298 t __submit_merged_bio
ffffff80084687a8 T f2fs_set_data_blkaddr
ffffff8008468858 T f2fs_update_data_blkaddr
ffffff8008468918 T f2fs_reserve_new_blocks
ffffff8008468ce0 T f2fs_reserve_new_block
ffffff8008468d10 T f2fs_reserve_block
ffffff8008468e88 T f2fs_get_block
ffffff8008468f18 T f2fs_get_read_data_page
ffffff8008469318 t f2fs_submit_page_read
ffffff8008469420 T f2fs_find_data_page
ffffff8008469578 T f2fs_get_lock_data_page
ffffff80084697b8 T f2fs_get_new_data_page
ffffff8008469d08 T f2fs_preallocate_blocks
ffffff8008469f10 T f2fs_map_blocks
ffffff800846a928 T __do_map_lock
ffffff800846a960 t __allocate_data_block
ffffff800846ad58 T f2fs_overwrite_io
ffffff800846ae20 T f2fs_fiemap
ffffff800846b4a8 T f2fs_mpage_readpages
ffffff800846bae0 T f2fs_encrypt_one_page
ffffff800846bce8 T f2fs_should_update_inplace
ffffff800846be10 T f2fs_should_update_outplace
ffffff800846bea0 T f2fs_do_write_data_page
ffffff800846c6c8 T f2fs_write_single_data_page
ffffff800846ce70 T f2fs_invalidate_page
ffffff800846d010 T f2fs_release_page
ffffff800846d0b8 T f2fs_migrate_page
ffffff800846d2c0 t f2fs_write_data_page
ffffff800846d2f0 t f2fs_read_data_page
ffffff800846d470 t f2fs_write_data_pages
ffffff800846db90 t f2fs_set_data_page_dirty
ffffff800846dd48 t f2fs_read_data_pages
ffffff800846de70 t f2fs_write_begin
ffffff800846efa8 t f2fs_write_end
ffffff800846f2a0 t f2fs_bmap
ffffff800846f300 t f2fs_direct_IO
ffffff800846fc78 t f2fs_swap_activate
ffffff8008470030 t f2fs_swap_deactivate
ffffff8008470078 T f2fs_clear_radix_tree_dirty_tag
ffffff8008470100 T f2fs_destroy_post_read_processing
ffffff8008470128 T f2fs_init_post_read_wq
ffffff80084701a0 T f2fs_destroy_post_read_wq
ffffff80084701c0 T f2fs_destroy_bio_entry_cache
ffffff80084701e0 t f2fs_read_end_io
ffffff80084703f8 t f2fs_write_end_io
ffffff8008470670 t f2fs_post_read_work
ffffff8008470710 t f2fs_verity_work
ffffff8008470768 t __read_end_io
ffffff8008470908 t f2fs_grab_read_bio
ffffff8008470ab0 t f2fs_write_failed
ffffff8008470b38 t get_data_block_bmap
ffffff8008470c38 t get_data_block_dio_write
ffffff8008470d38 t get_data_block_dio
ffffff8008470e30 t f2fs_dio_submit_bio
ffffff8008470f00 t f2fs_dio_end_io
ffffff8008470f78 T f2fs_check_nid_range
ffffff8008470fe0 T f2fs_available_free_memory
ffffff80084711f0 T f2fs_in_warm_node_list
ffffff80084712a8 T f2fs_init_fsync_node_info
ffffff80084712c0 T f2fs_del_fsync_node_entry
ffffff80084713d8 T f2fs_reset_fsync_node_info
ffffff8008471410 T f2fs_need_dentry_mark
ffffff8008471478 t __lookup_nat_cache
ffffff8008471528 T f2fs_is_checkpointed_node
ffffff8008471588 T f2fs_need_inode_block_update
ffffff80084715f0 T f2fs_try_to_free_nats
ffffff80084716f0 T f2fs_get_node_info
ffffff8008471b40 T f2fs_get_next_page_offset
ffffff8008471cd0 T f2fs_get_dnode_of_data
ffffff8008472420 t get_node_path
ffffff8008472600 T f2fs_get_node_page
ffffff8008472620 T f2fs_alloc_nid
ffffff8008472818 T f2fs_new_node_page
ffffff8008472c58 T f2fs_alloc_nid_failed
ffffff8008472f78 T f2fs_alloc_nid_done
ffffff8008473048 T f2fs_get_node_page_ra
ffffff80084730d8 T f2fs_truncate_inode_blocks
ffffff8008473610 t truncate_partial_nodes
ffffff8008473b28 t truncate_nodes
ffffff80084741a0 T f2fs_truncate_xattr_node
ffffff8008474318 t truncate_node
ffffff80084746d0 T f2fs_remove_inode_page
ffffff8008474ae8 T f2fs_new_inode_page
ffffff8008474b60 t set_node_addr
ffffff8008474eb8 t clear_node_page_dirty
ffffff8008474f60 T f2fs_ra_node_page
ffffff80084750d8 t read_node_page
ffffff8008475278 t __get_node_page
ffffff80084757d8 T f2fs_move_node_page
ffffff8008475920 t __write_node_page
ffffff8008475ee0 T f2fs_fsync_node_pages
ffffff8008476698 T f2fs_flush_inline_data
ffffff80084768b8 t flush_inline_data
ffffff8008476aa0 T f2fs_sync_node_pages
ffffff8008477030 T f2fs_wait_on_node_pages_writeback
ffffff8008477180 t f2fs_write_node_page
ffffff80084771b0 t f2fs_write_node_pages
ffffff8008477458 t f2fs_set_node_page_dirty
ffffff8008477608 T f2fs_build_free_nids
ffffff8008477c98 T f2fs_try_to_free_nids
ffffff8008477e08 T f2fs_recover_inline_xattr
ffffff8008478018 T f2fs_recover_xattr_data
ffffff8008478350 T f2fs_recover_inode_page
ffffff80084786d0 t remove_free_nid
ffffff8008478790 T f2fs_restore_node_summary
ffffff80084789c8 T f2fs_flush_nat_entries
ffffff8008479518 t remove_nats_in_journal
ffffff8008479710 T f2fs_build_node_manager
ffffff8008479dc8 T f2fs_destroy_node_manager
ffffff800847a1d0 T f2fs_destroy_node_manager_caches
ffffff800847a210 t f2fs_ra_node_pages
ffffff800847a310 t __set_nat_cache_dirty
ffffff800847a4c8 t f2fs_match_ino
ffffff800847a548 t add_free_nid
ffffff800847a878 T f2fs_need_SSR
ffffff800847a920 T of2fs_seg_freefrag
ffffff800847aa20 t __find_rev_next_zero_bit
ffffff800847ab58 t __find_rev_next_bit
ffffff800847ac88 T f2fs_register_inmem_page
ffffff800847ae38 T f2fs_drop_inmem_pages_all
ffffff800847b028 T f2fs_drop_inmem_pages
ffffff800847b128 t __revoke_inmem_pages
ffffff800847b808 T f2fs_drop_inmem_page
ffffff800847ba78 T f2fs_commit_inmem_pages
ffffff800847beb8 T f2fs_balance_fs
ffffff800847c448 T f2fs_balance_fs_bg
ffffff800847c6c0 T f2fs_issue_flush
ffffff800847ca38 T f2fs_create_flush_cmd_control
ffffff800847cb60 t issue_flush_thread
ffffff800847cd50 T f2fs_destroy_flush_cmd_control
ffffff800847cda8 T f2fs_flush_device_cache
ffffff800847ce68 t __submit_flush_wait
ffffff800847cfb0 T f2fs_dirty_to_prefree
ffffff800847d120 t __locate_dirty_segment
ffffff800847d278 t __remove_dirty_segment
ffffff800847d3b0 T f2fs_get_unusable_blocks
ffffff800847d4b8 T f2fs_disable_cp_again
ffffff800847d5c0 T f2fs_drop_discard_cmd
ffffff800847d5d8 t __drop_discard_cmd
ffffff800847d6c0 T f2fs_stop_discard_thread
ffffff800847d6f0 T f2fs_issue_discard_timeout
ffffff800847d7f8 t __issue_discard_cmd
ffffff800847dcc0 t __wait_all_discard_cmd
ffffff800847ddf8 T f2fs_release_discard_addrs
ffffff800847de90 T f2fs_clear_prefree_segments
ffffff800847e528 t f2fs_issue_discard
ffffff800847e6c8 T f2fs_invalidate_blocks
ffffff800847e7a8 t update_sit_entry
ffffff800847ebc8 t locate_dirty_segment
ffffff800847ed60 T f2fs_is_checkpointed_data
ffffff800847ee40 T f2fs_npages_for_summary_flush
ffffff800847eef8 T f2fs_get_sum_page
ffffff800847ef18 T f2fs_update_meta_page
ffffff800847f028 T allocate_segment_for_resize
ffffff800847f208 t get_ssr_segment
ffffff800847f460 t change_curseg
ffffff800847f7f8 t new_curseg
ffffff800847fce0 T f2fs_allocate_new_segments
ffffff800847feb8 T f2fs_exist_trim_candidates
ffffff800847ff48 t add_discard_addrs
ffffff8008480520 T f2fs_trim_fs
ffffff8008480b70 T wake_up_otrim_of2fs
ffffff8008480ba8 t __wait_discard_cmd_range
ffffff8008480cf8 T f2fs_rw_hint_to_seg_type
ffffff8008480d10 T f2fs_io_type_to_rw_hint
ffffff8008480da8 T f2fs_allocate_data_block
ffffff8008481590 T f2fs_do_write_meta_page
ffffff8008481840 T f2fs_do_write_node_page
ffffff8008481928 t do_write_page
ffffff8008481ad0 T f2fs_outplace_write_data
ffffff8008481bf8 T f2fs_inplace_write_data
ffffff8008481e38 t __get_segment_type
ffffff80084820c8 T f2fs_do_replace_block
ffffff8008482560 T f2fs_replace_block
ffffff80084825d8 T f2fs_wait_on_page_writeback
ffffff8008482700 T f2fs_wait_on_block_writeback
ffffff8008482848 T f2fs_wait_on_block_writeback_range
ffffff8008482898 T f2fs_write_data_summaries
ffffff8008482be8 t write_normal_summaries
ffffff8008482dc8 T f2fs_write_node_summaries
ffffff8008482de0 T f2fs_lookup_journal_in_cursum
ffffff8008482e90 T f2fs_flush_sit_entries
ffffff8008483a28 T f2fs_build_segment_manager
ffffff8008485740 T f2fs_destroy_segment_manager
ffffff8008485a40 T f2fs_destroy_segment_manager_caches
ffffff8008485a80 T wake_up_odiscard_of2fs
ffffff8008485ad0 t __remove_discard_cmd
ffffff8008485d78 t __submit_discard_cmd
ffffff8008486198 t f2fs_submit_discard_endio
ffffff8008486248 t __update_discard_tree_range
ffffff80084865b0 t __insert_discard_tree
ffffff8008486950 t __issue_discard_async
ffffff8008486ab8 t reset_curseg
ffffff8008486bc8 t __wait_one_discard_bio
ffffff8008486c88 t add_sit_entry
ffffff8008486de0 t issue_discard_thread
ffffff80084875d0 t allocate_segment_by_default
ffffff8008487788 T f2fs_space_for_roll_forward
ffffff80084877c8 T f2fs_recover_fsync_data
ffffff8008489ac8 t add_fsync_inode
ffffff8008489ba8 T f2fs_shrink_count
ffffff8008489ca0 T f2fs_shrink_scan
ffffff8008489e20 T f2fs_join_shrinker
ffffff8008489e90 T f2fs_leave_shrinker
ffffff8008489f00 T f2fs_lookup_rb_tree
ffffff8008489f68 T f2fs_lookup_rb_tree_for_insert
ffffff800848a018 T f2fs_lookup_rb_tree_ret
ffffff800848a1c8 T f2fs_check_rb_tree_consistence
ffffff800848a1d0 T f2fs_init_extent_tree
ffffff800848a480 T f2fs_shrink_extent_tree
ffffff800848a860 T f2fs_destroy_extent_node
ffffff800848a8f8 T f2fs_drop_extent_tree
ffffff800848a9f8 T f2fs_destroy_extent_tree
ffffff800848ac28 T f2fs_lookup_extent_cache
ffffff800848afa8 T f2fs_update_extent_cache
ffffff800848b060 t f2fs_update_extent_tree_range
ffffff800848b618 T f2fs_update_extent_cache_range
ffffff800848b670 T f2fs_init_extent_cache_info
ffffff800848b6d8 T f2fs_destroy_extent_cache
ffffff800848b700 t __release_extent_node
ffffff800848b7e8 t __insert_extent_tree
ffffff800848b9a8 T f2fs_record_iostat
ffffff800848bb20 T f2fs_exit_sysfs
ffffff800848bb60 T f2fs_register_sysfs
ffffff800848bd40 t frag_score_seq_show
ffffff800848beb8 t undiscard_score_seq_show
ffffff800848bf28 t segment_info_seq_show
ffffff800848c028 t segment_bits_seq_show
ffffff800848c120 t iostat_info_seq_show
ffffff800848c2e8 t victim_bits_seq_show
ffffff800848c400 T f2fs_unregister_sysfs
ffffff800848c4d8 t f2fs_attr_show
ffffff800848c510 t f2fs_attr_store
ffffff800848c548 t f2fs_feature_show
ffffff800848c580 t f2fs_sb_release
ffffff800848c598 t f2fs_sbi_show
ffffff800848c768 t f2fs_sbi_store
ffffff800848cbc8 t dirty_segments_show
ffffff800848cc18 t free_segments_show
ffffff800848cc50 t unusable_show
ffffff800848cca0 t lifetime_write_kbytes_show
ffffff800848cd90 t features_show
ffffff800848d180 t current_reserved_blocks_show
ffffff800848d1b0 t encoding_show
ffffff800848d1d0 t mounted_time_sec_show
ffffff800848d208 t moved_blocks_foreground_show
ffffff800848d248 t moved_blocks_background_show
ffffff800848d280 t avg_vblocks_show
ffffff800848d2f0 t gc_opt_enable_write
ffffff800848d440 t gc_opt_enable_open
ffffff800848d478 t gc_opt_enable_seq_show
ffffff800848d4a8 t f2fs_odiscard_enable_write
ffffff800848d5d8 t f2fs_odiscard_enable_open
ffffff800848d600 t f2fs_odiscard_enable_seq_show
ffffff800848d628 T f2fs_update_sit_info
ffffff800848d778 T f2fs_build_stats
ffffff800848d8b8 T f2fs_destroy_stats
ffffff800848d920 T f2fs_destroy_root_stats
ffffff800848d928 T f2fs_init_security
ffffff800848d948 t f2fs_initxattrs