diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-05 07:43:09 +0300 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-10 06:12:54 +0300 |
commit | 8560cb1a7d75048af275dd23fb0cf05382b3c2b9 (patch) | |
tree | a0e2946b5fd8ee34c81f9340306a33f4c7bfbcf3 /include/linux/fs.h | |
parent | 6612ed24a242734560f9643ccb08f2f40b6e144b (diff) | |
download | linux-8560cb1a7d75048af275dd23fb0cf05382b3c2b9.tar.xz |
fs: Remove aops->freepage
All implementations now use free_folio so we can delete the callers
and the method.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 915844e6293e..6f305f1097a5 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -357,7 +357,6 @@ struct address_space_operations { void (*invalidate_folio) (struct folio *, size_t offset, size_t len); bool (*release_folio)(struct folio *, gfp_t); void (*free_folio)(struct folio *folio); - void (*freepage)(struct page *); ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *iter); /* * migrate the contents of a page to the specified target. If |