* [PATCH] f2fs: fix BG_GC count stat & f2fs_gc return value
@ 2017-05-05 18:07 Weichao Guo
2017-05-08 20:36 ` Jaegeuk Kim
0 siblings, 1 reply; 2+ messages in thread
From: Weichao Guo @ 2017-05-05 18:07 UTC (permalink / raw)
To: linux-f2fs-devel, jaegeuk; +Cc: huxinwei, Weichao Guo
We should call stat_inc_bggc_count only after BG_GC has been performed
successfully. Otherwise, BG_GC count may be larger than total count when
f2fs_gc failed, e.g., no victim was selected.
By default, f2fs_gc returns EINVAL in some error cases, e.g., no victim was
selected. However, the default errno may be overwritten in the case of
BG_GC -> FG_GC.
Signed-off-by: Weichao Guo <guoweichao@huawei.com>
---
fs/f2fs/gc.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index 0265221..a42cafe 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -81,11 +81,11 @@ static int gc_thread_func(void *data)
else
increase_sleep_time(gc_th, &wait_ms);
- stat_inc_bggc_count(sbi);
-
/* if return value is not zero, no victim was selected */
if (f2fs_gc(sbi, test_opt(sbi, FORCE_FG_GC), true, NULL_SEGNO))
wait_ms = gc_th->no_gc_sleep_time;
+ else
+ stat_inc_bggc_count(sbi);
trace_f2fs_background_gc(sbi->sb, wait_ms,
prefree_segments(sbi), free_segments(sbi));
@@ -987,6 +987,7 @@ int f2fs_gc(struct f2fs_sb_info *sbi, bool sync,
gc_type = FG_GC;
}
+ ret = -EINVAL;
/* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
if (gc_type == BG_GC && !background)
goto stop;
--
2.10.1
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] f2fs: fix BG_GC count stat & f2fs_gc return value
2017-05-05 18:07 [PATCH] f2fs: fix BG_GC count stat & f2fs_gc return value Weichao Guo
@ 2017-05-08 20:36 ` Jaegeuk Kim
0 siblings, 0 replies; 2+ messages in thread
From: Jaegeuk Kim @ 2017-05-08 20:36 UTC (permalink / raw)
To: Weichao Guo; +Cc: huxinwei, linux-f2fs-devel
Hi Weichao,
On 05/06, Weichao Guo wrote:
> We should call stat_inc_bggc_count only after BG_GC has been performed
> successfully. Otherwise, BG_GC count may be larger than total count when
> f2fs_gc failed, e.g., no victim was selected.
>
> By default, f2fs_gc returns EINVAL in some error cases, e.g., no victim was
> selected. However, the default errno may be overwritten in the case of
> BG_GC -> FG_GC.
Please split this patch into two patches per each issue.
>
> Signed-off-by: Weichao Guo <guoweichao@huawei.com>
> ---
> fs/f2fs/gc.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
> index 0265221..a42cafe 100644
> --- a/fs/f2fs/gc.c
> +++ b/fs/f2fs/gc.c
> @@ -81,11 +81,11 @@ static int gc_thread_func(void *data)
> else
> increase_sleep_time(gc_th, &wait_ms);
>
> - stat_inc_bggc_count(sbi);
> -
> /* if return value is not zero, no victim was selected */
> if (f2fs_gc(sbi, test_opt(sbi, FORCE_FG_GC), true, NULL_SEGNO))
> wait_ms = gc_th->no_gc_sleep_time;
> + else
> + stat_inc_bggc_count(sbi);
>
> trace_f2fs_background_gc(sbi->sb, wait_ms,
> prefree_segments(sbi), free_segments(sbi));
> @@ -987,6 +987,7 @@ int f2fs_gc(struct f2fs_sb_info *sbi, bool sync,
> gc_type = FG_GC;
> }
>
> + ret = -EINVAL;
It'd be better to set -EINVAL at the beginning of gc_more timing.
Thoughts?
Thanks,
> /* f2fs_balance_fs doesn't need to do BG_GC in critical path. */
> if (gc_type == BG_GC && !background)
> goto stop;
> --
> 2.10.1
>
>
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Linux-f2fs-devel mailing list
> Linux-f2fs-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-05-08 20:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-05 18:07 [PATCH] f2fs: fix BG_GC count stat & f2fs_gc return value Weichao Guo
2017-05-08 20:36 ` Jaegeuk Kim
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).