passthrough-hp: Fix --clone-fd
authorBernd Schubert <bschubert@ddn.com>
Fri, 15 Sep 2023 15:21:20 +0000 (17:21 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 23 Sep 2023 13:41:31 +0000 (14:41 +0100)
Actually one had to use --clone-fd=1 instead of
just --clone-fd.

example/passthrough_hp.cc

index 7e3d4ab7c512775ba659b982f2e61154e22b368e..8524eefbd1df06ee04e4182b020b1b827cb22c0d 100644 (file)
@@ -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<int>()->default_value(SFS_DEFAULT_THREADS))
-        ("clone-fd", "use separate fuse device fd for each thread",
-                        cxxopts::value<bool>()->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<int>();
-    fs.clone_fd = options["clone-fd"].as<bool>();
+    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)