aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-20 15:45:32 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-20 15:45:32 -0700
commit1d9f26f3736cc4703c2e988d87f5dd119bcd736d (patch)
treea2e7aabb5ce872585d0005eed196de9c0fdb029c /ChangeLog.rst
parent8ee553dac0297cfd75cbdd2d9cfdce37e22ef4ee (diff)
Turn fuse_operations.nopath_flag into fuse_config.nullpath_ok
Modifying struct fuse_config in the init() handler is the canonical way to adjust file-system implementation specific settings. There is no need to have flags in struct fuse_operations.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 7d32ba6..e614e6b 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -5,6 +5,10 @@ Unreleased Changes
fuse_config pointer that can be used to adjust high-level API
specific configuration options.
+* The `nopath_flag` field of struct fuse_operations has been
+ removed. Instead, a new `nullpath_ok` flag can now be set
+ in struct fuse_config.
+
* File systems that use the low-level API and support lookup requests
for '.' and '..' should continue make sure to set the
FUSE_CAP_EXPORT_SUPPORT bit in fuse_conn_info->want.