From 54007eeddeae22523b720e4a426081fbdecb6bdf Mon Sep 17 00:00:00 2001 From: HereThereBeDragons Date: Wed, 6 Dec 2023 15:37:38 +0100 Subject: [PATCH] add support for kernel flag FUSE_HAS_EXPIRE_ONLY --- lib/fuse_lowlevel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index def1918..d8c0cd1 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2021,7 +2021,7 @@ void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg) } if (inargflags & FUSE_DIRECT_IO_ALLOW_MMAP) se->conn.capable |= FUSE_CAP_DIRECT_IO_ALLOW_MMAP; - if (arg->minor >= 38) + if (arg->minor >= 38 || (inargflags & FUSE_HAS_EXPIRE_ONLY)) se->conn.capable |= FUSE_CAP_EXPIRE_ONLY; } else { se->conn.max_readahead = 0; -- 2.30.2