linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] f2fs: correct comment in segment.h
@ 2021-08-10 13:27 Yangtao Li
  2021-08-10 13:27 ` [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status Yangtao Li
  2021-08-11  2:08 ` [f2fs-dev] [PATCH] f2fs: correct comment in segment.h Chao Yu
  0 siblings, 2 replies; 4+ messages in thread
From: Yangtao Li @ 2021-08-10 13:27 UTC (permalink / raw)
  To: jaegeuk, chao; +Cc: linux-f2fs-devel, linux-kernel, Yangtao Li

s/two/three

Signed-off-by: Yangtao Li <frank.li@vivo.com>
---
 fs/f2fs/segment.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/segment.h b/fs/f2fs/segment.h
index 050230c70a53..89fff258727d 100644
--- a/fs/f2fs/segment.h
+++ b/fs/f2fs/segment.h
@@ -142,7 +142,7 @@ enum {
 };
 
 /*
- * In the victim_sel_policy->alloc_mode, there are two block allocation modes.
+ * In the victim_sel_policy->alloc_mode, there are three block allocation modes.
  * LFS writes data sequentially with cleaning operations.
  * SSR (Slack Space Recycle) reuses obsolete space without cleaning operations.
  * AT_SSR (Age Threshold based Slack Space Recycle) merges fragments into
@@ -155,7 +155,7 @@ enum {
 };
 
 /*
- * In the victim_sel_policy->gc_mode, there are two gc, aka cleaning, modes.
+ * In the victim_sel_policy->gc_mode, there are three gc, aka cleaning, modes.
  * GC_CB is based on cost-benefit algorithm.
  * GC_GREEDY is based on greedy algorithm.
  * GC_AT is based on age-threshold algorithm.
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status
  2021-08-10 13:27 [PATCH] f2fs: correct comment in segment.h Yangtao Li
@ 2021-08-10 13:27 ` Yangtao Li
  2021-08-11  2:25   ` [f2fs-dev] " Chao Yu
  2021-08-11  2:08 ` [f2fs-dev] [PATCH] f2fs: correct comment in segment.h Chao Yu
  1 sibling, 1 reply; 4+ messages in thread
From: Yangtao Li @ 2021-08-10 13:27 UTC (permalink / raw)
  To: jaegeuk, chao; +Cc: linux-f2fs-devel, linux-kernel, Yangtao Li

Do not use numbers but strings to improve readability.

Signed-off-by: Yangtao Li <frank.li@vivo.com>
---
 fs/f2fs/debug.c | 28 +++++++++++++++++++++++-----
 1 file changed, 23 insertions(+), 5 deletions(-)

diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c
index 473ad04d1891..91c0910b0bb7 100644
--- a/fs/f2fs/debug.c
+++ b/fs/f2fs/debug.c
@@ -323,22 +323,40 @@ static void update_mem_info(struct f2fs_sb_info *sbi)
 #endif
 }
 
+static char *s_flag[] = {
+	[SBI_IS_DIRTY]		= " dirty",
+	[SBI_IS_CLOSE]		= " close",
+	[SBI_NEED_FSCK]		= " fsck",
+	[SBI_POR_DOING]		= " doing",
+	[SBI_NEED_SB_WRITE]	= " sb_write",
+	[SBI_NEED_CP]		= " cp",
+	[SBI_IS_SHUTDOWN]	= " shutdown",
+	[SBI_IS_RECOVERED]	= " recovered",
+	[SBI_CP_DISABLED]	= " cp_disabled",
+	[SBI_CP_DISABLED_QUICK]	= " cp_disabled_quick",
+	[SBI_QUOTA_NEED_FLUSH]	= " quota_need_flush",
+	[SBI_QUOTA_SKIP_FLUSH]	= " quota_skip_flush",
+	[SBI_QUOTA_NEED_REPAIR]	= " quota_need_repair",
+	[SBI_IS_RESIZEFS]	= " resizefs",
+};
+
 static int stat_show(struct seq_file *s, void *v)
 {
 	struct f2fs_stat_info *si;
-	int i = 0;
-	int j;
+	int i = 0, j = 0;
 
 	mutex_lock(&f2fs_stat_mutex);
 	list_for_each_entry(si, &f2fs_stat_list, stat_list) {
 		update_general_status(si->sbi);
 
-		seq_printf(s, "\n=====[ partition info(%pg). #%d, %s, CP: %s (sbi: 0x%lx)]=====\n",
+		seq_printf(s, "\n=====[ partition info(%pg). #%d, %s, CP: %s (sbi:",
 			si->sbi->sb->s_bdev, i++,
 			f2fs_readonly(si->sbi->sb) ? "RO": "RW",
 			is_set_ckpt_flags(si->sbi, CP_DISABLED_FLAG) ?
-			"Disabled": (f2fs_cp_error(si->sbi) ? "Error": "Good"),
-			si->sbi->s_flag);
+			"Disabled" : (f2fs_cp_error(si->sbi) ? "Error" : "Good"));
+		for_each_set_bit(j, &si->sbi->s_flag, 32)
+			seq_puts(s, s_flag[j]);
+		seq_puts(s, ") ]=====\n");
 		seq_printf(s, "[SB: 1] [CP: 2] [SIT: %d] [NAT: %d] ",
 			   si->sit_area_segs, si->nat_area_segs);
 		seq_printf(s, "[SSA: %d] [MAIN: %d",
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [f2fs-dev] [PATCH] f2fs: correct comment in segment.h
  2021-08-10 13:27 [PATCH] f2fs: correct comment in segment.h Yangtao Li
  2021-08-10 13:27 ` [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status Yangtao Li
@ 2021-08-11  2:08 ` Chao Yu
  1 sibling, 0 replies; 4+ messages in thread
From: Chao Yu @ 2021-08-11  2:08 UTC (permalink / raw)
  To: Yangtao Li, jaegeuk; +Cc: linux-kernel, linux-f2fs-devel

On 2021/8/10 21:27, Yangtao Li wrote:
> s/two/three
> 
> Signed-off-by: Yangtao Li <frank.li@vivo.com>

Reviewed-by: Chao Yu <chao@kernel.org>

Thanks,

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [f2fs-dev] [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status
  2021-08-10 13:27 ` [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status Yangtao Li
@ 2021-08-11  2:25   ` Chao Yu
  0 siblings, 0 replies; 4+ messages in thread
From: Chao Yu @ 2021-08-11  2:25 UTC (permalink / raw)
  To: Yangtao Li, jaegeuk; +Cc: linux-kernel, linux-f2fs-devel

On 2021/8/10 21:27, Yangtao Li wrote:
> Do not use numbers but strings to improve readability.

I'm fine with this, but not sure it's what Jaeguek wants.

> 
> Signed-off-by: Yangtao Li <frank.li@vivo.com>
> ---
>   fs/f2fs/debug.c | 28 +++++++++++++++++++++++-----
>   1 file changed, 23 insertions(+), 5 deletions(-)
> 
> diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c
> index 473ad04d1891..91c0910b0bb7 100644
> --- a/fs/f2fs/debug.c
> +++ b/fs/f2fs/debug.c
> @@ -323,22 +323,40 @@ static void update_mem_info(struct f2fs_sb_info *sbi)
>   #endif
>   }
>   
> +static char *s_flag[] = {
> +	[SBI_IS_DIRTY]		= " dirty",

fs_dirty

> +	[SBI_IS_CLOSE]		= " close",

closing

> +	[SBI_NEED_FSCK]		= " fsck",

need_fsck

> +	[SBI_POR_DOING]		= " doing",

recovering

> +	[SBI_NEED_SB_WRITE]	= " sb_write",

sb_dirty

> +	[SBI_NEED_CP]		= " cp",

need_cp

> +	[SBI_IS_SHUTDOWN]	= " shutdown",
> +	[SBI_IS_RECOVERED]	= " recovered",
> +	[SBI_CP_DISABLED]	= " cp_disabled",
> +	[SBI_CP_DISABLED_QUICK]	= " cp_disabled_quick",
> +	[SBI_QUOTA_NEED_FLUSH]	= " quota_need_flush",
> +	[SBI_QUOTA_SKIP_FLUSH]	= " quota_skip_flush",
> +	[SBI_QUOTA_NEED_REPAIR]	= " quota_need_repair",
> +	[SBI_IS_RESIZEFS]	= " resizefs",
> +};
> +
>   static int stat_show(struct seq_file *s, void *v)
>   {
>   	struct f2fs_stat_info *si;
> -	int i = 0;
> -	int j;
> +	int i = 0, j = 0;
>   
>   	mutex_lock(&f2fs_stat_mutex);
>   	list_for_each_entry(si, &f2fs_stat_list, stat_list) {
>   		update_general_status(si->sbi);
>   
> -		seq_printf(s, "\n=====[ partition info(%pg). #%d, %s, CP: %s (sbi: 0x%lx)]=====\n",
> +		seq_printf(s, "\n=====[ partition info(%pg). #%d, %s, CP: %s (sbi:",
>   			si->sbi->sb->s_bdev, i++,
>   			f2fs_readonly(si->sbi->sb) ? "RO": "RW",
>   			is_set_ckpt_flags(si->sbi, CP_DISABLED_FLAG) ?
> -			"Disabled": (f2fs_cp_error(si->sbi) ? "Error": "Good"),
> -			si->sbi->s_flag);
> +			"Disabled" : (f2fs_cp_error(si->sbi) ? "Error" : "Good"));
> +		for_each_set_bit(j, &si->sbi->s_flag, 32)
> +			seq_puts(s, s_flag[j]);

How about starting to print sb related status in a new line to avoid
extreme long line.

Thanks,

> +		seq_puts(s, ") ]=====\n");
>   		seq_printf(s, "[SB: 1] [CP: 2] [SIT: %d] [NAT: %d] ",
>   			   si->sit_area_segs, si->nat_area_segs);
>   		seq_printf(s, "[SSA: %d] [MAIN: %d",
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-08-11  2:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-10 13:27 [PATCH] f2fs: correct comment in segment.h Yangtao Li
2021-08-10 13:27 ` [PATCH] f2fs: improve sbi status info in debugfs/f2fs/status Yangtao Li
2021-08-11  2:25   ` [f2fs-dev] " Chao Yu
2021-08-11  2:08 ` [f2fs-dev] [PATCH] f2fs: correct comment in segment.h Chao Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).