summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jni/FuseDaemon.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/jni/FuseDaemon.cpp b/jni/FuseDaemon.cpp
index 9dc8387c..f2983290 100644
--- a/jni/FuseDaemon.cpp
+++ b/jni/FuseDaemon.cpp
@@ -1850,7 +1850,10 @@ void FuseDaemon::Start(android::base::unique_fd fd, const std::string& path) {
fuse_set_log_func(fuse_logger);
}
- fuse->passthrough = android::base::GetBoolProperty("persist.sys.fuse.passthrough", false);
+ fuse->passthrough = android::base::GetBoolProperty("persist.sys.fuse.passthrough.enable", false);
+ if (fuse->passthrough) {
+ LOG(INFO) << "Using FUSE passthrough";
+ }
struct fuse_session
* se = fuse_session_new(&args, &ops, sizeof(ops), &fuse_default);