public inbox for linux-fsdevel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Bernd Schubert <bernd@bsbernd.com>
Cc: linux-fsdevel@vger.kernel.org, Miklos Szeredi <miklos@szeredi.hu>,
	Joanne Koong <joannelkoong@gmail.com>, Kevin Chen <kchen@ddn.com>
Subject: Re: [PATCH v2 25/25] Add a background debug option to passthrough hp
Date: Mon, 30 Mar 2026 12:04:54 -0700	[thread overview]
Message-ID: <20260330190454.GC6202@frogsfrogsfrogs> (raw)
In-Reply-To: <20260326-fuse-init-before-mount-v2-25-b1ca8fcbf60f@bsbernd.com>

On Thu, Mar 26, 2026 at 10:34:58PM +0100, Bernd Schubert wrote:
> Background debugging is useful when logs should go
> to syslog for a daemon running in background.
> 
> Signed-off-by: Bernd Schubert <bernd@bsbernd.com>

Looks good to me,
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>

--D

> ---
>  example/passthrough_hp.cc | 41 +++++++++++++++++++++++++----------------
>  1 file changed, 25 insertions(+), 16 deletions(-)
> 
> diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc
> index cca865973ab5e8e9c1faa0fa28eb292a172a4812..fa924b89ab3cc42a88767423674a6a190c0aa520 100644
> --- a/example/passthrough_hp.cc
> +++ b/example/passthrough_hp.cc
> @@ -160,7 +160,8 @@ struct Fs {
>  	Inode root;
>  	double timeout;
>  	bool debug;
> -	bool debug_fuse;
> +	bool debug_fuse; // foreground fuse debug
> +	bool bg_debug_fuse; // background fuse debug
>  	bool foreground;
>  	std::string source;
>  	size_t blocksize;
> @@ -1480,21 +1481,22 @@ static cxxopts::ParseResult parse_options(int argc, char **argv)
>  {
>  	cxxopts::Options opt_parser(argv[0]);
>  	std::vector<std::string> mount_options;
> -	opt_parser.add_options()("debug", "Enable filesystem debug messages")(
> -		"debug-fuse", "Enable libfuse debug messages")(
> -		"foreground", "Run in foreground")("help", "Print help")(
> -		"nocache", "Disable attribute all caching")(
> -		"nosplice", "Do not use splice(2) to transfer data")(
> -		"nopassthrough", "Do not use pass-through mode for read/write")(
> -		"single", "Run single-threaded")(
> -		"o",
> -		"Mount options (see mount.fuse(5) - only use if you know what "
> -		"you are doing)",
> -		cxxopts::value(mount_options))(
> -		"num-threads", "Number of libfuse worker threads",
> -		cxxopts::value<int>()->default_value(SFS_DEFAULT_THREADS))(
> -		"clone-fd", "use separate fuse device fd for each thread")(
> -		"direct-io", "enable fuse kernel internal direct-io");
> +	opt_parser.add_options()
> +		("debug", "Enable filesystem debug messages")
> +		("debug-fuse", "Enable libfuse debug messages")
> +		("bg-debug-fuse", "Enable libfuse debug messages in background")
> +		("foreground", "Run in foreground")("help", "Print help")
> +		("nocache", "Disable attribute all caching")
> +		("nosplice", "Do not use splice(2) to transfer data")
> +		("nopassthrough", "Do not use pass-through mode for read/write")
> +		("single", "Run single-threaded")
> +		("o", "Mount options (see mount.fuse(5) - only use if you know what "
> +		      "you are doing)",
> +		cxxopts::value(mount_options))
> +		("num-threads", "Number of libfuse worker threads",
> +		cxxopts::value<int>()->default_value(SFS_DEFAULT_THREADS))
> +		("clone-fd", "use separate fuse device fd for each thread")
> +		("direct-io", "enable fuse kernel internal direct-io");
>  
>  	// FIXME: Find a better way to limit the try clause to just
>  	// opt_parser.parse() (cf. https://github.com/jarro2783/cxxopts/issues/146)
> @@ -1520,6 +1522,7 @@ static cxxopts::ParseResult parse_options(int argc, char **argv)
>  
>  	fs.debug = options.count("debug") != 0;
>  	fs.debug_fuse = options.count("debug-fuse") != 0;
> +	fs.bg_debug_fuse = options.count("bg-debug-fuse") != 0;
>  
>  	fs.foreground = options.count("foreground") != 0;
>  	if (fs.debug || fs.debug_fuse)
> @@ -1643,6 +1646,12 @@ int main(int argc, char *argv[])
>  
>  	fuse_loop_cfg_set_clone_fd(loop_config, fs.clone_fd);
>  
> +	if (!fs.foreground)
> +		fuse_log_enable_syslog("passthrough-hp", LOG_PID | LOG_CONS,
> +				       LOG_DAEMON);
> +	if (fs.bg_debug_fuse)
> +		fuse_session_set_debug(se);
> +
>  	/* Start daemonization before mount so parent can report mount failure */
>  	if (fs.foreground)
>  		daemon_flags |= FUSE_DAEMONIZE_NO_BACKGROUND;
> 
> -- 
> 2.43.0
> 
> 

      reply	other threads:[~2026-03-30 19:04 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-26 21:34 [PATCH v2 00/25] libfuse: Add support for synchronous init Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 01/25] ci-build: Add environment logging Bernd Schubert
2026-03-27  3:20   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 02/25] Add 'STRCPY' to the checkpatch ignore option Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 03/25] checkpatch.pl: Add _Atomic to $Attribute patttern Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 04/25] Add a new daemonize API Bernd Schubert
2026-03-27 22:06   ` Darrick J. Wong
2026-03-27 23:07     ` Bernd Schubert
2026-03-28  4:01       ` Darrick J. Wong
2026-03-30 17:45       ` Darrick J. Wong
2026-03-30 18:26         ` Bernd Schubert
2026-03-30 21:25           ` Darrick J. Wong
2026-03-30 17:55   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 05/25] Sync fuse_kernel.h with linux-6.18 Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 06/25] mount.c: Split fuse_mount_sys to prepare privileged sync FUSE_INIT Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 07/25] Add FUSE_MOUNT_FALLBACK_NEEDED define for -2 mount errors Bernd Schubert
2026-03-27  3:20   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 08/25] Refactor mount code / move common functions to mount_util.c Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 09/25] Use asprintf() for fuse_mnt_build_{source,type} Bernd Schubert
2026-03-27  3:24   ` Darrick J. Wong
2026-03-30 15:34     ` Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 10/25] lib/mount.c: Remove some BSD ifdefs Bernd Schubert
2026-03-27  3:28   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 11/25] Move 'struct mount_flags' to util.h Bernd Schubert
2026-03-30 18:11   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 12/25] conftest.py: Add more valgrind filter patterns Bernd Schubert
2026-03-30 18:16   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 13/25] Add support for the new linux mount API Bernd Schubert
2026-03-30 18:27   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 14/25] fuse mount: Support synchronous FUSE_INIT (privileged daemon) Bernd Schubert
2026-03-30 18:44   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 15/25] Add fuse_session_set_debug() to enable debug output without foreground Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 16/25] Move more generic mount code to mount_util.{c,h} Bernd Schubert
2026-03-30 18:47   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 17/25] Split the fusermount do_mount function Bernd Schubert
2026-03-30 18:48   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 18/25] fusermout: Remove the large read check Bernd Schubert
2026-03-27  3:32   ` Darrick J. Wong
2026-03-30 15:26     ` Bernd Schubert
2026-03-30 17:57       ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 19/25] fusermount: Refactor extract_x_options Bernd Schubert
2026-03-26 21:34 ` [PATCH v2 20/25] Make fusermount work bidirectional for sync init Bernd Schubert
2026-03-30 19:03   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 21/25] New mount API: Filter out "user=" Bernd Schubert
2026-03-27  3:32   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 22/25] Add support for sync-init of unprivileged daemons Bernd Schubert
2026-03-31  0:54   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 23/25] Move fuse_mnt_build_{source,type} to mount_util.c Bernd Schubert
2026-03-30 19:04   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 24/25] Add mount and daemonization README documents Bernd Schubert
2026-03-31  1:17   ` Darrick J. Wong
2026-03-26 21:34 ` [PATCH v2 25/25] Add a background debug option to passthrough hp Bernd Schubert
2026-03-30 19:04   ` Darrick J. Wong [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=20260330190454.GC6202@frogsfrogsfrogs \
    --to=djwong@kernel.org \
    --cc=bernd@bsbernd.com \
    --cc=joannelkoong@gmail.com \
    --cc=kchen@ddn.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=miklos@szeredi.hu \
    /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