Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1761383ybt; Sat, 27 Jun 2020 19:57:54 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwqm3c5Xd+vnDJUcK0mJvLHXCel4s3l5pkGCetv10gQv9PJwF6gNl7y2XnALKtjGaSWIkue X-Received: by 2002:a50:e3c9:: with SMTP id c9mr11398084edm.90.1593313074372; Sat, 27 Jun 2020 19:57:54 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1593313074; cv=none; d=google.com; s=arc-20160816; b=D/rrE036XCBpWfT8FFpaTsw5iYBKTJouTb1SnyhPNvOVEG274CmZJI3GTt6DZEeyZe v9KLFjCpgMZR/KoNOS8LQg2TDuhbCX0LEnTrAEs5ske78jrsMlt5kOeQ9/dnuOLQhBmN e3kfjzFlEwd3ovp+dRVlCAkTQarxUC9+pusgNeTPqU35/94m9kRGu6gEG8wc3MrZZO4M INGSlBM/K6T7+T16Kkhfflq7QUFVKplqCmox0tSVr7YfPfjwc9+p8PgDKhAJaQt9G0eo VfNOLCtWezpKnc2beOJruDDRcy5JeRCB0WskApSxlG8k7Q8AfkObNLtnaJ/BzTSbSeT4 LVeQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=RzypqlbnY5R1Lu95eoB7OksKDmxWThf6dMBLs9p+uO4=; b=Y+WUOB3fDJ7G9t0pdAo8F1tsaAciSDml29bLfNO07bFLYyEAJk0B0zrRrNyAsl31aW D4Odswm9BiZ0YPJGZ9cKIZAji2G5Hm+ldG0ApKwXB8/ze+LxeiR8rlaPFzyjY+/XThBb cw2tg222wJtPXUhNOoWrWoXi4QwxyKiuYOr1s7OthDUmolGV96472eTzIkveHX9Y1kKg P+wQyYqef3xaaH9sObSHX0mAz90qZktUN8gLpCpKHw7BVd2rQl+UxDrfvTsrapiafYr5 y8xRnTz7nK8iiVi2AE/ubN9KERNj4LpqKmQmsu9uzozIzGeN/u43YLeX2Z2cmRYMUTOU 09lQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id h27si707820ejd.190.2020.06.27.19.57.31; Sat, 27 Jun 2020 19:57:54 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725936AbgF1C4Z (ORCPT + 99 others); Sat, 27 Jun 2020 22:56:25 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:42838 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725880AbgF1C4Y (ORCPT ); Sat, 27 Jun 2020 22:56:24 -0400 Received: from DGGEMS408-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 514568FD9B6562E8C76E; Sun, 28 Jun 2020 10:56:22 +0800 (CST) Received: from [10.134.22.195] (10.134.22.195) by smtp.huawei.com (10.3.19.208) with Microsoft SMTP Server (TLS) id 14.3.487.0; Sun, 28 Jun 2020 10:56:18 +0800 Subject: Re: [f2fs-dev] [PATCH] f2fs: remove unnecessary judgments in __insert_free_nid() To: Liu Song , , CC: , , References: <20200626143927.2792-1-fishland@aliyun.com> From: Chao Yu Message-ID: <34a73209-8384-2818-b6e1-c97fc9c32e69@huawei.com> Date: Sun, 28 Jun 2020 10:56:18 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20200626143927.2792-1-fishland@aliyun.com> Content-Type: text/plain; charset="windows-1252" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.134.22.195] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2020/6/26 22:39, Liu Song via Linux-f2fs-devel wrote: > From: Liu Song > > The value of state must be equal to FREE_NID, so the if > condition judgment can be removed. > > Signed-off-by: Liu Song > --- > fs/f2fs/node.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c > index 03e24df1c84f..0adeb20f19c9 100644 > --- a/fs/f2fs/node.c > +++ b/fs/f2fs/node.c > @@ -2118,8 +2118,7 @@ static int __insert_free_nid(struct f2fs_sb_info *sbi, > > f2fs_bug_on(sbi, state != i->state); > nm_i->nid_cnt[state]++; > - if (state == FREE_NID) > - list_add_tail(&i->list, &nm_i->free_nid_list); > + list_add_tail(&i->list, &nm_i->free_nid_list); In previous design, @state allow accepting both FREE_NID and PREALLOC_NID, If you remove that condition, it's not correct to add free nid entry into free_nid_list when passing PREALLOC_NID in @state, now, we only pass @state with FREE_NID, so it's better to remove that parameter directly. Thanks, > return 0; > } > >