summaryrefslogtreecommitdiff
path: root/jni
diff options
context:
space:
mode:
author Sahana Rao <sahanas@google.com> 2024-05-21 12:43:51 +0000
committer Sahana Rao <sahanas@google.com> 2024-05-21 12:44:22 +0000
commitfad5990f5a1133e8e8ef5482814109a6524fb2d7 (patch)
treea449e31b90f5222171fc852a01be8a4d1354196e /jni
parentff072a98a06b2cece67937fcfc1470246c973f54 (diff)
Revert "Enable FUSE_CAP_PARALLEL_DIROPS"
This reverts commit db5422b1ea8dab3bd86bb902a836cca99ca9cb66. Reason for revert: 319271902 Test: N.A. Change-Id: I50d7bdf6636fb693795eb42960b3da22aa954201
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 e623d09f2..f7def7bbe 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) {