Re: [f2fs-dev] [PATCH v5] f2fs: prevent writing without fallocate() for pinned files

2024-03-29 Thread Chao Yu
On 2024/3/27 4:31, Daeho Jeong wrote: From: Daeho Jeong In a case writing without fallocate(), we can't guarantee it's allocated in the conventional area for zoned stroage. To make it consistent across storage devices, we disallow it regardless of storage device types. Signed-off-by: Daeho

[f2fs-dev] [PATCH v5] f2fs: prevent writing without fallocate() for pinned files

2024-03-26 Thread Daeho Jeong
From: Daeho Jeong In a case writing without fallocate(), we can't guarantee it's allocated in the conventional area for zoned stroage. To make it consistent across storage devices, we disallow it regardless of storage device types. Signed-off-by: Daeho Jeong --- v2: covered the direct io case