-
-
Notifications
You must be signed in to change notification settings - Fork 605
Closed
Description
Some resources:
- https://virtio-fs.gitlab.io/index.html#faq
- https://stefanha.github.io/virtio/virtio-fs.html#x1-41500011 (look for virtio-fs)
- https://virtio-fs.gitlab.io/howto-qemu.html
- https://lists.oasis-open.org/archives/virtio-dev/201812/msg00073.html
This would require implementing a new virtio device and a new filesystem. The challenge is that Linux implementation (https://gitlab.com/virtio-fs/linux/blob/virtio-fs/fs/fuse/virtio_fs.c and https://gitlab.com/virtio-fs/linux/blob/virtio-fs/fs/fuse/inode.c) uses FUSE layer which is OSv does not implement and never will probably. For starters, we could limit the initial implementation to a read-only part.
LightTemplar