Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f4db942 authored by Thierry Strudel's avatar Thierry Strudel Committed by android-build-merger
Browse files

[DO NOT MERGE] Use FUSE_SHORTCIRCUIT if available

am: 738e0dcf

Change-Id: I9de236b53b4f4f449de65bfb856771278b92fa9e
parents cbd82ed9 738e0dcf
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -1221,7 +1221,13 @@ static int handle_open(struct fuse* fuse, struct fuse_handler* handler,
    }
    out.fh = ptr_to_id(h);
    out.open_flags = 0;

#ifdef FUSE_SHORTCIRCUIT
    out.lower_fd = h->fd;
#else
    out.padding = 0;
#endif

    fuse_reply(fuse, hdr->unique, &out, sizeof(out));
    return NO_STATUS;
}
@@ -1385,7 +1391,13 @@ static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler,
    }
    out.fh = ptr_to_id(h);
    out.open_flags = 0;

#ifdef FUSE_SHORTCIRCUIT
    out.lower_fd = -1;
#else
    out.padding = 0;
#endif

    fuse_reply(fuse, hdr->unique, &out, sizeof(out));
    return NO_STATUS;
}
@@ -1467,6 +1479,11 @@ static int handle_init(struct fuse* fuse, struct fuse_handler* handler,
    out.major = FUSE_KERNEL_VERSION;
    out.max_readahead = req->max_readahead;
    out.flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES;

#ifdef FUSE_SHORTCIRCUIT
    out.flags |= FUSE_SHORTCIRCUIT;
#endif

    out.max_background = 32;
    out.congestion_threshold = 32;
    out.max_write = MAX_WRITE;