Re: [f2fs-dev] [PATCH v2] f2fs: zone: don't block IO if there is remained open zone

2024-04-06 Thread Chao Yu
On 2024/4/2 3:08, Daeho Jeong wrote: On Thu, Mar 28, 2024 at 8:20 PM Chao Yu wrote: max open zone may be larger than log header number of f2fs, for such case, it doesn't need to wait last IO in previous zone, let's introduce available_open_zone semaphore, and reduce it once we submit first

Re: [f2fs-dev] [PATCH v2] f2fs: zone: don't block IO if there is remained open zone

2024-04-01 Thread Daeho Jeong
On Thu, Mar 28, 2024 at 8:20 PM Chao Yu wrote: > > max open zone may be larger than log header number of f2fs, for > such case, it doesn't need to wait last IO in previous zone, let's > introduce available_open_zone semaphore, and reduce it once we > submit first write IO in a zone, and increase

[f2fs-dev] [PATCH v2] f2fs: zone: don't block IO if there is remained open zone

2024-03-28 Thread Chao Yu
max open zone may be larger than log header number of f2fs, for such case, it doesn't need to wait last IO in previous zone, let's introduce available_open_zone semaphore, and reduce it once we submit first write IO in a zone, and increase it after completion of last IO in the zone. Cc: Daeho