summaryrefslogtreecommitdiff
path: root/jni
diff options
context:
space:
mode:
author Sahana Rao <sahanas@google.com> 2024-05-22 07:20:22 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2024-05-22 07:20:22 +0000
commit11a46243b4cb10ac18c716e9714aa43d35dbeec5 (patch)
treeb117d28db8e7893565015ba6dfa0b2cf9da2062e /jni
parent0f3d3e27040e8d2a4b055bebfa8cc125d8f1f5c0 (diff)
parentfad5990f5a1133e8e8ef5482814109a6524fb2d7 (diff)
Merge "Revert "Enable FUSE_CAP_PARALLEL_DIROPS"" into main
Diffstat (limited to 'jni')
-rw-r--r--jni/FuseDaemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jni/FuseDaemon.cpp b/jni/FuseDaemon.cpp
index 1befcce3d..805780b60 100644
--- a/jni/FuseDaemon.cpp
+++ b/jni/FuseDaemon.cpp
@@ -727,7 +727,7 @@ static void pf_init(void* userdata, struct fuse_conn_info* conn) {
conn->want &= ~FUSE_CAP_AUTO_INVAL_DATA & ~FUSE_CAP_READDIRPLUS_AUTO;
uint64_t mask = (FUSE_CAP_SPLICE_WRITE | FUSE_CAP_SPLICE_MOVE | FUSE_CAP_SPLICE_READ |
FUSE_CAP_ASYNC_READ | FUSE_CAP_ATOMIC_O_TRUNC | FUSE_CAP_WRITEBACK_CACHE |
- FUSE_CAP_EXPORT_SUPPORT | FUSE_CAP_FLOCK_LOCKS | FUSE_CAP_PARALLEL_DIROPS);
+ FUSE_CAP_EXPORT_SUPPORT | FUSE_CAP_FLOCK_LOCKS);
// Disable writeback cache if it's uncached mode or if it's ARC. In ARC, due to the Downloads
// bind-mount, we need to disable it on the primary emulated volume as well as on StubVolumes.
if (fuse->uncached_mode || is_arc) {