From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: virtio-fs@redhat.com,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
qemu-devel@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Virtio-fs] [PATCH 1/4] virtiofsd: make -f (foreground) the default
Date: Tue, 3 Sep 2019 18:17:33 +0100 [thread overview]
Message-ID: <20190903171733.GR2744@work-vm> (raw)
In-Reply-To: <20190827095437.18819-2-stefanha@redhat.com>
* Stefan Hajnoczi (stefanha@redhat.com) wrote:
> According to vhost-user.rst "Backend program conventions", backend
> programs should run in the foregound by default. Follow the
> conventions so libvirt and other management tools can control virtiofsd
> in a standard way.
>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> contrib/virtiofsd/helper.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/contrib/virtiofsd/helper.c b/contrib/virtiofsd/helper.c
> index 4c71452080..8d8bca889b 100644
> --- a/contrib/virtiofsd/helper.c
> +++ b/contrib/virtiofsd/helper.c
> @@ -42,6 +42,7 @@ static const struct fuse_opt fuse_helper_opts[] = {
> FUSE_OPT_KEY("-d", FUSE_OPT_KEY_KEEP),
> FUSE_OPT_KEY("debug", FUSE_OPT_KEY_KEEP),
> FUSE_HELPER_OPT("-f", foreground),
> + FUSE_HELPER_OPT_VALUE("--daemonize", foreground, 0),
> FUSE_HELPER_OPT("-s", singlethread),
> FUSE_HELPER_OPT("fsname=", nodefault_subtype),
> FUSE_OPT_KEY("fsname=", FUSE_OPT_KEY_KEEP),
> @@ -139,6 +140,7 @@ void fuse_cmdline_help(void)
> " -d -o debug enable debug output (implies -f)\n"
> " --syslog log to syslog (default stderr)\n"
> " -f foreground operation\n"
> + " --daemonize run in background\n"
> " -s disable multi-threaded operation\n"
> " -o clone_fd use separate fuse device fd for each thread\n"
> " (may improve performance)\n"
> @@ -171,6 +173,7 @@ int fuse_parse_cmdline(struct fuse_args *args,
> memset(opts, 0, sizeof(struct fuse_cmdline_opts));
>
> opts->max_idle_threads = 10;
> + opts->foreground = 1;
>
> if (fuse_opt_parse(args, opts, fuse_helper_opts,
> fuse_helper_opt_proc) == -1)
> --
> 2.21.0
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
WARNING: multiple messages have this Message-ID (diff)
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: virtio-fs@redhat.com,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
qemu-devel@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 1/4] virtiofsd: make -f (foreground) the default
Date: Tue, 3 Sep 2019 18:17:33 +0100 [thread overview]
Message-ID: <20190903171733.GR2744@work-vm> (raw)
In-Reply-To: <20190827095437.18819-2-stefanha@redhat.com>
* Stefan Hajnoczi (stefanha@redhat.com) wrote:
> According to vhost-user.rst "Backend program conventions", backend
> programs should run in the foregound by default. Follow the
> conventions so libvirt and other management tools can control virtiofsd
> in a standard way.
>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> contrib/virtiofsd/helper.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/contrib/virtiofsd/helper.c b/contrib/virtiofsd/helper.c
> index 4c71452080..8d8bca889b 100644
> --- a/contrib/virtiofsd/helper.c
> +++ b/contrib/virtiofsd/helper.c
> @@ -42,6 +42,7 @@ static const struct fuse_opt fuse_helper_opts[] = {
> FUSE_OPT_KEY("-d", FUSE_OPT_KEY_KEEP),
> FUSE_OPT_KEY("debug", FUSE_OPT_KEY_KEEP),
> FUSE_HELPER_OPT("-f", foreground),
> + FUSE_HELPER_OPT_VALUE("--daemonize", foreground, 0),
> FUSE_HELPER_OPT("-s", singlethread),
> FUSE_HELPER_OPT("fsname=", nodefault_subtype),
> FUSE_OPT_KEY("fsname=", FUSE_OPT_KEY_KEEP),
> @@ -139,6 +140,7 @@ void fuse_cmdline_help(void)
> " -d -o debug enable debug output (implies -f)\n"
> " --syslog log to syslog (default stderr)\n"
> " -f foreground operation\n"
> + " --daemonize run in background\n"
> " -s disable multi-threaded operation\n"
> " -o clone_fd use separate fuse device fd for each thread\n"
> " (may improve performance)\n"
> @@ -171,6 +173,7 @@ int fuse_parse_cmdline(struct fuse_args *args,
> memset(opts, 0, sizeof(struct fuse_cmdline_opts));
>
> opts->max_idle_threads = 10;
> + opts->foreground = 1;
>
> if (fuse_opt_parse(args, opts, fuse_helper_opts,
> fuse_helper_opt_proc) == -1)
> --
> 2.21.0
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2019-09-03 17:17 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-27 9:54 [Virtio-fs] [PATCH 0/4] virtiofsd: implement vhost-user.rst "Backend program conventions" Stefan Hajnoczi
2019-08-27 9:54 ` [Qemu-devel] " Stefan Hajnoczi
2019-08-27 9:54 ` [Virtio-fs] [PATCH 1/4] virtiofsd: make -f (foreground) the default Stefan Hajnoczi
2019-08-27 9:54 ` [Qemu-devel] " Stefan Hajnoczi
2019-09-03 17:17 ` Dr. David Alan Gilbert [this message]
2019-09-03 17:17 ` Dr. David Alan Gilbert
2019-08-27 9:54 ` [Virtio-fs] [PATCH 2/4] virtiofsd: add --print-capabilities option Stefan Hajnoczi
2019-08-27 9:54 ` [Qemu-devel] " Stefan Hajnoczi
2019-09-03 17:26 ` [Virtio-fs] " Dr. David Alan Gilbert
2019-09-03 17:26 ` [Qemu-devel] " Dr. David Alan Gilbert
2019-09-04 15:51 ` [Virtio-fs] " Stefan Hajnoczi
2019-09-04 15:51 ` [Qemu-devel] " Stefan Hajnoczi
2019-09-12 11:12 ` [Virtio-fs] " Stefan Hajnoczi
2019-09-12 11:12 ` Stefan Hajnoczi
2019-09-12 12:40 ` [Virtio-fs] " Marc-André Lureau
2019-09-12 12:40 ` [Qemu-devel] " Marc-André Lureau
2019-08-27 9:54 ` [Virtio-fs] [PATCH 3/4] virtiofsd: install virtiofsd in libexec Stefan Hajnoczi
2019-08-27 9:54 ` [Qemu-devel] " Stefan Hajnoczi
2019-09-03 17:29 ` [Virtio-fs] " Dr. David Alan Gilbert
2019-09-03 17:29 ` [Qemu-devel] " Dr. David Alan Gilbert
2019-08-27 9:54 ` [Virtio-fs] [PATCH 4/4] virtiofsd: add vhost-user.json file Stefan Hajnoczi
2019-08-27 9:54 ` [Qemu-devel] " Stefan Hajnoczi
2019-09-03 17:31 ` [Virtio-fs] " Dr. David Alan Gilbert
2019-09-03 17:31 ` [Qemu-devel] " Dr. David Alan Gilbert
2019-09-03 17:32 ` [Virtio-fs] [PATCH 0/4] virtiofsd: implement vhost-user.rst "Backend program conventions" Dr. David Alan Gilbert
2019-09-03 17:32 ` [Qemu-devel] " Dr. David Alan Gilbert
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=20190903171733.GR2744@work-vm \
--to=dgilbert@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.