* [PATCH v2] Deprecate C virtiofsd @ 2022-02-10 17:47 Dr. David Alan Gilbert (git) 2022-02-10 17:52 ` Daniel P. Berrangé ` (2 more replies) 0 siblings, 3 replies; 6+ messages in thread From: Dr. David Alan Gilbert (git) @ 2022-02-10 17:47 UTC (permalink / raw) To: qemu-devel, virtio-fs; +Cc: berrange, stefanha, slp, vgoyal From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> There's a nice new Rust implementation out there; recommend people do new work on that. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> --- docs/about/deprecated.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst index 47a594a3b6..3c73d22729 100644 --- a/docs/about/deprecated.rst +++ b/docs/about/deprecated.rst @@ -454,3 +454,20 @@ nanoMIPS ISA The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain. As it is hard to generate binaries for it, declare it deprecated. + +Tools +----- + +virtiofsd +''''''''' + +There is a new Rust implementation of ``virtiofsd`` at +``https://gitlab.com/virtio-fs/virtiofsd``; +since this is now marked stable, new development should be done on that +rather than the existing C version in the QEMU tree. +The C version will still accept fixes and patches that +are already in development for the moment, but will eventually +be deleted from this tree. +New deployments should use the Rust version, and existing systems +should consider moving to it. The command line and feature set +is very close and moving should be simple. -- 2.34.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2] Deprecate C virtiofsd 2022-02-10 17:47 [PATCH v2] Deprecate C virtiofsd Dr. David Alan Gilbert (git) @ 2022-02-10 17:52 ` Daniel P. Berrangé 2022-02-10 20:44 ` Richard W.M. Jones 2022-02-14 11:12 ` Stefan Hajnoczi 2 siblings, 0 replies; 6+ messages in thread From: Daniel P. Berrangé @ 2022-02-10 17:52 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: virtio-fs, stefanha, slp, qemu-devel, vgoyal On Thu, Feb 10, 2022 at 05:47:14PM +0000, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > There's a nice new Rust implementation out there; recommend people > do new work on that. > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > --- > docs/about/deprecated.rst | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :| ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] Deprecate C virtiofsd 2022-02-10 17:47 [PATCH v2] Deprecate C virtiofsd Dr. David Alan Gilbert (git) 2022-02-10 17:52 ` Daniel P. Berrangé @ 2022-02-10 20:44 ` Richard W.M. Jones 2022-02-14 11:30 ` Dr. David Alan Gilbert 2022-02-14 11:12 ` Stefan Hajnoczi 2 siblings, 1 reply; 6+ messages in thread From: Richard W.M. Jones @ 2022-02-10 20:44 UTC (permalink / raw) To: Dr. David Alan Gilbert (git) Cc: berrange, slp, qemu-devel, virtio-fs, stefanha, vgoyal On Thu, Feb 10, 2022 at 05:47:14PM +0000, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > There's a nice new Rust implementation out there; recommend people > do new work on that. > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > --- > docs/about/deprecated.rst | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst > index 47a594a3b6..3c73d22729 100644 > --- a/docs/about/deprecated.rst > +++ b/docs/about/deprecated.rst > @@ -454,3 +454,20 @@ nanoMIPS ISA > > The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain. > As it is hard to generate binaries for it, declare it deprecated. > + > +Tools > +----- > + > +virtiofsd > +''''''''' > + > +There is a new Rust implementation of ``virtiofsd`` at > +``https://gitlab.com/virtio-fs/virtiofsd``; > +since this is now marked stable, new development should be done on that > +rather than the existing C version in the QEMU tree. > +The C version will still accept fixes and patches that > +are already in development for the moment, but will eventually > +be deleted from this tree. > +New deployments should use the Rust version, and existing systems > +should consider moving to it. The command line and feature set > +is very close and moving should be simple. I'm not qualified to say if the Rust impl is complete enough to replace the C version, so I won't add a reviewed tag. However I want to say that from the point of view of downstream packagers of qemu -- especially Fedora -- it would be helpful if we could direct both upstream development effort and downstream packaging into just the one virtiofsd. So I agree in principle with this. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and turn machines into KVM guests. http://libguestfs.org/virt-v2v ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] Deprecate C virtiofsd 2022-02-10 20:44 ` Richard W.M. Jones @ 2022-02-14 11:30 ` Dr. David Alan Gilbert 2022-02-14 14:27 ` Vivek Goyal 0 siblings, 1 reply; 6+ messages in thread From: Dr. David Alan Gilbert @ 2022-02-14 11:30 UTC (permalink / raw) To: Richard W.M. Jones; +Cc: berrange, slp, qemu-devel, virtio-fs, stefanha, vgoyal * Richard W.M. Jones (rjones@redhat.com) wrote: > On Thu, Feb 10, 2022 at 05:47:14PM +0000, Dr. David Alan Gilbert (git) wrote: > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > > > There's a nice new Rust implementation out there; recommend people > > do new work on that. > > > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > > --- > > docs/about/deprecated.rst | 17 +++++++++++++++++ > > 1 file changed, 17 insertions(+) > > > > diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst > > index 47a594a3b6..3c73d22729 100644 > > --- a/docs/about/deprecated.rst > > +++ b/docs/about/deprecated.rst > > @@ -454,3 +454,20 @@ nanoMIPS ISA > > > > The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain. > > As it is hard to generate binaries for it, declare it deprecated. > > + > > +Tools > > +----- > > + > > +virtiofsd > > +''''''''' > > + > > +There is a new Rust implementation of ``virtiofsd`` at > > +``https://gitlab.com/virtio-fs/virtiofsd``; > > +since this is now marked stable, new development should be done on that > > +rather than the existing C version in the QEMU tree. > > +The C version will still accept fixes and patches that > > +are already in development for the moment, but will eventually > > +be deleted from this tree. > > +New deployments should use the Rust version, and existing systems > > +should consider moving to it. The command line and feature set > > +is very close and moving should be simple. > > I'm not qualified to say if the Rust impl is complete enough > to replace the C version, so I won't add a reviewed tag. We believe it is a complete replacement at this point, with compatible command line. Dave > However I want to say that from the point of view of downstream > packagers of qemu -- especially Fedora -- it would be helpful if we > could direct both upstream development effort and downstream packaging > into just the one virtiofsd. So I agree in principle with this. > > Rich. > > -- > Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones > Read my programming and virtualization blog: http://rwmj.wordpress.com > virt-p2v converts physical machines to virtual machines. Boot with a > live CD or over the network (PXE) and turn machines into KVM guests. > http://libguestfs.org/virt-v2v > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] Deprecate C virtiofsd 2022-02-14 11:30 ` Dr. David Alan Gilbert @ 2022-02-14 14:27 ` Vivek Goyal 0 siblings, 0 replies; 6+ messages in thread From: Vivek Goyal @ 2022-02-14 14:27 UTC (permalink / raw) To: Dr. David Alan Gilbert Cc: berrange, slp, Richard W.M. Jones, qemu-devel, virtio-fs, stefanha On Mon, Feb 14, 2022 at 11:30:03AM +0000, Dr. David Alan Gilbert wrote: > * Richard W.M. Jones (rjones@redhat.com) wrote: > > On Thu, Feb 10, 2022 at 05:47:14PM +0000, Dr. David Alan Gilbert (git) wrote: > > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > > > > > There's a nice new Rust implementation out there; recommend people > > > do new work on that. > > > > > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > > > --- > > > docs/about/deprecated.rst | 17 +++++++++++++++++ > > > 1 file changed, 17 insertions(+) > > > > > > diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst > > > index 47a594a3b6..3c73d22729 100644 > > > --- a/docs/about/deprecated.rst > > > +++ b/docs/about/deprecated.rst > > > @@ -454,3 +454,20 @@ nanoMIPS ISA > > > > > > The ``nanoMIPS`` ISA has never been upstreamed to any compiler toolchain. > > > As it is hard to generate binaries for it, declare it deprecated. > > > + > > > +Tools > > > +----- > > > + > > > +virtiofsd > > > +''''''''' > > > + > > > +There is a new Rust implementation of ``virtiofsd`` at > > > +``https://gitlab.com/virtio-fs/virtiofsd``; > > > +since this is now marked stable, new development should be done on that > > > +rather than the existing C version in the QEMU tree. > > > +The C version will still accept fixes and patches that > > > +are already in development for the moment, but will eventually > > > +be deleted from this tree. > > > +New deployments should use the Rust version, and existing systems > > > +should consider moving to it. The command line and feature set > > > +is very close and moving should be simple. > > > > I'm not qualified to say if the Rust impl is complete enough > > to replace the C version, so I won't add a reviewed tag. > > We believe it is a complete replacement at this point, with compatible > command line. I think its not a complete replacement yet. For example, POSIX_ACLs are not supported yet. German is looking into making it work. There might be other small things here and there, but nothing major, I think. Vivek > > Dave > > > However I want to say that from the point of view of downstream > > packagers of qemu -- especially Fedora -- it would be helpful if we > > could direct both upstream development effort and downstream packaging > > into just the one virtiofsd. So I agree in principle with this. > > > > Rich. > > > > -- > > Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones > > Read my programming and virtualization blog: http://rwmj.wordpress.com > > virt-p2v converts physical machines to virtual machines. Boot with a > > live CD or over the network (PXE) and turn machines into KVM guests. > > http://libguestfs.org/virt-v2v > > > -- > Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] Deprecate C virtiofsd 2022-02-10 17:47 [PATCH v2] Deprecate C virtiofsd Dr. David Alan Gilbert (git) 2022-02-10 17:52 ` Daniel P. Berrangé 2022-02-10 20:44 ` Richard W.M. Jones @ 2022-02-14 11:12 ` Stefan Hajnoczi 2 siblings, 0 replies; 6+ messages in thread From: Stefan Hajnoczi @ 2022-02-14 11:12 UTC (permalink / raw) To: Dr. David Alan Gilbert (git); +Cc: virtio-fs, berrange, slp, qemu-devel, vgoyal [-- Attachment #1: Type: text/plain, Size: 492 bytes --] On Thu, Feb 10, 2022 at 05:47:14PM +0000, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com> > > There's a nice new Rust implementation out there; recommend people > do new work on that. > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> > --- > docs/about/deprecated.rst | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) Thanks, applied to my block tree: https://gitlab.com/stefanha/qemu/commits/block Stefan [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-02-14 15:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-10 17:47 [PATCH v2] Deprecate C virtiofsd Dr. David Alan Gilbert (git) 2022-02-10 17:52 ` Daniel P. Berrangé 2022-02-10 20:44 ` Richard W.M. Jones 2022-02-14 11:30 ` Dr. David Alan Gilbert 2022-02-14 14:27 ` Vivek Goyal 2022-02-14 11:12 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).