diff options
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/f2fs.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Documentation/filesystems/f2fs.txt b/Documentation/filesystems/f2fs.txt index b102b436563e..e1c9f0849da6 100644 --- a/Documentation/filesystems/f2fs.txt +++ b/Documentation/filesystems/f2fs.txt | |||
@@ -102,7 +102,7 @@ background_gc=%s Turn on/off cleaning operations, namely garbage | |||
102 | collection, triggered in background when I/O subsystem is | 102 | collection, triggered in background when I/O subsystem is |
103 | idle. If background_gc=on, it will turn on the garbage | 103 | idle. If background_gc=on, it will turn on the garbage |
104 | collection and if background_gc=off, garbage collection | 104 | collection and if background_gc=off, garbage collection |
105 | will be truned off. If background_gc=sync, it will turn | 105 | will be turned off. If background_gc=sync, it will turn |
106 | on synchronous garbage collection running in background. | 106 | on synchronous garbage collection running in background. |
107 | Default value for this option is on. So garbage | 107 | Default value for this option is on. So garbage |
108 | collection is on by default. | 108 | collection is on by default. |
@@ -145,10 +145,12 @@ extent_cache Enable an extent cache based on rb-tree, it can cache | |||
145 | as many as extent which map between contiguous logical | 145 | as many as extent which map between contiguous logical |
146 | address and physical address per inode, resulting in | 146 | address and physical address per inode, resulting in |
147 | increasing the cache hit ratio. Set by default. | 147 | increasing the cache hit ratio. Set by default. |
148 | noextent_cache Diable an extent cache based on rb-tree explicitly, see | 148 | noextent_cache Disable an extent cache based on rb-tree explicitly, see |
149 | the above extent_cache mount option. | 149 | the above extent_cache mount option. |
150 | noinline_data Disable the inline data feature, inline data feature is | 150 | noinline_data Disable the inline data feature, inline data feature is |
151 | enabled by default. | 151 | enabled by default. |
152 | data_flush Enable data flushing before checkpoint in order to | ||
153 | persist data of regular and symlink. | ||
152 | 154 | ||
153 | ================================================================================ | 155 | ================================================================================ |
154 | DEBUGFS ENTRIES | 156 | DEBUGFS ENTRIES |
@@ -192,7 +194,7 @@ Files in /sys/fs/f2fs/<devname> | |||
192 | policy for garbage collection. Setting gc_idle = 0 | 194 | policy for garbage collection. Setting gc_idle = 0 |
193 | (default) will disable this option. Setting | 195 | (default) will disable this option. Setting |
194 | gc_idle = 1 will select the Cost Benefit approach | 196 | gc_idle = 1 will select the Cost Benefit approach |
195 | & setting gc_idle = 2 will select the greedy aproach. | 197 | & setting gc_idle = 2 will select the greedy approach. |
196 | 198 | ||
197 | reclaim_segments This parameter controls the number of prefree | 199 | reclaim_segments This parameter controls the number of prefree |
198 | segments to be reclaimed. If the number of prefree | 200 | segments to be reclaimed. If the number of prefree |
@@ -298,7 +300,7 @@ The dump.f2fs shows the information of specific inode and dumps SSA and SIT to | |||
298 | file. Each file is dump_ssa and dump_sit. | 300 | file. Each file is dump_ssa and dump_sit. |
299 | 301 | ||
300 | The dump.f2fs is used to debug on-disk data structures of the f2fs filesystem. | 302 | The dump.f2fs is used to debug on-disk data structures of the f2fs filesystem. |
301 | It shows on-disk inode information reconized by a given inode number, and is | 303 | It shows on-disk inode information recognized by a given inode number, and is |
302 | able to dump all the SSA and SIT entries into predefined files, ./dump_ssa and | 304 | able to dump all the SSA and SIT entries into predefined files, ./dump_ssa and |
303 | ./dump_sit respectively. | 305 | ./dump_sit respectively. |
304 | 306 | ||