if (conn->capable & FUSE_CAP_SPLICE_READ)
conn->want |= FUSE_CAP_SPLICE_READ;
}
+
+ /* This is a local file system - no network coherency needed */
+ if (conn->capable & FUSE_CAP_DIRECT_IO_ALLOW_MMAP)
+ conn->want |= FUSE_CAP_DIRECT_IO_ALLOW_MMAP;
}
*/
#define FUSE_CAP_SETXATTR_EXT (1 << 27)
+/**
+ * Files opened with FUSE_DIRECT_IO do not support MAP_SHARED mmap. This restriction
+ * is relaxed through FUSE_CAP_DIRECT_IO_RELAX (kernel flag: FUSE_DIRECT_IO_RELAX).
+ * MAP_SHARED is disabled by default for FUSE_DIRECT_IO, as this flag can be used to
+ * ensure coherency between mount points (or network clients) and with kernel page
+ * cache as enforced by mmap that cannot be guaranteed anymore.
+ */
+#define FUSE_CAP_DIRECT_IO_ALLOW_MMAP (1 << 27)
+
/**
* Ioctl flags
*
bufsize = max_bufsize;
}
}
+ if (inargflags & FUSE_DIRECT_IO_ALLOW_MMAP)
+ se->conn.capable |= FUSE_CAP_DIRECT_IO_ALLOW_MMAP;
if (arg->minor >= 38)
se->conn.capable |= FUSE_CAP_EXPIRE_ONLY;
} else {
outargflags |= FUSE_EXPLICIT_INVAL_DATA;
if (se->conn.want & FUSE_CAP_SETXATTR_EXT)
outargflags |= FUSE_SETXATTR_EXT;
+ if (se->conn.want & FUSE_CAP_DIRECT_IO_ALLOW_MMAP)
+ outargflags |= FUSE_DIRECT_IO_ALLOW_MMAP;
if (inargflags & FUSE_INIT_EXT) {
outargflags |= FUSE_INIT_EXT;