aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-10 14:53:57 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-10 14:53:57 -0700
commit5ce00337208c3957f35009211ac8c72ccd3da3ad (patch)
tree151d118d28367f63617ec99b319e71631da9d901 /ChangeLog.rst
parente1274ccc153a0168a1fc0f8138787452a56ad92c (diff)
Removed 'async_read' field in fuse_conn_info
This is redundant with the capability flags in `wants` and `capable`.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 2b2dba9..dc243f2 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,12 @@
Unreleased Changes
==================
+* Removed the `async_read` field from `struct fuse_conn_info`. To
+ determine if the kernel supports asynchronous reads, file systems
+ should check the `FUSE_CAP_ASYNC_READ` bit of the `capable`
+ field. To enable/disable asynchronous reads, file systems should set
+ the flag in the `wanted` field.
+
* The `fuse_parse_cmdline` function no longer prints out help when the
``--verbose`` or ``--help`` flags are given. This needs to be done
by the file system (e.g. using the `fuse_cmdline_help()`,