diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-09-19 15:09:04 +0200 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-11-13 16:43:59 +0100 |
commit | e2eb1abb105aa52e25fbf8973595ed2b6c64416d (patch) | |
tree | bb4acce29b8cbc3c5f08789c22a086d7c72e8fe4 /include | |
parent | 15f5c811239abca80eda2d988be7a9a9848f7c10 (diff) | |
download | libfuse-e2eb1abb105aa52e25fbf8973595ed2b6c64416d.tar.gz |
Add FUSE_CAP_NO_EXPORT and use it in passthrough_hp
This should stop some more xfstest test failures.
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 |