summaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/porting
diff options
context:
space:
mode:
authorAl Viro2015-04-04 07:14:53 +0200
committerAl Viro2015-04-12 04:29:43 +0200
commit8436318205b9f29e45db88850ec60e326327e241 (patch)
tree4339c116819e9e6d8e61a1876d9d0d08d0ee089c /Documentation/filesystems/porting
parentpcm: another weird API abuse (diff)
downloadkernel-qcow2-linux-8436318205b9f29e45db88850ec60e326327e241.tar.gz
kernel-qcow2-linux-8436318205b9f29e45db88850ec60e326327e241.tar.xz
kernel-qcow2-linux-8436318205b9f29e45db88850ec60e326327e241.zip
->aio_read and ->aio_write removed
no remaining users Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems/porting')
-rw-r--r--Documentation/filesystems/porting3
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/filesystems/porting b/Documentation/filesystems/porting
index 4006483c275f..e69274de8d0c 100644
--- a/Documentation/filesystems/porting
+++ b/Documentation/filesystems/porting
@@ -480,3 +480,6 @@ in your dentry operations instead.
[mandatory]
do _not_ use new_sync_{read,write} for ->read/->write; leave it NULL
instead.
+--
+[mandatory]
+ ->aio_read/->aio_write are gone. Use ->read_iter/->write_iter.