aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChangman Lee <cm224.lee@samsung.com>2014-01-13 10:34:18 +0900
committerZiyan <jaraidaniel@gmail.com>2015-05-02 14:36:08 +0200
commit443d894a2be5fc3d0189fc19e3e299d8a6f402c0 (patch)
treed0839a220648a6018a08c45a961f13eb9b115e07
parent05ce450548c77a777126704e2ff987e01022729e (diff)
downloadkernel_samsung_tuna-443d894a2be5fc3d0189fc19e3e299d8a6f402c0.zip
kernel_samsung_tuna-443d894a2be5fc3d0189fc19e3e299d8a6f402c0.tar.gz
kernel_samsung_tuna-443d894a2be5fc3d0189fc19e3e299d8a6f402c0.tar.bz2
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 <cm224.lee@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
-rw-r--r--fs/f2fs/debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c
index 711a0d4..6e4ac9a 100644
--- a/fs/f2fs/debug.c
+++ b/fs/f2fs/debug.c
@@ -246,13 +246,13 @@ static int stat_show(struct seq_file *s, void *v)
seq_printf(s, "\nExtent Hit Ratio: %d / %d\n",
si->hit_ext, si->total_ext);
seq_printf(s, "\nBalancing F2FS Async:\n");
- seq_printf(s, " - nodes %4d in %4d\n",
+ seq_printf(s, " - nodes: %4d in %4d\n",
si->ndirty_node, si->node_pages);
- seq_printf(s, " - dents %4d in dirs:%4d\n",
+ seq_printf(s, " - dents: %4d in dirs:%4d\n",
si->ndirty_dent, si->ndirty_dirs);
- seq_printf(s, " - meta %4d in %4d\n",
+ seq_printf(s, " - meta: %4d in %4d\n",
si->ndirty_meta, si->meta_pages);
- seq_printf(s, " - NATs %5d > %lu\n",
+ seq_printf(s, " - NATs: %5d > %lu\n",
si->nats, NM_WOUT_THRESHOLD);
seq_printf(s, " - SITs: %5d\n - free_nids: %5d\n",
si->sits, si->fnids);