From e70f91cb6387a4e14e7a4a4ebe9dc1100cbc1126 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Tue, 15 Apr 2025 20:57:05 +0200 Subject: Set FUSE_CAP_OVER_IO_URING flag - allow io-uring mode So far it was disabled as the series was not complete yet. Signed-off-by: Bernd Schubert --- lib/fuse_lowlevel.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/fuse_lowlevel.c') diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 8c9cb90..8c5d060 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2546,6 +2546,9 @@ _do_init(fuse_req_t req, const fuse_ino_t nodeid, const void *op_in, se->conn.capable_ext |= FUSE_CAP_PASSTHROUGH; if (inargflags & FUSE_NO_EXPORT_SUPPORT) se->conn.capable_ext |= FUSE_CAP_NO_EXPORT_SUPPORT; + if (inargflags & FUSE_OVER_IO_URING) + se->conn.capable_ext |= FUSE_CAP_OVER_IO_URING; + } else { se->conn.max_readahead = 0; } -- cgit v1.2.3