virtio-fs.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
Cc: qemu-devel@nongnu.org, vgoyal@redhat.com, hczenczek@redhat.com,
	gmaglione@redhat.com, virtio-fs@redhat.com, pbonzini@redhat.com,
	alex.bennee@linaro.org
Subject: Re: [Virtio-fs] [PATCH v2 0/4] Remove C virtiofsd
Date: Wed, 15 Feb 2023 15:03:14 -0500	[thread overview]
Message-ID: <Y+06giqYYsASQOWM@fedora> (raw)
In-Reply-To: <20230215184310.161283-1-dgilbert@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 4160 bytes --]

On Wed, Feb 15, 2023 at 06:43:06PM +0000, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> We deprecated the C virtiofsd in commit 34deee7b6a1418f3d62a
> in v7.0 in favour of the Rust implementation at
>  
>   https://gitlab.com/virtio-fs/virtiofsd
>  
> since then, the Rust version has had more development and
> has held up well.  It's time to say goodbye to the C version
> that got us going.
> 
> v2:
>   After comments on the v1 series, I've removed the Avocado
> test.
> 
> Dr. David Alan Gilbert (4):
>   virtiofsd: Remove test
>   virtiofsd: Remove build and docs glue
>   virtiofsd: Remove source
>   virtiofsd: Swing deprecated message to removed-features
> 
>  MAINTAINERS                                   |    2 -
>  docs/about/deprecated.rst                     |   18 -
>  docs/about/removed-features.rst               |   13 +
>  docs/conf.py                                  |    4 -
>  docs/meson.build                              |    1 -
>  docs/tools/index.rst                          |    1 -
>  docs/tools/virtiofsd.rst                      |  403 --
>  meson.build                                   |    1 -
>  meson_options.txt                             |    2 -
>  .../ci/org.centos/stream/8/x86_64/configure   |    2 -
>  .../org.centos/stream/8/x86_64/test-avocado   |    7 -
>  scripts/coverity-scan/COMPONENTS.md           |    3 -
>  scripts/meson-buildoptions.sh                 |    3 -
>  tests/avocado/virtiofs_submounts.py           |  217 -
>  tools/meson.build                             |   13 -
>  tools/virtiofsd/50-qemu-virtiofsd.json.in     |    5 -
>  tools/virtiofsd/buffer.c                      |  350 --
>  tools/virtiofsd/fuse_common.h                 |  837 ---
>  tools/virtiofsd/fuse_i.h                      |  107 -
>  tools/virtiofsd/fuse_log.c                    |   40 -
>  tools/virtiofsd/fuse_log.h                    |   75 -
>  tools/virtiofsd/fuse_lowlevel.c               | 2732 ----------
>  tools/virtiofsd/fuse_lowlevel.h               | 1988 --------
>  tools/virtiofsd/fuse_misc.h                   |   59 -
>  tools/virtiofsd/fuse_opt.c                    |  446 --
>  tools/virtiofsd/fuse_opt.h                    |  272 -
>  tools/virtiofsd/fuse_signals.c                |   93 -
>  tools/virtiofsd/fuse_virtio.c                 | 1081 ----
>  tools/virtiofsd/fuse_virtio.h                 |   33 -
>  tools/virtiofsd/helper.c                      |  409 --
>  tools/virtiofsd/meson.build                   |   18 -
>  tools/virtiofsd/passthrough_helpers.h         |   51 -
>  tools/virtiofsd/passthrough_ll.c              | 4521 -----------------
>  tools/virtiofsd/passthrough_seccomp.c         |  182 -
>  tools/virtiofsd/passthrough_seccomp.h         |   14 -
>  35 files changed, 13 insertions(+), 13990 deletions(-)
>  delete mode 100644 docs/tools/virtiofsd.rst
>  delete mode 100644 tests/avocado/virtiofs_submounts.py
>  delete mode 100644 tools/virtiofsd/50-qemu-virtiofsd.json.in
>  delete mode 100644 tools/virtiofsd/buffer.c
>  delete mode 100644 tools/virtiofsd/fuse_common.h
>  delete mode 100644 tools/virtiofsd/fuse_i.h
>  delete mode 100644 tools/virtiofsd/fuse_log.c
>  delete mode 100644 tools/virtiofsd/fuse_log.h
>  delete mode 100644 tools/virtiofsd/fuse_lowlevel.c
>  delete mode 100644 tools/virtiofsd/fuse_lowlevel.h
>  delete mode 100644 tools/virtiofsd/fuse_misc.h
>  delete mode 100644 tools/virtiofsd/fuse_opt.c
>  delete mode 100644 tools/virtiofsd/fuse_opt.h
>  delete mode 100644 tools/virtiofsd/fuse_signals.c
>  delete mode 100644 tools/virtiofsd/fuse_virtio.c
>  delete mode 100644 tools/virtiofsd/fuse_virtio.h
>  delete mode 100644 tools/virtiofsd/helper.c
>  delete mode 100644 tools/virtiofsd/meson.build
>  delete mode 100644 tools/virtiofsd/passthrough_helpers.h
>  delete mode 100644 tools/virtiofsd/passthrough_ll.c
>  delete mode 100644 tools/virtiofsd/passthrough_seccomp.c
>  delete mode 100644 tools/virtiofsd/passthrough_seccomp.h
> 
> -- 
> 2.39.1
> 

Acked-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

      parent reply	other threads:[~2023-02-15 20:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-15 18:43 [Virtio-fs] [PATCH v2 0/4] Remove C virtiofsd Dr. David Alan Gilbert (git)
2023-02-15 18:43 ` [Virtio-fs] [PATCH v2 1/4] virtiofsd: Remove test Dr. David Alan Gilbert (git)
2023-02-15 18:43 ` [Virtio-fs] [PATCH v2 2/4] virtiofsd: Remove build and docs glue Dr. David Alan Gilbert (git)
2023-02-15 18:43 ` [Virtio-fs] [PATCH v2 3/4] virtiofsd: Remove source Dr. David Alan Gilbert (git)
2023-02-15 18:43 ` [Virtio-fs] [PATCH v2 4/4] virtiofsd: Swing deprecated message to removed-features Dr. David Alan Gilbert (git)
2023-02-15 20:03 ` Stefan Hajnoczi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y+06giqYYsASQOWM@fedora \
    --to=stefanha@redhat.com \
    --cc=alex.bennee@linaro.org \
    --cc=dgilbert@redhat.com \
    --cc=gmaglione@redhat.com \
    --cc=hczenczek@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=vgoyal@redhat.com \
    --cc=virtio-fs@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).