Re: [PATCH] virtio-fs: Query rootmode during mount

2024-11-07 Thread Hanna Czenczek
On 07.11.24 13:18, Miklos Szeredi wrote: On Thu, 7 Nov 2024 at 11:00, Hanna Czenczek wrote: It isn’t much, but I believe it’s most of fuse_fill_super_common() (without restructuring the code so flags returned by INIT are put into a separate structure and then re-joined into sb and fc later

Re: [PATCH] virtio-fs: Query rootmode during mount

2024-11-07 Thread Hanna Czenczek
On 07.11.24 09:58, Miklos Szeredi wrote: On Thu, 24 Oct 2024 at 18:47, Hanna Czenczek wrote: To be able to issue INIT (and GETATTR), we need to at least partially initialize the super_block structure, which is currently done via fuse_fill_super_common(). What exactly is needed to be

[PATCH] virtio-fs: Query rootmode during mount

2024-10-24 Thread Hanna Czenczek
) during mount() would then cause a deadlock. Also, using the 'rootmode' mount option in case of non-virtio-fs FUSE filesystems just works well, there is no need to change it. Suggested-by: Miklos Szeredi Signed-off-by: Hanna Czenczek --- Sorry for the delay, I wanted to find out wheth