diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-14 09:13:43 -0500 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-04-01 14:40:43 -0400 |
commit | a9fcd89d67bb8c4ad613b54ab691fc603c94a03a (patch) | |
tree | 91e03fa934b5f5bd8cb95caa805b9f1a65825797 | |
parent | 2756c818e5cbcc4c9d13d7399273e86068e95156 (diff) | |
download | linux-next-a9fcd89d67bb8c4ad613b54ab691fc603c94a03a.tar.gz |
fs: Remove read_actor_t
This typedef is not used any more.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 7c81887cc7e8..7588d3a0ced8 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -357,9 +357,6 @@ typedef struct { int error; } read_descriptor_t; -typedef int (*read_actor_t)(read_descriptor_t *, struct page *, - unsigned long, unsigned long); - struct address_space_operations { int (*writepage)(struct page *page, struct writeback_control *wbc); int (*readpage)(struct file *, struct page *); |