]> Pileus Git - ~andy/linux/commitdiff
f2fs: add delimiter to seperate name and value in debug phrase
authorChangman Lee <cm224.lee@samsung.com>
Mon, 13 Jan 2014 01:34:18 +0000 (10:34 +0900)
committerJaegeuk Kim <jaegeuk.kim@samsung.com>
Tue, 14 Jan 2014 09:22:17 +0000 (18:22 +0900)
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>
fs/f2fs/debug.c

index 711a0d4d1cba7991c0687cc7a677b6dd35f8dd92..6e4ac9a25dfdfe3ef6d3daa2282357aad3f47162 100644 (file)
@@ -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);