Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-04-14 Thread Eric Sandeen via Linux-f2fs-devel
On 4/12/25 12:17 PM, Eric Sandeen wrote: ... > FYI - I don't think I will be able to complete this conversion task myself - > f2fs is > by far the most difficult conversion I've encountered, and my time for these > sorts of > projects is sadly limited. I do have one more patch series that moves

Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-04-12 Thread Eric Sandeen via Linux-f2fs-devel
On 4/1/25 3:33 PM, Eric Sandeen wrote: > On 3/31/25 3:31 AM, Chao Yu wrote: >> On 3/29/25 12:18, Eric Sandeen wrote: >>> I was working on next steps for this, and I have a followup question. >>> >>> Today, several mount options are simply ignored if the on-disk format >>> does not support them. For

Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-04-05 Thread Eric Sandeen via Linux-f2fs-devel
I was working on next steps for this, and I have a followup question. Today, several mount options are simply ignored if the on-disk format does not support them. For example: case Opt_compress_mode: if (!f2fs_sb_has_compression(sbi)) {

Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-04-01 Thread Eric Sandeen via Linux-f2fs-devel
On 3/31/25 3:31 AM, Chao Yu wrote: > On 3/29/25 12:18, Eric Sandeen wrote: >> I was working on next steps for this, and I have a followup question. >> >> Today, several mount options are simply ignored if the on-disk format >> does not support them. For example: >> >> case Opt_compr

Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-03-31 Thread Chao Yu via Linux-f2fs-devel
On 3/29/25 12:18, Eric Sandeen wrote: > I was working on next steps for this, and I have a followup question. > > Today, several mount options are simply ignored if the on-disk format > does not support them. For example: > > case Opt_compress_mode: > if (!

Re: [f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-03-13 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Mon, 3 Mar 2025 11:12:10 -0600 you wrote: > I have been struggling to get to a good series to convert f2fs to the > new mount API. f2fs is more complex, because much of the option parsing > assumes that the superblock h

[f2fs-dev] [PATCH 0/9] f2fs: first steps towards mount API conversion

2025-03-03 Thread Eric Sandeen
I have been struggling to get to a good series to convert f2fs to the new mount API. f2fs is more complex, because much of the option parsing assumes that the superblock has already been read from disk, and uses that to test various on-disk features, etc. All of those tests will need to be moved to