From 05b696edb347dc555f937c1439ffda6a1c40416e Mon Sep 17 00:00:00 2001 From: SteveYang <40466358+SteveY4ng@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:18:28 +0800 Subject: [PATCH] passthrough_hp: Fix clone-fd option (#850) The clone-fd option is set valued but not used in the context. Use it in the code. --- example/passthrough_hp.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc index 1ee5352..96201d6 100644 --- a/example/passthrough_hp.cc +++ b/example/passthrough_hp.cc @@ -1361,6 +1361,8 @@ int main(int argc, char *argv[]) { if (fs.num_threads != -1) fuse_loop_cfg_set_idle_threads(loop_config, fs.num_threads); + fuse_loop_cfg_set_clone_fd(loop_config, fs.clone_fd); + if (fuse_session_mount(se, argv[2]) != 0) goto err_out3; -- 2.30.2