1b59d0baeSNamjae JeonWhat: /sys/fs/f2fs/<disk>/gc_max_sleep_time 2b59d0baeSNamjae JeonDate: July 2013 3b59d0baeSNamjae JeonContact: "Namjae Jeon" <namjae.jeon@samsung.com> 4f5fa7c8bSHridya ValsarajuDescription: Controls the maximum sleep time for gc_thread. Time 5b59d0baeSNamjae Jeon is in milliseconds. 6b59d0baeSNamjae Jeon 7b59d0baeSNamjae JeonWhat: /sys/fs/f2fs/<disk>/gc_min_sleep_time 8b59d0baeSNamjae JeonDate: July 2013 9b59d0baeSNamjae JeonContact: "Namjae Jeon" <namjae.jeon@samsung.com> 10f5fa7c8bSHridya ValsarajuDescription: Controls the minimum sleep time for gc_thread. Time 11b59d0baeSNamjae Jeon is in milliseconds. 12b59d0baeSNamjae Jeon 13b59d0baeSNamjae JeonWhat: /sys/fs/f2fs/<disk>/gc_no_gc_sleep_time 14b59d0baeSNamjae JeonDate: July 2013 15b59d0baeSNamjae JeonContact: "Namjae Jeon" <namjae.jeon@samsung.com> 16f5fa7c8bSHridya ValsarajuDescription: Controls the default sleep time for gc_thread. Time 17b59d0baeSNamjae Jeon is in milliseconds. 18d2dc095fSNamjae Jeon 19d2dc095fSNamjae JeonWhat: /sys/fs/f2fs/<disk>/gc_idle 20d2dc095fSNamjae JeonDate: July 2013 21d2dc095fSNamjae JeonContact: "Namjae Jeon" <namjae.jeon@samsung.com> 22f5fa7c8bSHridya ValsarajuDescription: Controls the victim selection policy for garbage collection. 2354a19b4dSMauro Carvalho Chehab Setting gc_idle = 0(default) will disable this option. Setting: 2454a19b4dSMauro Carvalho Chehab 2554a19b4dSMauro Carvalho Chehab =========== =============================================== 26f5fa7c8bSHridya Valsaraju gc_idle = 1 will select the Cost Benefit approach & setting 27093749e2SChao Yu gc_idle = 2 will select the greedy approach & setting 28093749e2SChao Yu gc_idle = 3 will select the age-threshold based approach. 2954a19b4dSMauro Carvalho Chehab =========== =============================================== 303bac380cSJaegeuk Kim 313bac380cSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/reclaim_segments 323bac380cSJaegeuk KimDate: October 2013 333bac380cSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 34f5fa7c8bSHridya ValsarajuDescription: This parameter controls the number of prefree segments to be 35f5fa7c8bSHridya Valsaraju reclaimed. If the number of prefree segments is larger than 36f5fa7c8bSHridya Valsaraju the number of segments in the proportion to the percentage 37f5fa7c8bSHridya Valsaraju over total volume size, f2fs tries to conduct checkpoint to 38f5fa7c8bSHridya Valsaraju reclaim the prefree segments to free segments. 39f5fa7c8bSHridya Valsaraju By default, 5% over total # of segments. 403bac380cSJaegeuk Kim 41f5fa7c8bSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/main_blkaddr 42a4db59acSJaegeuk KimDate: November 2019 43a4db59acSJaegeuk KimContact: "Ramon Pantin" <pantin@google.com> 44b35d71b9SYangtao LiDescription: Shows first block address of MAIN area. 45a4db59acSJaegeuk Kim 463bac380cSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/ipu_policy 473bac380cSJaegeuk KimDate: November 2013 483bac380cSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 49f5fa7c8bSHridya ValsarajuDescription: Controls the in-place-update policy. 50f5fa7c8bSHridya Valsaraju updates in f2fs. User can set: 5154a19b4dSMauro Carvalho Chehab 529e615dbbSYangtao Li ===== =============== =================================================== 539e615dbbSYangtao Li value policy description 549e615dbbSYangtao Li 0x00 DISABLE disable IPU(=default option in LFS mode) 559e615dbbSYangtao Li 0x01 FORCE all the time 569e615dbbSYangtao Li 0x02 SSR if SSR mode is activated 57c709d099SRandy Dunlap 0x04 UTIL if FS utilization is over threshold 589e615dbbSYangtao Li 0x08 SSR_UTIL if SSR mode is activated and FS utilization is over 59c709d099SRandy Dunlap threshold 609e615dbbSYangtao Li 0x10 FSYNC activated in fsync path only for high performance 619e615dbbSYangtao Li flash storages. IPU will be triggered only if the 629e615dbbSYangtao Li # of dirty pages over min_fsync_blocks. 639e615dbbSYangtao Li (=default option) 649e615dbbSYangtao Li 0x20 ASYNC do IPU given by asynchronous write requests 659e615dbbSYangtao Li 0x40 NOCACHE disable IPU bio cache 669e615dbbSYangtao Li 0x80 HONOR_OPU_WRITE use OPU write prior to IPU write if inode has 679e615dbbSYangtao Li FI_OPU_WRITE flag 689e615dbbSYangtao Li ===== =============== =================================================== 6954a19b4dSMauro Carvalho Chehab 70f5fa7c8bSHridya Valsaraju Refer segment.h for details. 713bac380cSJaegeuk Kim 723bac380cSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/min_ipu_util 733bac380cSJaegeuk KimDate: November 2013 743bac380cSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 75f5fa7c8bSHridya ValsarajuDescription: Controls the FS utilization condition for the in-place-update 76f5fa7c8bSHridya Valsaraju policies. It is used by F2FS_IPU_UTIL and F2FS_IPU_SSR_UTIL policies. 773bac380cSJaegeuk Kim 78c1ce1b02SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/min_fsync_blocks 79c1ce1b02SJaegeuk KimDate: September 2014 80c1ce1b02SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 81f5fa7c8bSHridya ValsarajuDescription: Controls the dirty page count condition for the in-place-update 82c1ce1b02SJaegeuk Kim policies. 83c1ce1b02SJaegeuk Kim 84853137ceSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/min_seq_blocks 85853137ceSJaegeuk KimDate: August 2018 86853137ceSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 87f5fa7c8bSHridya ValsarajuDescription: Controls the dirty page count condition for batched sequential 88f5fa7c8bSHridya Valsaraju writes in writepages. 89853137ceSJaegeuk Kim 90b32d73abSChao YuWhat: /sys/fs/f2fs/<disk>/min_hot_blocks 91b32d73abSChao YuDate: March 2017 92b32d73abSChao YuContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 93f5fa7c8bSHridya ValsarajuDescription: Controls the dirty page count condition for redefining hot data. 94b32d73abSChao Yu 95a2a12b67SChao YuWhat: /sys/fs/f2fs/<disk>/min_ssr_sections 96a2a12b67SChao YuDate: October 2017 97a2a12b67SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 98f5fa7c8bSHridya ValsarajuDescription: Controls the free section threshold to trigger SSR allocation. 99f5fa7c8bSHridya Valsaraju If this is large, SSR mode will be enabled early. 100a2a12b67SChao Yu 1013bac380cSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/max_small_discards 1023bac380cSJaegeuk KimDate: November 2013 1033bac380cSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 104f5fa7c8bSHridya ValsarajuDescription: Controls the issue rate of discard commands that consist of small 105726865e6SChao Yu blocks less than 2MB. The candidates to be discarded are cached during 106726865e6SChao Yu checkpoint, and issued by issue_discard thread after checkpoint. 107726865e6SChao Yu It is enabled by default. 1083bac380cSJaegeuk Kim 109c46867e9SYangtao LiWhat: /sys/fs/f2fs/<disk>/max_ordered_discard 110c46867e9SYangtao LiDate: October 2022 111c46867e9SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 112c46867e9SYangtao LiDescription: Controls the maximum ordered discard, the unit size is one block(4KB). 113c46867e9SYangtao Li Set it to 16 by default. 114c46867e9SYangtao Li 115b2e4a2b3SKonstantin VyshetskyWhat: /sys/fs/f2fs/<disk>/max_discard_request 116b2e4a2b3SKonstantin VyshetskyDate: December 2021 117b2e4a2b3SKonstantin VyshetskyContact: "Konstantin Vyshetsky" <vkon@google.com> 118b2e4a2b3SKonstantin VyshetskyDescription: Controls the number of discards a thread will issue at a time. 119b2e4a2b3SKonstantin Vyshetsky Higher number will allow the discard thread to finish its work 120c709d099SRandy Dunlap faster, at the cost of higher latency for incoming I/O. 121b2e4a2b3SKonstantin Vyshetsky 122b2e4a2b3SKonstantin VyshetskyWhat: /sys/fs/f2fs/<disk>/min_discard_issue_time 123b2e4a2b3SKonstantin VyshetskyDate: December 2021 124b2e4a2b3SKonstantin VyshetskyContact: "Konstantin Vyshetsky" <vkon@google.com> 125b2e4a2b3SKonstantin VyshetskyDescription: Controls the interval the discard thread will wait between 126b2e4a2b3SKonstantin Vyshetsky issuing discard requests when there are discards to be issued and 127b2e4a2b3SKonstantin Vyshetsky no I/O aware interruptions occur. 128b2e4a2b3SKonstantin Vyshetsky 129b2e4a2b3SKonstantin VyshetskyWhat: /sys/fs/f2fs/<disk>/mid_discard_issue_time 130b2e4a2b3SKonstantin VyshetskyDate: December 2021 131b2e4a2b3SKonstantin VyshetskyContact: "Konstantin Vyshetsky" <vkon@google.com> 132b2e4a2b3SKonstantin VyshetskyDescription: Controls the interval the discard thread will wait between 133b2e4a2b3SKonstantin Vyshetsky issuing discard requests when there are discards to be issued and 134b2e4a2b3SKonstantin Vyshetsky an I/O aware interruption occurs. 135b2e4a2b3SKonstantin Vyshetsky 136b2e4a2b3SKonstantin VyshetskyWhat: /sys/fs/f2fs/<disk>/max_discard_issue_time 137b2e4a2b3SKonstantin VyshetskyDate: December 2021 138b2e4a2b3SKonstantin VyshetskyContact: "Konstantin Vyshetsky" <vkon@google.com> 139b2e4a2b3SKonstantin VyshetskyDescription: Controls the interval the discard thread will wait when there are 140b2e4a2b3SKonstantin Vyshetsky no discard operations to be issued. 141b2e4a2b3SKonstantin Vyshetsky 142969d1b18SChao YuWhat: /sys/fs/f2fs/<disk>/discard_granularity 143969d1b18SChao YuDate: July 2017 144969d1b18SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 145f5fa7c8bSHridya ValsarajuDescription: Controls discard granularity of inner discard thread. Inner thread 146969d1b18SChao Yu will not issue discards with size that is smaller than granularity. 147f5fa7c8bSHridya Valsaraju The unit size is one block(4KB), now only support configuring 148fc031877SYangtao Li in range of [1, 512]. Default value is 16. 149fc031877SYangtao Li For small devices, default value is 1. 150969d1b18SChao Yu 15103f2c02dSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/umount_discard_timeout 15203f2c02dSJaegeuk KimDate: January 2019 15303f2c02dSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 154f5fa7c8bSHridya ValsarajuDescription: Set timeout to issue discard commands during umount. 15503f2c02dSJaegeuk Kim Default: 5 secs 15603f2c02dSJaegeuk Kim 157ae2e2804SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/pending_discard 158ae2e2804SJaegeuk KimDate: November 2021 159ae2e2804SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 160ae2e2804SJaegeuk KimDescription: Shows the number of pending discard commands in the queue. 161ae2e2804SJaegeuk Kim 1623bac380cSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/max_victim_search 1633bac380cSJaegeuk KimDate: January 2014 1643bac380cSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 165f5fa7c8bSHridya ValsarajuDescription: Controls the number of trials to find a victim segment 166f5fa7c8bSHridya Valsaraju when conducting SSR and cleaning operations. The default value 167f5fa7c8bSHridya Valsaraju is 4096 which covers 8GB block address range. 168cdfc41c1SJaegeuk Kim 16934655575SChao YuWhat: /sys/fs/f2fs/<disk>/migration_granularity 17034655575SChao YuDate: October 2018 17134655575SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 172f5fa7c8bSHridya ValsarajuDescription: Controls migration granularity of garbage collection on large 17334655575SChao Yu section, it can let GC move partial segment{s} of one section 17434655575SChao Yu in one GC cycle, so that dispersing heavy overhead GC to 17534655575SChao Yu multiple lightweight one. 17634655575SChao Yu 17791796825SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/dir_level 17891796825SJaegeuk KimDate: March 2014 17991796825SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 180f5fa7c8bSHridya ValsarajuDescription: Controls the directory level for large directory. If a 181f5fa7c8bSHridya Valsaraju directory has a number of files, it can reduce the file lookup 182f5fa7c8bSHridya Valsaraju latency by increasing this dir_level value. Otherwise, it 183f5fa7c8bSHridya Valsaraju needs to decrease this value to reduce the space overhead. 184f5fa7c8bSHridya Valsaraju The default value is 0. 18591796825SJaegeuk Kim 186cdfc41c1SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/ram_thresh 187cdfc41c1SJaegeuk KimDate: March 2014 188cdfc41c1SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk.kim@samsung.com> 189f5fa7c8bSHridya ValsarajuDescription: Controls the memory footprint used by free nids and cached 190f5fa7c8bSHridya Valsaraju nat entries. By default, 1 is set, which indicates 191f5fa7c8bSHridya Valsaraju 10 MB / 1 GB RAM. 192bba681cbSJaegeuk Kim 19360b99b48SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/cp_interval 19460b99b48SJaegeuk KimDate: October 2015 19560b99b48SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 196f5fa7c8bSHridya ValsarajuDescription: Controls the checkpoint timing, set to 60 seconds by default. 197ea1a29a0SChao Yu 198d0239e1bSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/idle_interval 199d0239e1bSJaegeuk KimDate: January 2016 200d0239e1bSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 201f5fa7c8bSHridya ValsarajuDescription: Controls the idle timing of system, if there is no FS operation 202f5fa7c8bSHridya Valsaraju during given interval. 203f5fa7c8bSHridya Valsaraju Set to 5 seconds by default. 204a7d10cf3SSahitya Tummala 205a7d10cf3SSahitya TummalaWhat: /sys/fs/f2fs/<disk>/discard_idle_interval 206a7d10cf3SSahitya TummalaDate: September 2018 207a7d10cf3SSahitya TummalaContact: "Chao Yu" <yuchao0@huawei.com> 208a7d10cf3SSahitya TummalaContact: "Sahitya Tummala" <stummala@codeaurora.org> 209f5fa7c8bSHridya ValsarajuDescription: Controls the idle timing of discard thread given 210f5fa7c8bSHridya Valsaraju this time interval. 211f5fa7c8bSHridya Valsaraju Default is 5 secs. 212a7d10cf3SSahitya Tummala 213a7d10cf3SSahitya TummalaWhat: /sys/fs/f2fs/<disk>/gc_idle_interval 214a7d10cf3SSahitya TummalaDate: September 2018 215a7d10cf3SSahitya TummalaContact: "Chao Yu" <yuchao0@huawei.com> 216a7d10cf3SSahitya TummalaContact: "Sahitya Tummala" <stummala@codeaurora.org> 217f5fa7c8bSHridya ValsarajuDescription: Controls the idle timing for gc path. Set to 5 seconds by default. 218d0239e1bSJaegeuk Kim 219b32d73abSChao YuWhat: /sys/fs/f2fs/<disk>/iostat_enable 220b32d73abSChao YuDate: August 2017 221b32d73abSChao YuContact: "Chao Yu" <yuchao0@huawei.com> 222f5fa7c8bSHridya ValsarajuDescription: Controls to enable/disable IO stat. 223b32d73abSChao Yu 224ea1a29a0SChao YuWhat: /sys/fs/f2fs/<disk>/ra_nid_pages 225ea1a29a0SChao YuDate: October 2015 226ea1a29a0SChao YuContact: "Chao Yu" <chao2.yu@samsung.com> 227f5fa7c8bSHridya ValsarajuDescription: Controls the count of nid pages to be readaheaded. 228f5fa7c8bSHridya Valsaraju When building free nids, F2FS reads NAT blocks ahead for 229f5fa7c8bSHridya Valsaraju speed up. Default is 0. 2302304cb0cSChao Yu 2312304cb0cSChao YuWhat: /sys/fs/f2fs/<disk>/dirty_nats_ratio 2322304cb0cSChao YuDate: January 2016 2332304cb0cSChao YuContact: "Chao Yu" <chao2.yu@samsung.com> 234f5fa7c8bSHridya ValsarajuDescription: Controls dirty nat entries ratio threshold, if current 2352304cb0cSChao Yu ratio exceeds configured threshold, checkpoint will 2362304cb0cSChao Yu be triggered for flushing dirty nat entries. 2378f1dbbbbSShuoran Liu 2388f1dbbbbSShuoran LiuWhat: /sys/fs/f2fs/<disk>/lifetime_write_kbytes 2398f1dbbbbSShuoran LiuDate: January 2016 2408f1dbbbbSShuoran LiuContact: "Shuoran Liu" <liushuoran@huawei.com> 241f5fa7c8bSHridya ValsarajuDescription: Shows total written kbytes issued to disk. 24256412894SChao Yu 2439ac19faaSEric BiggersWhat: /sys/fs/f2fs/<disk>/features 244b32d73abSChao YuDate: July 2017 245b32d73abSChao YuContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 246eebd36a4SJaegeuk KimDescription: <deprecated: should use /sys/fs/f2fs/<disk>/feature_list/> 2474c89b53dSJaegeuk Kim Shows all enabled features in current device. 2484c89b53dSJaegeuk Kim Supported features: 2494c89b53dSJaegeuk Kim encryption, blkzoned, extra_attr, projquota, inode_checksum, 2504c89b53dSJaegeuk Kim flexible_inline_xattr, quota_ino, inode_crtime, lost_found, 2514c89b53dSJaegeuk Kim verity, sb_checksum, casefold, readonly, compression, pin_file. 2524c89b53dSJaegeuk Kim 2534c89b53dSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/feature_list/ 2544c89b53dSJaegeuk KimDate: June 2021 2554c89b53dSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 2564c89b53dSJaegeuk KimDescription: Expand /sys/fs/f2fs/<disk>/features to meet sysfs rule. 2574c89b53dSJaegeuk Kim Supported on-disk features: 2584c89b53dSJaegeuk Kim encryption, block_zoned (aka blkzoned), extra_attr, 2594c89b53dSJaegeuk Kim project_quota (aka projquota), inode_checksum, 2604c89b53dSJaegeuk Kim flexible_inline_xattr, quota_ino, inode_crtime, lost_found, 2614c89b53dSJaegeuk Kim verity, sb_checksum, casefold, readonly, compression. 2624c89b53dSJaegeuk Kim Note that, pin_file is moved into /sys/fs/f2fs/features/. 2634c89b53dSJaegeuk Kim 2644c89b53dSJaegeuk KimWhat: /sys/fs/f2fs/features/ 2654c89b53dSJaegeuk KimDate: July 2017 2664c89b53dSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 2674c89b53dSJaegeuk KimDescription: Shows all enabled kernel features. 2684c89b53dSJaegeuk Kim Supported features: 2694c89b53dSJaegeuk Kim encryption, block_zoned, extra_attr, project_quota, 2704c89b53dSJaegeuk Kim inode_checksum, flexible_inline_xattr, quota_ino, 2714c89b53dSJaegeuk Kim inode_crtime, lost_found, verity, sb_checksum, 2724c89b53dSJaegeuk Kim casefold, readonly, compression, test_dummy_encryption_v2, 2734c89b53dSJaegeuk Kim atomic_write, pin_file, encrypted_casefold. 274b32d73abSChao Yu 27556412894SChao YuWhat: /sys/fs/f2fs/<disk>/inject_rate 27656412894SChao YuDate: May 2016 27756412894SChao YuContact: "Sheng Yong" <shengyong1@huawei.com> 278f5fa7c8bSHridya ValsarajuDescription: Controls the injection rate of arbitrary faults. 27956412894SChao Yu 28056412894SChao YuWhat: /sys/fs/f2fs/<disk>/inject_type 28156412894SChao YuDate: May 2016 28256412894SChao YuContact: "Sheng Yong" <shengyong1@huawei.com> 283f5fa7c8bSHridya ValsarajuDescription: Controls the injection type of arbitrary faults. 284f5fa7c8bSHridya Valsaraju 285f5fa7c8bSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/dirty_segments 286f5fa7c8bSHridya ValsarajuDate: October 2017 287f5fa7c8bSHridya ValsarajuContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 288f5fa7c8bSHridya ValsarajuDescription: Shows the number of dirty segments. 289daeb433eSChao Yu 290daeb433eSChao YuWhat: /sys/fs/f2fs/<disk>/reserved_blocks 291daeb433eSChao YuDate: June 2017 292daeb433eSChao YuContact: "Chao Yu" <yuchao0@huawei.com> 293f5fa7c8bSHridya ValsarajuDescription: Controls target reserved blocks in system, the threshold 29480d42145SYunlong Song is soft, it could exceed current available user space. 29580d42145SYunlong Song 29680d42145SYunlong SongWhat: /sys/fs/f2fs/<disk>/current_reserved_blocks 29780d42145SYunlong SongDate: October 2017 29880d42145SYunlong SongContact: "Yunlong Song" <yunlong.song@huawei.com> 29980d42145SYunlong SongContact: "Chao Yu" <yuchao0@huawei.com> 300f5fa7c8bSHridya ValsarajuDescription: Shows current reserved blocks in system, it may be temporarily 30180d42145SYunlong Song smaller than target_reserved_blocks, but will gradually 30280d42145SYunlong Song increase to target_reserved_blocks when more free blocks are 30380d42145SYunlong Song freed by user later. 304d9872a69SJaegeuk Kim 305d9872a69SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/gc_urgent 306d9872a69SJaegeuk KimDate: August 2017 307d9872a69SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 308d98af5f4SDaeho JeongDescription: Do background GC aggressively when set. Set to 0 by default. 309d98af5f4SDaeho Jeong gc urgent high(1): does GC forcibly in a period of given 310d98af5f4SDaeho Jeong gc_urgent_sleep_time and ignores I/O idling check. uses greedy 311d98af5f4SDaeho Jeong GC approach and turns SSR mode on. 312d98af5f4SDaeho Jeong gc urgent low(2): lowers the bar of checking I/O idling in 313d98af5f4SDaeho Jeong order to process outstanding discard commands and GC a 314d98af5f4SDaeho Jeong little bit aggressively. uses cost benefit GC approach. 315d98af5f4SDaeho Jeong gc urgent mid(3): does GC forcibly in a period of given 316d98af5f4SDaeho Jeong gc_urgent_sleep_time and executes a mid level of I/O idling check. 317d98af5f4SDaeho Jeong uses cost benefit GC approach. 318d9872a69SJaegeuk Kim 319d9872a69SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/gc_urgent_sleep_time 320d9872a69SJaegeuk KimDate: August 2017 321d9872a69SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 322f5fa7c8bSHridya ValsarajuDescription: Controls sleep time of GC urgent mode. Set to 500ms by default. 323f6df8f23SSheng Yong 324f6df8f23SSheng YongWhat: /sys/fs/f2fs/<disk>/readdir_ra 325f6df8f23SSheng YongDate: November 2017 326f6df8f23SSheng YongContact: "Sheng Yong" <shengyong1@huawei.com> 327f5fa7c8bSHridya ValsarajuDescription: Controls readahead inode block in readdir. Enabled by default. 328f5fa7c8bSHridya Valsaraju 329f5fa7c8bSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/gc_pin_file_thresh 330f5fa7c8bSHridya ValsarajuDate: January 2018 331f5fa7c8bSHridya ValsarajuContact: Jaegeuk Kim <jaegeuk@kernel.org> 332f5fa7c8bSHridya ValsarajuDescription: This indicates how many GC can be failed for the pinned 333f5fa7c8bSHridya Valsaraju file. If it exceeds this, F2FS doesn't guarantee its pinning 334f5fa7c8bSHridya Valsaraju state. 2048 trials is set by default. 335846ae671SChao Yu 336846ae671SChao YuWhat: /sys/fs/f2fs/<disk>/extension_list 337c709d099SRandy DunlapDate: February 2018 338846ae671SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 339f5fa7c8bSHridya ValsarajuDescription: Used to control configure extension list: 340846ae671SChao Yu - Query: cat /sys/fs/f2fs/<disk>/extension_list 341b6a06cbbSChao Yu - Add: echo '[h/c]extension' > /sys/fs/f2fs/<disk>/extension_list 342b6a06cbbSChao Yu - Del: echo '[h/c]!extension' > /sys/fs/f2fs/<disk>/extension_list 343b6a06cbbSChao Yu - [h] means add/del hot file extension 344b6a06cbbSChao Yu - [c] means add/del cold file extension 3454d3aed70SDaniel Rosenberg 3464d3aed70SDaniel RosenbergWhat: /sys/fs/f2fs/<disk>/unusable 3474d3aed70SDaniel RosenbergDate April 2019 3484d3aed70SDaniel RosenbergContact: "Daniel Rosenberg" <drosen@google.com> 349f5fa7c8bSHridya ValsarajuDescription: If checkpoint=disable, it displays the number of blocks that 350f5fa7c8bSHridya Valsaraju are unusable. 351c67c8c0fSxuyehan If checkpoint=enable it displays the number of blocks that 352f5fa7c8bSHridya Valsaraju would be unusable if checkpoint=disable were to be set. 3535aba5430SDaniel Rosenberg 3545aba5430SDaniel RosenbergWhat: /sys/fs/f2fs/<disk>/encoding 3555aba5430SDaniel RosenbergDate July 2019 3565aba5430SDaniel RosenbergContact: "Daniel Rosenberg" <drosen@google.com> 357f5fa7c8bSHridya ValsarajuDescription: Displays name and version of the encoding set for the filesystem. 3585aba5430SDaniel Rosenberg If no encoding is set, displays (none) 359fc7100eaSHridya Valsaraju 360fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/free_segments 361fc7100eaSHridya ValsarajuDate: September 2019 362fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 363fc7100eaSHridya ValsarajuDescription: Number of free segments in disk. 364fc7100eaSHridya Valsaraju 365fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/cp_foreground_calls 366fc7100eaSHridya ValsarajuDate: September 2019 367fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 368fc7100eaSHridya ValsarajuDescription: Number of checkpoint operations performed on demand. Available when 369fc7100eaSHridya Valsaraju CONFIG_F2FS_STAT_FS=y. 370fc7100eaSHridya Valsaraju 371fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/cp_background_calls 372fc7100eaSHridya ValsarajuDate: September 2019 373fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 374fc7100eaSHridya ValsarajuDescription: Number of checkpoint operations performed in the background to 375fc7100eaSHridya Valsaraju free segments. Available when CONFIG_F2FS_STAT_FS=y. 376fc7100eaSHridya Valsaraju 377fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/gc_foreground_calls 378fc7100eaSHridya ValsarajuDate: September 2019 379fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 380fc7100eaSHridya ValsarajuDescription: Number of garbage collection operations performed on demand. 381fc7100eaSHridya Valsaraju Available when CONFIG_F2FS_STAT_FS=y. 382fc7100eaSHridya Valsaraju 383fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/gc_background_calls 384fc7100eaSHridya ValsarajuDate: September 2019 385fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 386fc7100eaSHridya ValsarajuDescription: Number of garbage collection operations triggered in background. 387fc7100eaSHridya Valsaraju Available when CONFIG_F2FS_STAT_FS=y. 388fc7100eaSHridya Valsaraju 389fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/moved_blocks_foreground 390fc7100eaSHridya ValsarajuDate: September 2019 391fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 392fc7100eaSHridya ValsarajuDescription: Number of blocks moved by garbage collection in foreground. 393fc7100eaSHridya Valsaraju Available when CONFIG_F2FS_STAT_FS=y. 394fc7100eaSHridya Valsaraju 395fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/moved_blocks_background 396fc7100eaSHridya ValsarajuDate: September 2019 397fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 398fc7100eaSHridya ValsarajuDescription: Number of blocks moved by garbage collection in background. 399fc7100eaSHridya Valsaraju Available when CONFIG_F2FS_STAT_FS=y. 400fc7100eaSHridya Valsaraju 401fc7100eaSHridya ValsarajuWhat: /sys/fs/f2fs/<disk>/avg_vblocks 402fc7100eaSHridya ValsarajuDate: September 2019 403fc7100eaSHridya ValsarajuContact: "Hridya Valsaraju" <hridya@google.com> 404fc7100eaSHridya ValsarajuDescription: Average number of valid blocks. 405fc7100eaSHridya Valsaraju Available when CONFIG_F2FS_STAT_FS=y. 406a7e679b5SJaegeuk Kim 407a7e679b5SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/mounted_time_sec 408a7e679b5SJaegeuk KimDate: February 2020 409a7e679b5SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 410a7e679b5SJaegeuk KimDescription: Show the mounted time in secs of this partition. 411da9953b7SJaegeuk Kim 412da9953b7SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/data_io_flag 413da9953b7SJaegeuk KimDate: April 2020 414da9953b7SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 415da9953b7SJaegeuk KimDescription: Give a way to attach REQ_META|FUA to data writes 416da9953b7SJaegeuk Kim given temperature-based bits. Now the bits indicate: 41754a19b4dSMauro Carvalho Chehab 41854a19b4dSMauro Carvalho Chehab +-------------------+-------------------+ 41954a19b4dSMauro Carvalho Chehab | REQ_META | REQ_FUA | 42054a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 42154a19b4dSMauro Carvalho Chehab | 5 | 4 | 3 | 2 | 1 | 0 | 42254a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 42354a19b4dSMauro Carvalho Chehab | Cold | Warm | Hot | Cold | Warm | Hot | 42454a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 4252bc4bea3SDaeho Jeong 42632b6aba8SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/node_io_flag 42732b6aba8SJaegeuk KimDate: June 2020 42832b6aba8SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 42932b6aba8SJaegeuk KimDescription: Give a way to attach REQ_META|FUA to node writes 43032b6aba8SJaegeuk Kim given temperature-based bits. Now the bits indicate: 43154a19b4dSMauro Carvalho Chehab 43254a19b4dSMauro Carvalho Chehab +-------------------+-------------------+ 43354a19b4dSMauro Carvalho Chehab | REQ_META | REQ_FUA | 43454a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 43554a19b4dSMauro Carvalho Chehab | 5 | 4 | 3 | 2 | 1 | 0 | 43654a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 43754a19b4dSMauro Carvalho Chehab | Cold | Warm | Hot | Cold | Warm | Hot | 43854a19b4dSMauro Carvalho Chehab +------+------+-----+------+------+-----+ 43932b6aba8SJaegeuk Kim 4402bc4bea3SDaeho JeongWhat: /sys/fs/f2fs/<disk>/iostat_period_ms 4412bc4bea3SDaeho JeongDate: April 2020 4422bc4bea3SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 4432bc4bea3SDaeho JeongDescription: Give a way to change iostat_period time. 3secs by default. 4442bc4bea3SDaeho Jeong The new iostat trace gives stats gap given the period. 44510208567SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/max_io_bytes 44610208567SJaegeuk KimDate: December 2020 44710208567SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 44810208567SJaegeuk KimDescription: This gives a control to limit the bio size in f2fs. 44910208567SJaegeuk Kim Default is zero, which will follow underlying block layer limit, 45010208567SJaegeuk Kim whereas, if it has a certain bytes value, f2fs won't submit a 45110208567SJaegeuk Kim bio larger than that size. 4520bfe9f79SChao Yu 4530bfe9f79SChao YuWhat: /sys/fs/f2fs/<disk>/stat/sb_status 4540bfe9f79SChao YuDate: December 2020 4550bfe9f79SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 4560bfe9f79SChao YuDescription: Show status of f2fs superblock in real time. 4570bfe9f79SChao Yu 4580bfe9f79SChao Yu ====== ===================== ================================= 4590bfe9f79SChao Yu value sb status macro description 4600bfe9f79SChao Yu 0x1 SBI_IS_DIRTY dirty flag for checkpoint 4610bfe9f79SChao Yu 0x2 SBI_IS_CLOSE specify unmounting 4620bfe9f79SChao Yu 0x4 SBI_NEED_FSCK need fsck.f2fs to fix 4630bfe9f79SChao Yu 0x8 SBI_POR_DOING recovery is doing or not 4640bfe9f79SChao Yu 0x10 SBI_NEED_SB_WRITE need to recover superblock 4650bfe9f79SChao Yu 0x20 SBI_NEED_CP need to checkpoint 4660bfe9f79SChao Yu 0x40 SBI_IS_SHUTDOWN shutdown by ioctl 4670bfe9f79SChao Yu 0x80 SBI_IS_RECOVERED recovered orphan/data 4680bfe9f79SChao Yu 0x100 SBI_CP_DISABLED CP was disabled last mount 4690bfe9f79SChao Yu 0x200 SBI_CP_DISABLED_QUICK CP was disabled quickly 4700bfe9f79SChao Yu 0x400 SBI_QUOTA_NEED_FLUSH need to flush quota info in CP 4710bfe9f79SChao Yu 0x800 SBI_QUOTA_SKIP_FLUSH skip flushing quota in current CP 4720bfe9f79SChao Yu 0x1000 SBI_QUOTA_NEED_REPAIR quota file may be corrupted 4730bfe9f79SChao Yu 0x2000 SBI_IS_RESIZEFS resizefs is in process 474ba900534SJaegeuk Kim 0x4000 SBI_IS_FREEZING freefs is in process 4750bfe9f79SChao Yu ====== ===================== ================================= 476e6592066SDaeho Jeong 477718693c8SChao YuWhat: /sys/fs/f2fs/<disk>/stat/cp_status 478718693c8SChao YuDate: September 2022 479718693c8SChao YuContact: "Chao Yu" <chao.yu@oppo.com> 480718693c8SChao YuDescription: Show status of f2fs checkpoint in real time. 481718693c8SChao Yu 482718693c8SChao Yu =============================== ============================== 483718693c8SChao Yu cp flag value 484718693c8SChao Yu CP_UMOUNT_FLAG 0x00000001 485718693c8SChao Yu CP_ORPHAN_PRESENT_FLAG 0x00000002 486718693c8SChao Yu CP_COMPACT_SUM_FLAG 0x00000004 487718693c8SChao Yu CP_ERROR_FLAG 0x00000008 488718693c8SChao Yu CP_FSCK_FLAG 0x00000010 489718693c8SChao Yu CP_FASTBOOT_FLAG 0x00000020 490718693c8SChao Yu CP_CRC_RECOVERY_FLAG 0x00000040 491718693c8SChao Yu CP_NAT_BITS_FLAG 0x00000080 492718693c8SChao Yu CP_TRIMMED_FLAG 0x00000100 493718693c8SChao Yu CP_NOCRC_RECOVERY_FLAG 0x00000200 494718693c8SChao Yu CP_LARGE_NAT_BITMAP_FLAG 0x00000400 495718693c8SChao Yu CP_QUOTA_NEED_FSCK_FLAG 0x00000800 496718693c8SChao Yu CP_DISABLED_FLAG 0x00001000 497718693c8SChao Yu CP_DISABLED_QUICK_FLAG 0x00002000 498718693c8SChao Yu CP_RESIZEFS_FLAG 0x00004000 499718693c8SChao Yu =============================== ============================== 500718693c8SChao Yu 501c3c2d45bSZhiguo NiuWhat: /sys/fs/f2fs/<disk>/stat/issued_discard 502c3c2d45bSZhiguo NiuDate: December 2023 503c3c2d45bSZhiguo NiuContact: "Zhiguo Niu" <zhiguo.niu@unisoc.com> 504c3c2d45bSZhiguo NiuDescription: Shows the number of issued discard. 505c3c2d45bSZhiguo Niu 506c3c2d45bSZhiguo NiuWhat: /sys/fs/f2fs/<disk>/stat/queued_discard 507c3c2d45bSZhiguo NiuDate: December 2023 508c3c2d45bSZhiguo NiuContact: "Zhiguo Niu" <zhiguo.niu@unisoc.com> 509c3c2d45bSZhiguo NiuDescription: Shows the number of queued discard. 510c3c2d45bSZhiguo Niu 511c3c2d45bSZhiguo NiuWhat: /sys/fs/f2fs/<disk>/stat/undiscard_blks 512c3c2d45bSZhiguo NiuDate: December 2023 513c3c2d45bSZhiguo NiuContact: "Zhiguo Niu" <zhiguo.niu@unisoc.com> 514c3c2d45bSZhiguo NiuDescription: Shows the total number of undiscard blocks. 515c3c2d45bSZhiguo Niu 516e6592066SDaeho JeongWhat: /sys/fs/f2fs/<disk>/ckpt_thread_ioprio 517e6592066SDaeho JeongDate: January 2021 518e6592066SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 519e6592066SDaeho JeongDescription: Give a way to change checkpoint merge daemon's io priority. 520e6592066SDaeho Jeong Its default value is "be,3", which means "BE" I/O class and 521e6592066SDaeho Jeong I/O priority "3". We can select the class between "rt" and "be", 522e6592066SDaeho Jeong and set the I/O priority within valid range of it. "," delimiter 523e6592066SDaeho Jeong is necessary in between I/O class and priority number. 52408234279SJaegeuk Kim 52508234279SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/ovp_segments 52608234279SJaegeuk KimDate: March 2021 52708234279SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 52808234279SJaegeuk KimDescription: Shows the number of overprovision segments. 5295ac443e2SDaeho Jeong 5305ac443e2SDaeho JeongWhat: /sys/fs/f2fs/<disk>/compr_written_block 5315ac443e2SDaeho JeongDate: March 2021 5325ac443e2SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 5335ac443e2SDaeho JeongDescription: Show the block count written after compression since mount. Note 5345ac443e2SDaeho Jeong that when the compressed blocks are deleted, this count doesn't 5355ac443e2SDaeho Jeong decrease. If you write "0" here, you can initialize 5365ac443e2SDaeho Jeong compr_written_block and compr_saved_block to "0". 5375ac443e2SDaeho Jeong 5385ac443e2SDaeho JeongWhat: /sys/fs/f2fs/<disk>/compr_saved_block 5395ac443e2SDaeho JeongDate: March 2021 5405ac443e2SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 5415ac443e2SDaeho JeongDescription: Show the saved block count with compression since mount. Note 5425ac443e2SDaeho Jeong that when the compressed blocks are deleted, this count doesn't 5435ac443e2SDaeho Jeong decrease. If you write "0" here, you can initialize 5445ac443e2SDaeho Jeong compr_written_block and compr_saved_block to "0". 5455ac443e2SDaeho Jeong 5465ac443e2SDaeho JeongWhat: /sys/fs/f2fs/<disk>/compr_new_inode 5475ac443e2SDaeho JeongDate: March 2021 5485ac443e2SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 5495ac443e2SDaeho JeongDescription: Show the count of inode newly enabled for compression since mount. 5505ac443e2SDaeho Jeong Note that when the compression is disabled for the files, this count 5515ac443e2SDaeho Jeong doesn't decrease. If you write "0" here, you can initialize 5525ac443e2SDaeho Jeong compr_new_inode to "0". 5538939a848SChao Yu 5548939a848SChao YuWhat: /sys/fs/f2fs/<disk>/atgc_candidate_ratio 5558939a848SChao YuDate: May 2021 5568939a848SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 5578939a848SChao YuDescription: When ATGC is on, it controls candidate ratio in order to limit total 5588939a848SChao Yu number of potential victim in all candidates, the value should be in 5598939a848SChao Yu range of [0, 100], by default it was initialized as 20(%). 5608939a848SChao Yu 5618939a848SChao YuWhat: /sys/fs/f2fs/<disk>/atgc_candidate_count 5628939a848SChao YuDate: May 2021 5638939a848SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 5648939a848SChao YuDescription: When ATGC is on, it controls candidate count in order to limit total 5658939a848SChao Yu number of potential victim in all candidates, by default it was 5668939a848SChao Yu initialized as 10 (sections). 5678939a848SChao Yu 5688939a848SChao YuWhat: /sys/fs/f2fs/<disk>/atgc_age_weight 5698939a848SChao YuDate: May 2021 5708939a848SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 5718939a848SChao YuDescription: When ATGC is on, it controls age weight to balance weight proportion 5728939a848SChao Yu in between aging and valid blocks, the value should be in range of 5738939a848SChao Yu [0, 100], by default it was initialized as 60(%). 5748939a848SChao Yu 5758939a848SChao YuWhat: /sys/fs/f2fs/<disk>/atgc_age_threshold 5768939a848SChao YuDate: May 2021 5778939a848SChao YuContact: "Chao Yu" <yuchao0@huawei.com> 5788939a848SChao YuDescription: When ATGC is on, it controls age threshold to bypass GCing young 5798939a848SChao Yu candidates whose age is not beyond the threshold, by default it was 5808939a848SChao Yu initialized as 604800 seconds (equals to 7 days). 58107c6b593SDaeho Jeong 58207c6b593SDaeho JeongWhat: /sys/fs/f2fs/<disk>/gc_reclaimed_segments 58307c6b593SDaeho JeongDate: July 2021 58407c6b593SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 58507c6b593SDaeho JeongDescription: Show how many segments have been reclaimed by GC during a specific 58607c6b593SDaeho Jeong GC mode (0: GC normal, 1: GC idle CB, 2: GC idle greedy, 587d98af5f4SDaeho Jeong 3: GC idle AT, 4: GC urgent high, 5: GC urgent low 6: GC urgent mid) 58807c6b593SDaeho Jeong You can re-initialize this value to "0". 58907c6b593SDaeho Jeong 59007c6b593SDaeho JeongWhat: /sys/fs/f2fs/<disk>/gc_segment_mode 59107c6b593SDaeho JeongDate: July 2021 59207c6b593SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 59307c6b593SDaeho JeongDescription: You can control for which gc mode the "gc_reclaimed_segments" node shows. 59407c6b593SDaeho Jeong Refer to the description of the modes in "gc_reclaimed_segments". 5950f6b56ecSDaeho Jeong 5960f6b56ecSDaeho JeongWhat: /sys/fs/f2fs/<disk>/seq_file_ra_mul 5970f6b56ecSDaeho JeongDate: July 2021 5980f6b56ecSDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 5990f6b56ecSDaeho JeongDescription: You can control the multiplier value of bdi device readahead window size 6000f6b56ecSDaeho Jeong between 2 (default) and 256 for POSIX_FADV_SEQUENTIAL advise option. 6016691d940SDaeho Jeong 6026691d940SDaeho JeongWhat: /sys/fs/f2fs/<disk>/max_fragment_chunk 6036691d940SDaeho JeongDate: August 2021 6046691d940SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 6056691d940SDaeho JeongDescription: With "mode=fragment:block" mount options, we can scatter block allocation. 6066691d940SDaeho Jeong f2fs will allocate 1..<max_fragment_chunk> blocks in a chunk and make a hole 6076691d940SDaeho Jeong in the length of 1..<max_fragment_hole> by turns. This value can be set 6086691d940SDaeho Jeong between 1..512 and the default value is 4. 6096691d940SDaeho Jeong 6106691d940SDaeho JeongWhat: /sys/fs/f2fs/<disk>/max_fragment_hole 6116691d940SDaeho JeongDate: August 2021 6126691d940SDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 6136691d940SDaeho JeongDescription: With "mode=fragment:block" mount options, we can scatter block allocation. 6146691d940SDaeho Jeong f2fs will allocate 1..<max_fragment_chunk> blocks in a chunk and make a hole 6156691d940SDaeho Jeong in the length of 1..<max_fragment_hole> by turns. This value can be set 6166691d940SDaeho Jeong between 1..512 and the default value is 4. 617325163e9SDaeho Jeong 618e5a0db6aSYangtao LiWhat: /sys/fs/f2fs/<disk>/gc_remaining_trials 619e5a0db6aSYangtao LiDate: October 2022 620e5a0db6aSYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 621e5a0db6aSYangtao LiDescription: You can set the trial count limit for GC urgent and idle mode with this value. 622325163e9SDaeho Jeong If GC thread gets to the limit, the mode will turn back to GC normal mode. 623325163e9SDaeho Jeong By default, the value is zero, which means there is no limit like before. 62447c8ebccSJaegeuk Kim 62547c8ebccSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/max_roll_forward_node_blocks 62647c8ebccSJaegeuk KimDate: January 2022 62747c8ebccSJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 62847c8ebccSJaegeuk KimDescription: Controls max # of node block writes to be used for roll forward 62947c8ebccSJaegeuk Kim recovery. This can limit the roll forward recovery time. 6308e0f54a7SJaegeuk Kim 6318e0f54a7SJaegeuk KimWhat: /sys/fs/f2fs/<disk>/unusable_blocks_per_sec 6328e0f54a7SJaegeuk KimDate: June 2022 6338e0f54a7SJaegeuk KimContact: "Jaegeuk Kim" <jaegeuk@kernel.org> 6348e0f54a7SJaegeuk KimDescription: Shows the number of unusable blocks in a section which was defined by 6358e0f54a7SJaegeuk Kim the zone capacity reported by underlying zoned device. 636f8e2f32bSDaeho Jeong 637f8e2f32bSDaeho JeongWhat: /sys/fs/f2fs/<disk>/current_atomic_write 638f8e2f32bSDaeho JeongDate: July 2022 639f8e2f32bSDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 640f8e2f32bSDaeho JeongDescription: Show the total current atomic write block count, which is not committed yet. 641f8e2f32bSDaeho Jeong This is a read-only entry. 642f8e2f32bSDaeho Jeong 643f8e2f32bSDaeho JeongWhat: /sys/fs/f2fs/<disk>/peak_atomic_write 644f8e2f32bSDaeho JeongDate: July 2022 645f8e2f32bSDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 646f8e2f32bSDaeho JeongDescription: Show the peak value of total current atomic write block count after boot. 647f8e2f32bSDaeho Jeong If you write "0" here, you can initialize to "0". 648f8e2f32bSDaeho Jeong 649f8e2f32bSDaeho JeongWhat: /sys/fs/f2fs/<disk>/committed_atomic_block 650f8e2f32bSDaeho JeongDate: July 2022 651f8e2f32bSDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 652f8e2f32bSDaeho JeongDescription: Show the accumulated total committed atomic write block count after boot. 653f8e2f32bSDaeho Jeong If you write "0" here, you can initialize to "0". 654f8e2f32bSDaeho Jeong 655f8e2f32bSDaeho JeongWhat: /sys/fs/f2fs/<disk>/revoked_atomic_block 656f8e2f32bSDaeho JeongDate: July 2022 657f8e2f32bSDaeho JeongContact: "Daeho Jeong" <daehojeong@google.com> 658f8e2f32bSDaeho JeongDescription: Show the accumulated total revoked atomic write block count after boot. 659f8e2f32bSDaeho Jeong If you write "0" here, you can initialize to "0". 660a3951cd1SYangtao Li 661a3951cd1SYangtao LiWhat: /sys/fs/f2fs/<disk>/gc_mode 662a3951cd1SYangtao LiDate: October 2022 663a3951cd1SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 664a3951cd1SYangtao LiDescription: Show the current gc_mode as a string. 665a3951cd1SYangtao Li This is a read-only entry. 6668a47d228SYangtao Li 6678a47d228SYangtao LiWhat: /sys/fs/f2fs/<disk>/discard_urgent_util 6688a47d228SYangtao LiDate: November 2022 6698a47d228SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 6708a47d228SYangtao LiDescription: When space utilization exceeds this, do background DISCARD aggressively. 6718a47d228SYangtao Li Does DISCARD forcibly in a period of given min_discard_issue_time when the number 6728a47d228SYangtao Li of discards is not 0 and set discard granularity to 1. 6738a47d228SYangtao Li Default: 80 67471644dffSJaegeuk Kim 67571644dffSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/hot_data_age_threshold 67671644dffSJaegeuk KimDate: November 2022 67771644dffSJaegeuk KimContact: "Ping Xiong" <xiongping1@xiaomi.com> 67871644dffSJaegeuk KimDescription: When DATA SEPARATION is on, it controls the age threshold to indicate 67971644dffSJaegeuk Kim the data blocks as hot. By default it was initialized as 262144 blocks 68071644dffSJaegeuk Kim (equals to 1GB). 68171644dffSJaegeuk Kim 68271644dffSJaegeuk KimWhat: /sys/fs/f2fs/<disk>/warm_data_age_threshold 68371644dffSJaegeuk KimDate: November 2022 68471644dffSJaegeuk KimContact: "Ping Xiong" <xiongping1@xiaomi.com> 68571644dffSJaegeuk KimDescription: When DATA SEPARATION is on, it controls the age threshold to indicate 68671644dffSJaegeuk Kim the data blocks as warm. By default it was initialized as 2621440 blocks 68771644dffSJaegeuk Kim (equals to 10GB). 688cec32b00SChao Yu 689cec32b00SChao YuWhat: /sys/fs/f2fs/<disk>/fault_rate 690cec32b00SChao YuDate: May 2016 691cec32b00SChao YuContact: "Sheng Yong" <shengyong@oppo.com> 692cec32b00SChao YuContact: "Chao Yu" <chao@kernel.org> 693cec32b00SChao YuDescription: Enable fault injection in all supported types with 694cec32b00SChao Yu specified injection rate. 695cec32b00SChao Yu 696cec32b00SChao YuWhat: /sys/fs/f2fs/<disk>/fault_type 697cec32b00SChao YuDate: May 2016 698cec32b00SChao YuContact: "Sheng Yong" <shengyong@oppo.com> 699cec32b00SChao YuContact: "Chao Yu" <chao@kernel.org> 700cec32b00SChao YuDescription: Support configuring fault injection type, should be 701cec32b00SChao Yu enabled with fault_injection option, fault type value 702cec32b00SChao Yu is shown below, it supports single or combined type. 703cec32b00SChao Yu 704*c7115e09SChao Yu =========================== =========== 705cec32b00SChao Yu Type_Name Type_Value 706*c7115e09SChao Yu =========================== =========== 707cec32b00SChao Yu FAULT_KMALLOC 0x000000001 708cec32b00SChao Yu FAULT_KVMALLOC 0x000000002 709cec32b00SChao Yu FAULT_PAGE_ALLOC 0x000000004 710cec32b00SChao Yu FAULT_PAGE_GET 0x000000008 711cec32b00SChao Yu FAULT_ALLOC_BIO 0x000000010 (obsolete) 712cec32b00SChao Yu FAULT_ALLOC_NID 0x000000020 713cec32b00SChao Yu FAULT_ORPHAN 0x000000040 714cec32b00SChao Yu FAULT_BLOCK 0x000000080 715cec32b00SChao Yu FAULT_DIR_DEPTH 0x000000100 716cec32b00SChao Yu FAULT_EVICT_INODE 0x000000200 717cec32b00SChao Yu FAULT_TRUNCATE 0x000000400 718cec32b00SChao Yu FAULT_READ_IO 0x000000800 719cec32b00SChao Yu FAULT_CHECKPOINT 0x000001000 720cec32b00SChao Yu FAULT_DISCARD 0x000002000 721cec32b00SChao Yu FAULT_WRITE_IO 0x000004000 722cec32b00SChao Yu FAULT_SLAB_ALLOC 0x000008000 723cec32b00SChao Yu FAULT_DQUOT_INIT 0x000010000 724cec32b00SChao Yu FAULT_LOCK_OP 0x000020000 725*c7115e09SChao Yu FAULT_BLKADDR_VALIDITY 0x000040000 726*c7115e09SChao Yu FAULT_BLKADDR_CONSISTENCE 0x000080000 727*c7115e09SChao Yu =========================== =========== 728120e0ea1SYangtao Li 729120e0ea1SYangtao LiWhat: /sys/fs/f2fs/<disk>/discard_io_aware_gran 730120e0ea1SYangtao LiDate: January 2023 731120e0ea1SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 732120e0ea1SYangtao LiDescription: Controls background discard granularity of inner discard thread 733120e0ea1SYangtao Li when is not in idle. Inner thread will not issue discards with size that 734120e0ea1SYangtao Li is smaller than granularity. The unit size is one block(4KB), now only 735120e0ea1SYangtao Li support configuring in range of [0, 512]. 736120e0ea1SYangtao Li Default: 512 737d23be468Sqixiaoyu1 738d23be468Sqixiaoyu1What: /sys/fs/f2fs/<disk>/last_age_weight 739d23be468Sqixiaoyu1Date: January 2023 740d23be468Sqixiaoyu1Contact: "Ping Xiong" <xiongping1@xiaomi.com> 741d23be468Sqixiaoyu1Description: When DATA SEPARATION is on, it controls the weight of last data block age. 742960fa2c8SYangtao Li 743960fa2c8SYangtao LiWhat: /sys/fs/f2fs/<disk>/compress_watermark 744960fa2c8SYangtao LiDate: February 2023 745960fa2c8SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 746960fa2c8SYangtao LiDescription: When compress cache is on, it controls free memory watermark 747960fa2c8SYangtao Li in order to limit caching compress page. If free memory is lower 748960fa2c8SYangtao Li than watermark, then deny caching compress page. The value should be in 749960fa2c8SYangtao Li range of (0, 100], by default it was initialized as 20(%). 750960fa2c8SYangtao Li 751960fa2c8SYangtao LiWhat: /sys/fs/f2fs/<disk>/compress_percent 752960fa2c8SYangtao LiDate: February 2023 753960fa2c8SYangtao LiContact: "Yangtao Li" <frank.li@vivo.com> 754960fa2c8SYangtao LiDescription: When compress cache is on, it controls cached page 755960fa2c8SYangtao Li percent(compress pages / free_ram) in order to limit caching compress page. 756960fa2c8SYangtao Li If cached page percent exceed threshold, then deny caching compress page. 757960fa2c8SYangtao Li The value should be in range of (0, 100], by default it was initialized 758960fa2c8SYangtao Li as 20(%). 759d346fa09SChao Yu 760d346fa09SChao YuWhat: /sys/fs/f2fs/<disk>/discard_io_aware 761d346fa09SChao YuDate: November 2023 762d346fa09SChao YuContact: "Chao Yu" <chao@kernel.org> 763d346fa09SChao YuDescription: It controls to enable/disable IO aware feature for background discard. 764d346fa09SChao Yu By default, the value is 1 which indicates IO aware is on. 765