diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-03-27 20:23:12 +0100 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-03-27 21:35:50 +0100 |
commit | 67d4db405059f83d3c2f4ee577a712c424b481db (patch) | |
tree | 6ae3db9582240c8fc120a50282b5dbfbf94896da /include/fuse_common.h | |
parent | e3bd7de51770d8f7c10e3e20d5b46cc4715ab153 (diff) | |
download | libfuse-67d4db405059f83d3c2f4ee577a712c424b481db.tar.gz |
Fix FUSE_CAP_DIRECT_IO_ALLOW_MMAP - use new numerical value
Commit 22741f5 accidentally re-used (1 << 27), which is
already taken for FUSE_CAP_SETXATTR_EXT.
Fortunately not part of any release yet.
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index bdbd7cb..52b691a 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -445,7 +445,7 @@ struct fuse_loop_config_v1 { * 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) +#define FUSE_CAP_DIRECT_IO_ALLOW_MMAP (1 << 28) /** * Ioctl flags |