Skip to content

Commit 499046a

Browse files
Changman LeeJaegeuk Kim
authored andcommitted
f2fs: add delimiter to seperate name and value in debug phrase
Support for f2fs-tools/tools/f2stat to monitor /sys/kernel/debug/f2fs/status Signed-off-by: Changman Lee <[email protected]> Signed-off-by: Jaegeuk Kim <[email protected]>
1 parent 17b692f commit 499046a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/f2fs/debug.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,13 @@ static int stat_show(struct seq_file *s, void *v)
246246
seq_printf(s, "\nExtent Hit Ratio: %d / %d\n",
247247
si->hit_ext, si->total_ext);
248248
seq_printf(s, "\nBalancing F2FS Async:\n");
249-
seq_printf(s, " - nodes %4d in %4d\n",
249+
seq_printf(s, " - nodes: %4d in %4d\n",
250250
si->ndirty_node, si->node_pages);
251-
seq_printf(s, " - dents %4d in dirs:%4d\n",
251+
seq_printf(s, " - dents: %4d in dirs:%4d\n",
252252
si->ndirty_dent, si->ndirty_dirs);
253-
seq_printf(s, " - meta %4d in %4d\n",
253+
seq_printf(s, " - meta: %4d in %4d\n",
254254
si->ndirty_meta, si->meta_pages);
255-
seq_printf(s, " - NATs %5d > %lu\n",
255+
seq_printf(s, " - NATs: %5d > %lu\n",
256256
si->nats, NM_WOUT_THRESHOLD);
257257
seq_printf(s, " - SITs: %5d\n - free_nids: %5d\n",
258258
si->sits, si->fnids);

0 commit comments

Comments
 (0)