From: HereThereBeDragons Date: Wed, 6 Dec 2023 14:37:38 +0000 (+0100) Subject: add support for kernel flag FUSE_HAS_EXPIRE_ONLY X-Git-Tag: fuse-3.17.1-rc0~155 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=54007eeddeae22523b720e4a426081fbdecb6bdf;p=qemu-gpiodev%2Flibfuse.git add support for kernel flag FUSE_HAS_EXPIRE_ONLY --- 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;