aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs
diff options
context:
space:
mode:
authorGu Zheng <guz.fnst@cn.fujitsu.com>2014-03-07 18:43:33 +0800
committerZiyan <jaraidaniel@gmail.com>2015-05-02 14:36:29 +0200
commit1c2d988f70e3e81e33dd608848e080c93e099483 (patch)
tree82196dea4d094b0e79678ced8d8a11c97dc19d8b /fs/f2fs
parent381f9584d9539ebd5dc821a415c28d0f4b6a31ca (diff)
downloadkernel_samsung_tuna-1c2d988f70e3e81e33dd608848e080c93e099483.zip
kernel_samsung_tuna-1c2d988f70e3e81e33dd608848e080c93e099483.tar.gz
kernel_samsung_tuna-1c2d988f70e3e81e33dd608848e080c93e099483.tar.bz2
f2fs: format segment_info's show for better legibility
The original segment_info's show is a bit out-of-format: [root@guz Demoes]# cat /proc/fs/f2fs/loop0/segment_info 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...... 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 [root@guz Demoes]# so we fix it here for better legibility. [root@guz Demoes]# cat /proc/fs/f2fs/loop0/segment_info 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...... 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 [root@guz Demoes]# Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r--fs/f2fs/super.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 6b9d296..bf11740 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -530,11 +530,12 @@ static int segment_info_seq_show(struct seq_file *seq, void *offset)
for (i = 0; i < total_segs; i++) {
seq_printf(seq, "%u", get_valid_blocks(sbi, i, 1));
- if (i != 0 && (i % 10) == 0)
- seq_puts(seq, "\n");
+ if ((i % 10) == 9 || i == (total_segs - 1))
+ seq_putc(seq, '\n');
else
- seq_puts(seq, " ");
+ seq_putc(seq, ' ');
}
+
return 0;
}