From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 D99F5349AF5; Thu, 2 Jul 2026 16:45:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783010701; cv=none; b=cf2EZC2oTJyHDkWoM4H/IAhKhF9ffjeuu+Q7YRUgrCcv3APaK1dgKw1GVobFGoq+VhRubtZ62mcNCAaA3uoeBSSraLC71hcnYVigLKg/qdqBdtv7PYH4HuljhCZ+Zs6wRb8UUQ1ORsB/O0gGhrdIn1oKQQGcij612z9Qd1xaiWQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783010701; c=relaxed/simple; bh=dhHV3D+1z6+gm5XO/dEMv1COHlPS6IWflbTTUzvMsiE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=N7zbPtJ/CQ1N3KUyGI9wvP94yHvwUIg7atdgeoL8kFo1lAZqa0pONHai0Pp5Tm4JnFWTFt8NadPEjCv83hggLoIGO+F1Lxp7qu9yBqbik3OIUDN/bQ1yXSBTxqz0MGRysFowsv/wmSUtnHC0PSNhPQQMvkmRLkjZYQ3EwqPmNBs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=wjzG3NpM; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="wjzG3NpM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2394C1F000E9; Thu, 2 Jul 2026 16:44:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1783010700; bh=gypTpHI3Z1FNJjAYK+UxxAT8wYVSuXEj4xZqgb/gYiM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=wjzG3NpM0sKk+14qEP0G7FhARq4S5pFMa0t1lhw1HRVsIA56iwoghABrDcxrCAZ9h aMa232Cj6EWb+UIpUq11uSL7O26fVjAeufe/j1DeBrY7OnQQ0yRyXZ8Cua1Fj7q2MH 5AosYrFU5e6nVtxMIhNQr/tb/V3SKL686P/H6olM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yunji Kang , Yeongjin Gil , Sungjong Seo , Sunmin Jeong , Chao Yu , Jaegeuk Kim Subject: [PATCH 6.12 155/204] f2fs: fix to round down start offset of fallocate for pin file Date: Thu, 2 Jul 2026 18:20:12 +0200 Message-ID: <20260702155121.906321806@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260702155118.667618796@linuxfoundation.org> References: <20260702155118.667618796@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sunmin Jeong commit 4275b59673eb60b02eec3997816c83f1f4b909c4 upstream. Currently, the length of fallocate for pin file is section-aligned to keep allocated sections from being selected as victims of GC. However, for the case that the start offset of fallocate is not aligned in section, the allocated sections can't be fully utilized. It's because a new section is allocated by f2fs_allocate_pinning_section() after using blks_per_sec blocks regardless of the start offset. As a result, several unexpected dirty segments may be created, including blocks assigned to the pinned file. To address this issue, let's round down the start offset of fallocate to the length of section. The reproducing scenario is as below chunk=$(((2<<20)+4096)) # 2MB + 4KB touch test f2fs_io pinfile set test f2fs_io fallocate 0 0 $chunk test f2fs_io fallocate 0 $chunk $chunk test f2fs_io fallocate 0 $((chunk*2)) $chunk test f2fs_io fiemap 0 $((chunk*3)) test Fiemap: offset = 0 len = 12288 logical addr. physical addr. length flags 0 0000000000000000 000000068c600000 0000000000400000 00001088 1 0000000000400000 000000003d400000 0000000000001000 00001088 2 0000000000401000 00000003eb200000 0000000000200000 00001088 3 0000000000601000 00000005e4200000 0000000000001000 00001088 4 0000000000602000 0000000605400000 0000000000200000 00001089 Cc: stable@vger.kernel.org Fixes: f5a53edcf01e ("f2fs: support aligned pinned file") Reviewed-by: Yunji Kang Reviewed-by: Yeongjin Gil Reviewed-by: Sungjong Seo Signed-off-by: Sunmin Jeong Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim Signed-off-by: Greg Kroah-Hartman --- fs/f2fs/file.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -1838,8 +1838,15 @@ static int f2fs_expand_inode_data(struct if (f2fs_is_pinned_file(inode)) { block_t sec_blks = CAP_BLKS_PER_SEC(sbi); - block_t sec_len = roundup(map.m_len, sec_blks); + block_t sec_len; + if (map.m_lblk % sec_blks) { + map.m_lblk = rounddown(map.m_lblk, sec_blks); + map.m_len = pg_end - map.m_lblk; + if (off_end) + map.m_len++; + } + sec_len = roundup(map.m_len, sec_blks); map.m_len = sec_blks; next_alloc: f2fs_down_write(&sbi->pin_sem);