Commit 862b9a8e authored by Alexander Mikhalitsyn's avatar Alexander Mikhalitsyn Committed by Miklos Szeredi

virtio_fs: allow idmapped mounts

Allow idmapped mounts for virtiofs.
It's absolutely safe as for virtiofs we have the same
feature negotiation mechanism as for classical fuse
filesystems. This does not affect any existing
setups anyhow.

virtiofsd support:
https://gitlab.com/virtio-fs/virtiofsd/-/merge_requests/245Signed-off-by: default avatarAlexander Mikhalitsyn <aleksandr.mikhalitsyn@canonical.com>
Reviewed-by: default avatarChristian Brauner <brauner@kernel.org>
Reviewed-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent 16e1503e
...@@ -1613,6 +1613,7 @@ static struct file_system_type virtio_fs_type = { ...@@ -1613,6 +1613,7 @@ static struct file_system_type virtio_fs_type = {
.name = "virtiofs", .name = "virtiofs",
.init_fs_context = virtio_fs_init_fs_context, .init_fs_context = virtio_fs_init_fs_context,
.kill_sb = virtio_kill_sb, .kill_sb = virtio_kill_sb,
.fs_flags = FS_ALLOW_IDMAP,
}; };
static int virtio_fs_uevent(const struct kobject *kobj, struct kobj_uevent_env *env) static int virtio_fs_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment