From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D849C1A2632 for ; Wed, 26 Mar 2025 12:10:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742991048; cv=none; b=sHYBd+/7w1pVuZhVDI3v+/jiz9hdt9pkXU5NVfNQ0tyh8d8qGo5z2ENQhJMmYbqw3TGqtRJeTvveNvacIUyqtV68PSuiLSA4H7MB0MrIxaAkL2la2Tv6qrYL+ZdgQe6irQy9Q/pndTNLFlyKI0iOIF3A2Pz0dP99MkWhlwsHVFw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742991048; c=relaxed/simple; bh=4ZIa5R+hLRKNLLa+f5ExAc1PekNs6AAe+hmDktSX6fY=; h=Message-ID:Date:MIME-Version:Cc:Subject:To:References:From: In-Reply-To:Content-Type; b=LdFcZ4tWFKnS9FaJI1FHV+otXvNDNbHX1QsC9Llit1fNGx7WO+vsQZY9CAGc+AFdr2Wd4/dhwK1xtYi4SN2//1jqvxlLkSc17RxC2Tw2K8+vnphjjuc20dY5UB5nU6St3hPGdSTet6I4J1xRLUU7WQ/LL5RUsU08V/30y5hqu/Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Y/8F9qsy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Y/8F9qsy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A4D32C4CEEA; Wed, 26 Mar 2025 12:10:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1742991048; bh=4ZIa5R+hLRKNLLa+f5ExAc1PekNs6AAe+hmDktSX6fY=; h=Date:Cc:Subject:To:References:From:In-Reply-To:From; b=Y/8F9qsykijVDCBysLKBo/2uRXwbgP4qAo5atqcTLs88ubalJCvnk3mAQa41fPUUb CVN+sC/Sakb6dDSOmqXyM7Dml4uwkjCCrQjjSP2ywOHSd1keJCLLQ4wLZJS21oIMIZ tu7QedmFr8Ou9irWGEWDJ6vBAOITGE1BaM4qJiU6MvCpndqRmENH2s06Fy0yf5MHGA OLx5FAfdRzLlE4HL2LwCFFes+e8pAAoDUQTkSb85qmwzYs83DuQC+hzJUu8MwKcdzJ mfHniUHpEHuj55dgL0VrLaYTWtPWABd+QBQ9IPiYohZDe6g3vl/PjBequN2plVupEb zs+bxNFHLRecA== Message-ID: <8a72691e-28ef-4b6b-a855-62fd6c2743dc@kernel.org> Date: Wed, 26 Mar 2025 20:10:44 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Cc: chao@kernel.org, Zhiguo Niu , daehojeong@google.com, jaegeuk@kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, ke.wang@unisoc.com, Hao_hao.Wang@unisoc.com Subject: Re: [RFC PATCH] f2fs: remove some redundant flow about FI_ATOMIC_DIRTIED To: Zhiguo Niu References: <1742978761-16264-1-git-send-email-zhiguo.niu@unisoc.com> Content-Language: en-US From: Chao Yu In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On 3/26/25 18:51, Zhiguo Niu wrote: > Chao Yu 于2025年3月26日周三 17:26写道: >> >> On 3/26/25 16:46, Zhiguo Niu wrote: >>> Commit fccaa81de87e ("f2fs: prevent atomic file from being dirtied before commit") >>> adds the processing of FI_ATOMIC_DIRTIED in the following two positions, >>> [1] >>> f2fs_commit_atomic_write >>> - __f2fs_commit_atomic_write >>> - sbi->committed_atomic_block += fi->atomic_write_cnt; >>> - set_inode_flag(inode, FI_ATOMIC_COMMITTED); >>> - if (is_inode_flag_set(inode, FI_ATOMIC_DIRTIED)) { >>> - clear_inode_flag(inode, FI_ATOMIC_DIRTIED); >>> - f2fs_mark_inode_dirty_sync(inode, true); >>> - } >>> [2] >>> f2fs_abort_atomic_write >>> - if (is_inode_flag_set(inode, FI_ATOMIC_DIRTIED)) { >>> - clear_inode_flag(inode, FI_ATOMIC_DIRTIED); >>> - f2fs_mark_inode_dirty_sync(inode, true); >>> - } >>> >>> but [1] seems to be redundant: >>> The atomic file flag FI_ATOMIC_FILE is still set here, so f2fs_mark_inode_dirty_sync >>> still does not set the dirty state to vfs. If FI_ATOMIC_DIRTIED was originally set >>> when atomic file is committing, then FI_ATOMIC_DIRTIED is just cleared here, and >>> then do the repeating action of setting FI_ATOMIC_DIRTIED? >>> So is it enough to do this only in [2]? >> >> Hi Zhiguo, >> >> I checked the code again, finally, I got this, could you please take >> a look? >> >> Ping Daeho as well. >> >> Subject: [PATCH] f2fs: fix to set atomic write status more clear >> >> 1. After we start atomic write in a database file, before committing >> all data, we'd better not set inode w/ vfs dirty status to avoid >> redundant updates, instead, we only set inode w/ atomic dirty status. >> >> 2. After we commit all data, before committing metadata, we need to >> clear atomic dirty status, and set vfs dirty status to allow vfs flush >> dirty inode. >> > Hi Chao, > these looks more clear. >> Signed-off-by: Chao Yu >> --- >> fs/f2fs/inode.c | 4 +++- >> fs/f2fs/segment.c | 10 ++++++---- >> fs/f2fs/super.c | 4 +++- >> 3 files changed, 12 insertions(+), 6 deletions(-) >> >> diff --git a/fs/f2fs/inode.c b/fs/f2fs/inode.c >> index 5c8634eaef7b..f5991e8751b9 100644 >> --- a/fs/f2fs/inode.c >> +++ b/fs/f2fs/inode.c >> @@ -34,7 +34,9 @@ void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync) >> if (f2fs_inode_dirtied(inode, sync)) >> return; >> >> - if (f2fs_is_atomic_file(inode)) >> + /* only atomic file w/ FI_ATOMIC_COMMITTED can be set vfs dirty */ >> + if (f2fs_is_atomic_file(inode) && >> + !is_inode_flag_set(inode, FI_ATOMIC_COMMITTED)) >> return; >> >> mark_inode_dirty_sync(inode); >> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c >> index dc360b4b0569..28659a71891a 100644 >> --- a/fs/f2fs/segment.c >> +++ b/fs/f2fs/segment.c >> @@ -376,10 +376,12 @@ static int __f2fs_commit_atomic_write(struct inode *inode) >> } else { >> sbi->committed_atomic_block += fi->atomic_write_cnt; >> set_inode_flag(inode, FI_ATOMIC_COMMITTED); >> - if (is_inode_flag_set(inode, FI_ATOMIC_DIRTIED)) { >> - clear_inode_flag(inode, FI_ATOMIC_DIRTIED); >> - f2fs_mark_inode_dirty_sync(inode, true); >> - } >> + >> + f2fs_bug_on(sbi, !is_inode_flag_set(inode, FI_ATOMIC_DIRTIED)); > but FI_ATOMIC_DIRTIED may not be set when atomic file is committing? > thanks! inc_valid_block_count() will set FI_ATOMIC_DIRTIED for inode at least? - __f2fs_commit_atomic_write - __replace_atomic_write_block - inc_valid_block_count - f2fs_i_blocks_write - f2fs_mark_inode_dirty_sync Thanks, >> + >> + /* clear atomic dirty status and set vfs dirty status */ >> + clear_inode_flag(inode, FI_ATOMIC_DIRTIED); >> + f2fs_mark_inode_dirty_sync(inode, true); >> } >> >> __complete_revoke_list(inode, &revoke_list, ret ? true : false); >> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c >> index 9a42a1323f42..a5cc9f6ee16a 100644 >> --- a/fs/f2fs/super.c >> +++ b/fs/f2fs/super.c >> @@ -1532,7 +1532,9 @@ int f2fs_inode_dirtied(struct inode *inode, bool sync) >> } >> spin_unlock(&sbi->inode_lock[DIRTY_META]); >> >> - if (!ret && f2fs_is_atomic_file(inode)) >> + /* if atomic write is not committed, set inode w/ atomic dirty */ >> + if (!ret && f2fs_is_atomic_file(inode) && >> + !is_inode_flag_set(inode, FI_ATOMIC_COMMITTED)) >> set_inode_flag(inode, FI_ATOMIC_DIRTIED); >> >> return ret; >> -- >> 2.48.1 >> >> >>> >>> Cc: Daeho Jeong >>> Fixes: fccaa81de87e ("f2fs: prevent atomic file from being dirtied before commit") >>> Signed-off-by: Zhiguo Niu >>> --- >>> fs/f2fs/segment.c | 4 ---- >>> 1 file changed, 4 deletions(-) >>> >>> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c >>> index 396ef71..d4ea3af 100644 >>> --- a/fs/f2fs/segment.c >>> +++ b/fs/f2fs/segment.c >>> @@ -376,10 +376,6 @@ static int __f2fs_commit_atomic_write(struct inode *inode) >>> } else { >>> sbi->committed_atomic_block += fi->atomic_write_cnt; >>> set_inode_flag(inode, FI_ATOMIC_COMMITTED); >>> - if (is_inode_flag_set(inode, FI_ATOMIC_DIRTIED)) { >>> - clear_inode_flag(inode, FI_ATOMIC_DIRTIED); >>> - f2fs_mark_inode_dirty_sync(inode, true); >>> - } >>> } >>> >>> __complete_revoke_list(inode, &revoke_list, ret ? true : false); >>