diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index 1abac5a..85f0b23 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -495,6 +495,14 @@ struct fuse_loop_config_v1 { #define FUSE_CAP_PASSTHROUGH (1 << 29) /** + * Indicates that the file system cannot handle NFS export + * + * If this flag is set NFS export and name_to_handle_at + * is not going to work at all and will fail with EOPNOTSUPP. + */ +#define FUSE_CAP_NO_EXPORT_SUPPORT (1 << 30) + +/** * Ioctl flags * * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine |