-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatic merge of 'master' into merge-test (2024-09-25 18:58)
- Loading branch information
Showing
3,330 changed files
with
137,381 additions
and
44,986 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,3 +151,10 @@ Contact: Sergey Senozhatsky <[email protected]> | |
Description: | ||
The recompress file is write-only and triggers re-compression | ||
with secondary compression algorithms. | ||
|
||
What: /sys/block/zram<id>/algorithm_params | ||
Date: August 2024 | ||
Contact: Sergey Senozhatsky <[email protected]> | ||
Description: | ||
The algorithm_params file is write-only and is used to setup | ||
compression algorithm parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,6 @@ What: /sys/devices/system/memory/crash_hotplug | |
Date: Aug 2023 | ||
Contact: Linux kernel mailing list <[email protected]> | ||
Description: | ||
(RO) indicates whether or not the kernel directly supports | ||
modifying the crash elfcorehdr for memory hot un/plug and/or | ||
on/offline changes. | ||
(RO) indicates whether or not the kernel updates relevant kexec | ||
segments on memory hot un/plug and/or on/offline events, avoiding the | ||
need to reload kdump kernel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -704,9 +704,9 @@ What: /sys/devices/system/cpu/crash_hotplug | |
Date: Aug 2023 | ||
Contact: Linux kernel mailing list <[email protected]> | ||
Description: | ||
(RO) indicates whether or not the kernel directly supports | ||
modifying the crash elfcorehdr for CPU hot un/plug and/or | ||
on/offline changes. | ||
(RO) indicates whether or not the kernel updates relevant kexec | ||
segments on memory hot un/plug and/or on/offline events, avoiding the | ||
need to reload kdump kernel. | ||
|
||
What: /sys/devices/system/cpu/enabled | ||
Date: Nov 2022 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -579,6 +579,12 @@ Description: When ATGC is on, it controls age threshold to bypass GCing young | |
candidates whose age is not beyond the threshold, by default it was | ||
initialized as 604800 seconds (equals to 7 days). | ||
|
||
What: /sys/fs/f2fs/<disk>/atgc_enabled | ||
Date: Feb 2024 | ||
Contact: "Jinbao Liu" <[email protected]> | ||
Description: It represents whether ATGC is on or off. The value is 1 which | ||
indicates that ATGC is on, and 0 indicates that it is off. | ||
|
||
What: /sys/fs/f2fs/<disk>/gc_reclaimed_segments | ||
Date: July 2021 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
|
@@ -763,3 +769,53 @@ Date: November 2023 | |
Contact: "Chao Yu" <[email protected]> | ||
Description: It controls to enable/disable IO aware feature for background discard. | ||
By default, the value is 1 which indicates IO aware is on. | ||
|
||
What: /sys/fs/f2fs/<disk>/blkzone_alloc_policy | ||
Date: July 2024 | ||
Contact: "Yuanhong Liao" <[email protected]> | ||
Description: The zone UFS we are currently using consists of two parts: | ||
conventional zones and sequential zones. It can be used to control which part | ||
to prioritize for writes, with a default value of 0. | ||
|
||
======================== ========================================= | ||
value description | ||
blkzone_alloc_policy = 0 Prioritize writing to sequential zones | ||
blkzone_alloc_policy = 1 Only allow writing to sequential zones | ||
blkzone_alloc_policy = 2 Prioritize writing to conventional zones | ||
======================== ========================================= | ||
|
||
What: /sys/fs/f2fs/<disk>/migration_window_granularity | ||
Date: September 2024 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
Description: Controls migration window granularity of garbage collection on large | ||
section. it can control the scanning window granularity for GC migration | ||
in a unit of segment, while migration_granularity controls the number | ||
of segments which can be migrated at the same turn. | ||
|
||
What: /sys/fs/f2fs/<disk>/reserved_segments | ||
Date: September 2024 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
Description: In order to fine tune GC behavior, we can control the number of | ||
reserved segments. | ||
|
||
What: /sys/fs/f2fs/<disk>/gc_no_zoned_gc_percent | ||
Date: September 2024 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
Description: If the percentage of free sections over total sections is above this | ||
number, F2FS do not garbage collection for zoned devices through the | ||
background GC thread. the default number is "60". | ||
|
||
What: /sys/fs/f2fs/<disk>/gc_boost_zoned_gc_percent | ||
Date: September 2024 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
Description: If the percentage of free sections over total sections is under this | ||
number, F2FS boosts garbage collection for zoned devices through the | ||
background GC thread. the default number is "25". | ||
|
||
What: /sys/fs/f2fs/<disk>/gc_valid_thresh_ratio | ||
Date: September 2024 | ||
Contact: "Daeho Jeong" <[email protected]> | ||
Description: It controls the valid block ratio threshold not to trigger excessive GC | ||
for zoned deivces. The initial value of it is 95(%). F2FS will stop the | ||
background GC thread from intiating GC for sections having valid blocks | ||
exceeding the ratio. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.