projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
063ef8e
)
passthrough_hp: Fix clone-fd option (#850)
author
SteveYang
<40466358+SteveY4ng@users.noreply.github.com>
Thu, 12 Oct 2023 09:18:28 +0000
(17:18 +0800)
committer
GitHub
<noreply@github.com>
Thu, 12 Oct 2023 09:18:28 +0000
(10:18 +0100)
The clone-fd option is set valued but not used in the context. Use it in the code.
example/passthrough_hp.cc
patch
|
blob
|
history
diff --git
a/example/passthrough_hp.cc
b/example/passthrough_hp.cc
index 1ee5352bc192f36e78214da4b4c309990f48cd33..96201d6bc0c3ddba64d06ea019c2ff88c1059a78 100644
(file)
--- 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;