From 78cbfe5972209b0a32453f127dcc9f652eedeeaa Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 25 May 2009 15:02:52 +0000 Subject: Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h --- include/fuse_common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/fuse_common.h') diff --git a/include/fuse_common.h b/include/fuse_common.h index b05ed21..ba341b3 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -86,11 +86,13 @@ struct fuse_file_info { * FUSE_CAP_ASYNC_READ: filesystem supports asynchronous read requests * FUSE_CAP_POSIX_LOCKS: filesystem supports "remote" locking * FUSE_CAP_ATOMIC_O_TRUNC: filesystem handles the O_TRUNC open flag + * FUSE_CAP_EXPORT_SUPPORT: filesystem handles lookups of "." and ".." * FUSE_CAP_BIG_WRITES: filesystem can handle write size larger than 4kB */ #define FUSE_CAP_ASYNC_READ (1 << 0) #define FUSE_CAP_POSIX_LOCKS (1 << 1) #define FUSE_CAP_ATOMIC_O_TRUNC (1 << 3) +#define FUSE_CAP_EXPORT_SUPPORT (1 << 4) #define FUSE_CAP_BIG_WRITES (1 << 5) /** -- cgit v1.2.3