diff options
author | Jonathan Corbet <corbet@lwn.net> | 2023-08-08 23:00:52 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-08-18 19:03:52 +0200 |
commit | 99b319d30ae9ab6e3c4913e4282f68d4c71f86b3 (patch) | |
tree | b7ae0aa2f7087d7996f0fbc1addb35d9387fd447 /Documentation/filesystems/locking.rst | |
parent | docs: Add a section on surveys to the researcher guidelines (diff) | |
download | linux-99b319d30ae9ab6e3c4913e4282f68d4c71f86b3.tar.xz linux-99b319d30ae9ab6e3c4913e4282f68d4c71f86b3.zip |
docs: vfs: clean up after the iterate() removal
Commit 3e3271549670 ("vfs: get rid of old '->iterate' directory operation")
removed the iterate() file_operations member, but neglected to clean up the
associated documentation. Get rid of the leftovers.
Link: https://lore.kernel.org/r/874jl945bv.fsf@meer.lwn.net
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/filesystems/locking.rst')
-rw-r--r-- | Documentation/filesystems/locking.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Documentation/filesystems/locking.rst b/Documentation/filesystems/locking.rst index ed148919e11a..3479be0935c6 100644 --- a/Documentation/filesystems/locking.rst +++ b/Documentation/filesystems/locking.rst @@ -509,7 +509,6 @@ prototypes:: ssize_t (*read_iter) (struct kiocb *, struct iov_iter *); ssize_t (*write_iter) (struct kiocb *, struct iov_iter *); int (*iopoll) (struct kiocb *kiocb, bool spin); - int (*iterate) (struct file *, struct dir_context *); int (*iterate_shared) (struct file *, struct dir_context *); __poll_t (*poll) (struct file *, struct poll_table_struct *); long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); |