diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2010-06-17 11:54:26 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2010-06-17 11:54:26 +0000 |
commit | 1091d73a2872d9794a2f2886e5ed73d6a40766f8 (patch) | |
tree | fc2787157c7692bcfd4dfdba492f68b043a87395 /include/fuse_common.h | |
parent | ca14187b22fb3551f049969da69c0ce33e4d35e4 (diff) | |
download | libfuse-1091d73a2872d9794a2f2886e5ed73d6a40766f8.tar.gz |
Add fuse_reply_fd() reply function to the low level interface
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index c263f6f..c547ac8 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -89,6 +89,8 @@ struct fuse_file_info { * FUSE_CAP_EXPORT_SUPPORT: filesystem handles lookups of "." and ".." * FUSE_CAP_BIG_WRITES: filesystem can handle write size larger than 4kB * FUSE_CAP_DONT_MASK: don't apply umask to file mode on create operations + * FUSE_CAP_SPLICE_WRITE: ability to use splice() to write to the fuse device + * FUSE_CAP_SPLICE_MOVE: ability to move data to the fuse device with splice() */ #define FUSE_CAP_ASYNC_READ (1 << 0) #define FUSE_CAP_POSIX_LOCKS (1 << 1) @@ -96,6 +98,8 @@ struct fuse_file_info { #define FUSE_CAP_EXPORT_SUPPORT (1 << 4) #define FUSE_CAP_BIG_WRITES (1 << 5) #define FUSE_CAP_DONT_MASK (1 << 6) +#define FUSE_CAP_SPLICE_WRITE (1 << 7) +#define FUSE_CAP_SPLICE_MOVE (1 << 8) /** * Ioctl flags |