From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from szxga03-in.huawei.com ([45.249.212.189]:2943 "EHLO dggrg03-dlp.huawei.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S932233AbdBWB4D (ORCPT ); Wed, 22 Feb 2017 20:56:03 -0500 Subject: Re: [PATCH 1/3] f2fs: clean up codes in get_ssr_segment To: Jaegeuk Kim References: <1487767851-819-1-git-send-email-yunlong.song@huawei.com> <20170223004114.GF4003@jaegeuk.local> <20170223005915.GG4003@jaegeuk.local> CC: , , , , , , , , From: Yunlong Song Message-ID: <58AE4111.2070406@huawei.com> Date: Thu, 23 Feb 2017 09:55:29 +0800 MIME-Version: 1.0 In-Reply-To: <20170223005915.GG4003@jaegeuk.local> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Yes, exactly, I just mean it for short with word "clean up", thanks for correction. On 2017/2/23 8:59, Jaegeuk Kim wrote: > On 02/22, Jaegeuk Kim wrote: >> Hi Yunlong, >> >> This is NOT clean-up. What's your point here? > I guess you wanted to do like this. > > >From 8d344ac45890dd95c5734fd29a19a7c19364c327 Mon Sep 17 00:00:00 2001 > From: Yunlong Song > Date: Wed, 22 Feb 2017 20:50:49 +0800 > Subject: [PATCH] f2fs: do SSR for data when there is enough free space > > In allocate_segment_by_default(), need_SSR() already detected it's time to do > SSR. So, let's try to find victims for data segments more aggressively in time. > > Signed-off-by: Yunlong Song > Signed-off-by: Jaegeuk Kim > --- > fs/f2fs/segment.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c > index d01ee7b94702..c27dab43c42f 100644 > --- a/fs/f2fs/segment.c > +++ b/fs/f2fs/segment.c > @@ -1541,7 +1541,7 @@ static int get_ssr_segment(struct f2fs_sb_info *sbi, int type) > struct curseg_info *curseg = CURSEG_I(sbi, type); > const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops; > > - if (IS_NODESEG(type) || !has_not_enough_free_secs(sbi, 0, 0)) > + if (IS_NODESEG(type)) > return v_ops->get_victim(sbi, > &(curseg)->next_segno, BG_GC, type, SSR); > -- Thanks, Yunlong Song