* [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone
@ 2024-05-29 11:24 Sheng Yong via Linux-f2fs-devel
2024-05-29 11:27 ` Chao Yu
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Sheng Yong via Linux-f2fs-devel @ 2024-05-29 11:24 UTC (permalink / raw)
To: jaegeuk, chao; +Cc: linux-kernel, linux-f2fs-devel
If curseg is not the first segment in its zone, the zone is not empty,
and it should not be reset. This issue could be reproduced by:
modprobe null_blk nr_devices=1 zoned=1 zone_max_open=6 zone_max_active=6 zone_size=1024 gb=30
# /dev/vda is 4G
mkfs.f2fs -m -c /dev/nullb0 /dev/vda -f
while :; do
mount /dev/vda /mnt/
dd if=/dev/zero of=/mnt/file bs=4K count=11 conv=fsync status=none
if [ $? -ne 0 ]; then
umount /mnt
break
fi
f2fs_io shutdown 1 /mnt/file
umount /mnt
done
And the error looks like:
[ 123.169852] I/O error, dev nullb0, sector 41951232 op 0x1:(WRITE) flags 0x800 phys_seg 10 prio class 0
[ 123.173070] F2FS-fs (vda): do_checkpoint failed err:-5, stop checkpoint
dd: error writing '/mnt/testfile': Input/output error
Signed-off-by: Sheng Yong <shengyong@oppo.com>
---
fs/f2fs/segment.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 4c8836ded90fc..50b38cbe33401 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -5004,7 +5004,8 @@ static int fix_curseg_write_pointer(struct f2fs_sb_info *sbi, int type)
}
/* Allocate a new section if it's not new. */
- if (cs->next_blkoff) {
+ if (cs->next_blkoff ||
+ cs->segno != GET_SEG_FROM_SEC(sbi, GET_ZONE_FROM_SEC(sbi, cs_section))) {
unsigned int old_segno = cs->segno, old_blkoff = cs->next_blkoff;
f2fs_allocate_new_section(sbi, type, true);
--
2.40.1
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone
2024-05-29 11:24 [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone Sheng Yong via Linux-f2fs-devel
@ 2024-05-29 11:27 ` Chao Yu
2024-05-30 10:01 ` [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone Sheng Yong via Linux-f2fs-devel
2024-06-12 15:55 ` [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone patchwork-bot+f2fs
2 siblings, 0 replies; 5+ messages in thread
From: Chao Yu @ 2024-05-29 11:27 UTC (permalink / raw)
To: Sheng Yong, jaegeuk; +Cc: linux-kernel, linux-f2fs-devel
On 2024/5/29 19:24, Sheng Yong wrote:
> If curseg is not the first segment in its zone, the zone is not empty,
> and it should not be reset. This issue could be reproduced by:
>
> modprobe null_blk nr_devices=1 zoned=1 zone_max_open=6 zone_max_active=6 zone_size=1024 gb=30
> # /dev/vda is 4G
> mkfs.f2fs -m -c /dev/nullb0 /dev/vda -f
>
> while :; do
> mount /dev/vda /mnt/
> dd if=/dev/zero of=/mnt/file bs=4K count=11 conv=fsync status=none
> if [ $? -ne 0 ]; then
> umount /mnt
> break
> fi
> f2fs_io shutdown 1 /mnt/file
> umount /mnt
> done
>
> And the error looks like:
> [ 123.169852] I/O error, dev nullb0, sector 41951232 op 0x1:(WRITE) flags 0x800 phys_seg 10 prio class 0
> [ 123.173070] F2FS-fs (vda): do_checkpoint failed err:-5, stop checkpoint
> dd: error writing '/mnt/testfile': Input/output error
>
> Signed-off-by: Sheng Yong <shengyong@oppo.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Thanks,
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone
2024-05-29 11:24 [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone Sheng Yong via Linux-f2fs-devel
2024-05-29 11:27 ` Chao Yu
@ 2024-05-30 10:01 ` Sheng Yong via Linux-f2fs-devel
2024-06-12 15:55 ` patchwork-bot+f2fs
2024-06-12 15:55 ` [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone patchwork-bot+f2fs
2 siblings, 1 reply; 5+ messages in thread
From: Sheng Yong via Linux-f2fs-devel @ 2024-05-30 10:01 UTC (permalink / raw)
To: jaegeuk, chao; +Cc: linux-kernel, linux-f2fs-devel
If curseg is not the first segment in its zone, the zone is not empty.
A new section should be allocated and avoid resetting the old zone.
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Sheng Yong <shengyong@oppo.com>
---
v2: remove and update inaccurate commit msg
---
fs/f2fs/segment.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
index 4c8836ded90fc..50b38cbe33401 100644
--- a/fs/f2fs/segment.c
+++ b/fs/f2fs/segment.c
@@ -5004,7 +5004,8 @@ static int fix_curseg_write_pointer(struct f2fs_sb_info *sbi, int type)
}
/* Allocate a new section if it's not new. */
- if (cs->next_blkoff) {
+ if (cs->next_blkoff ||
+ cs->segno != GET_SEG_FROM_SEC(sbi, GET_ZONE_FROM_SEC(sbi, cs_section))) {
unsigned int old_segno = cs->segno, old_blkoff = cs->next_blkoff;
f2fs_allocate_new_section(sbi, type, true);
--
2.40.1
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone
2024-05-30 10:01 ` [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone Sheng Yong via Linux-f2fs-devel
@ 2024-06-12 15:55 ` patchwork-bot+f2fs
0 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+f2fs @ 2024-06-12 15:55 UTC (permalink / raw)
To: Sheng Yong; +Cc: jaegeuk, linux-kernel, linux-f2fs-devel
Hello:
This patch was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Thu, 30 May 2024 18:01:58 +0800 you wrote:
> If curseg is not the first segment in its zone, the zone is not empty.
> A new section should be allocated and avoid resetting the old zone.
>
> Reviewed-by: Chao Yu <chao@kernel.org>
> Signed-off-by: Sheng Yong <shengyong@oppo.com>
> ---
> v2: remove and update inaccurate commit msg
>
> [...]
Here is the summary with links:
- [f2fs-dev,v2] f2fs: alloc new section if curseg is not the first seg in its zone
https://git.kernel.org/jaegeuk/f2fs/c/76da333f4b93
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone
2024-05-29 11:24 [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone Sheng Yong via Linux-f2fs-devel
2024-05-29 11:27 ` Chao Yu
2024-05-30 10:01 ` [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone Sheng Yong via Linux-f2fs-devel
@ 2024-06-12 15:55 ` patchwork-bot+f2fs
2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+f2fs @ 2024-06-12 15:55 UTC (permalink / raw)
To: Sheng Yong; +Cc: jaegeuk, linux-kernel, linux-f2fs-devel
Hello:
This patch was applied to jaegeuk/f2fs.git (dev)
by Jaegeuk Kim <jaegeuk@kernel.org>:
On Wed, 29 May 2024 19:24:11 +0800 you wrote:
> If curseg is not the first segment in its zone, the zone is not empty,
> and it should not be reset. This issue could be reproduced by:
>
> modprobe null_blk nr_devices=1 zoned=1 zone_max_open=6 zone_max_active=6 zone_size=1024 gb=30
> # /dev/vda is 4G
> mkfs.f2fs -m -c /dev/nullb0 /dev/vda -f
>
> [...]
Here is the summary with links:
- [f2fs-dev] f2fs: avoid resetting non empty zone
https://git.kernel.org/jaegeuk/f2fs/c/76da333f4b93
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-12 15:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-29 11:24 [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone Sheng Yong via Linux-f2fs-devel
2024-05-29 11:27 ` Chao Yu
2024-05-30 10:01 ` [f2fs-dev] [PATCH v2] f2fs: alloc new section if curseg is not the first seg in its zone Sheng Yong via Linux-f2fs-devel
2024-06-12 15:55 ` patchwork-bot+f2fs
2024-06-12 15:55 ` [f2fs-dev] [PATCH] f2fs: avoid resetting non empty zone patchwork-bot+f2fs
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).