search for: virtiofsd

Displaying 7 results from an estimated 7 matches for "virtiofsd".

Did you mean: virtiofs
2020 Sep 25
0
[RFC PATCH 01/19] tools/virtiofsd: add support for --socket-group
If you like running QEMU as a normal user (very common for TCG runs) but you have to run virtiofsd as a root user you run into connection problems. Adding support for an optional --socket-group allows the users to keep using the command line. Signed-off-by: Alex Benn?e <alex.bennee at linaro.org> Reviewed-by: Stefan Hajnoczi <stefanha at redhat.com> --- v1 - tweak documentation a...
2023 Apr 04
1
Virtiofsd
Hi In QEMU 8 virtiofsd has been removed in favor of the rust version. Which includes options that are not longer supported, Do you have a view on what should be used going forwards to support virtiofsd in libvirt with qemu 8? The options are showing as depreciated, -o <compat-options>... Options...
2023 Apr 04
1
Virtiofsd
On Tue, Apr 04, 2023 at 17:12:15 +0100, Simon Fairweather wrote: > Hi > > In QEMU 8 virtiofsd has been removed in favor of the rust version. Which > includes options that are not longer supported, > > > Do you have a view on what should be used going forwards to support > virtiofsd in libvirt with qemu 8? > > The options are showing as depreciated, > -o <co...
2023 Feb 08
2
virtio-fs: adding support for multi-queue
...ural >>>> and not specific to DPUs. >>> >>> Can we create multiple threads (a thread pool) on DPU and let these >>> threads process requests in parallel (While there is only one virt >>> queue). >>> >>> So this is what we had done in virtiofsd. One thread is dedicated to >>> pull the requests from virt queue and then pass the request to thread >>> pool to process it. And that seems to help with performance in >>> certain cases. >>> >>> Is that possible on DPU? That itself can give a nice perfo...
2019 Sep 12
0
[PATCH v5 0/4] virtio-fs: shared file system for virtual machines
...pretty easy, we must re-negotiate the same > > settings as before. > > > > * FUSE_LOOKUP -> fuse_inode (inode_map) > > > > The session contains a set of inode numbers that have been looked up > > using FUSE_LOOKUP. They are ephemeral in the current virtiofsd > > implementation and vary across device reset. Therefore we are unable > > to restore the same inode numbers upon restore. > > > > The solution is persistent inode numbers in virtiofsd. This is also > > needed to make open_by_handle_at(2) work and proba...
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
...underway to support this device in uboot and I suspect eventually there will be support for OPTEE as well. Any review comments gratefully received as well as discussion about if we should consider creating some new projects for housing these sort of vhost-user backends. Alex Benn?e (19): tools/virtiofsd: add support for --socket-group hw/block: add boilerplate for vhost-user-rpmb device hw/virtio: move virtio-pci.h into shared include space hw/block: add vhost-user-rpmb-pci boilerplate virtio-pci: add notification trace points tools/vhost-user-rpmb: add boilerplate and initial main too...
2019 Sep 11
0
[PATCH v5 0/4] virtio-fs: shared file system for virtual machines
...ateful and need special attention: * FUSE_INIT - this is pretty easy, we must re-negotiate the same settings as before. * FUSE_LOOKUP -> fuse_inode (inode_map) The session contains a set of inode numbers that have been looked up using FUSE_LOOKUP. They are ephemeral in the current virtiofsd implementation and vary across device reset. Therefore we are unable to restore the same inode numbers upon restore. The solution is persistent inode numbers in virtiofsd. This is also needed to make open_by_handle_at(2) work and probably for live migration. * FUSE_OPEN -> fh...