From: Bernd Schubert Date: Fri, 15 Sep 2023 15:21:20 +0000 (+0200) Subject: passthrough-hp: Fix --clone-fd X-Git-Tag: fuse-3.16.2~4 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=98ee575ddb621a4ecff9b643924c0bee1b8200f1;p=qemu-gpiodev%2Flibfuse.git passthrough-hp: Fix --clone-fd Actually one had to use --clone-fd=1 instead of just --clone-fd. --- diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index 7e3d4ab..8524eef 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -1220,8 +1220,7 @@ static cxxopts::ParseResult parse_options(int argc, char **argv) { "you are doing)", cxxopts::value(mount_options)) ("num-threads", "Number of libfuse worker threads", cxxopts::value()->default_value(SFS_DEFAULT_THREADS)) - ("clone-fd", "use separate fuse device fd for each thread", - cxxopts::value()->implicit_value(SFS_DEFAULT_CLONE_FD)) + ("clone-fd", "use separate fuse device fd for each thread") ("direct-io", "enable fuse kernel internal direct-io"); @@ -1253,7 +1252,7 @@ static cxxopts::ParseResult parse_options(int argc, char **argv) { fs.nosplice = options.count("nosplice") != 0; fs.num_threads = options["num-threads"].as(); - fs.clone_fd = options["clone-fd"].as(); + fs.clone_fd = options.count("clone-fd"); fs.direct_io = options.count("direct-io"); char* resolved_path = realpath(argv[1], NULL); if (resolved_path == NULL)