diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-02-22 17:25:12 +0100 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-08 20:28:19 +0200 |
commit | b7446e7cf15f0926866c8e5de90ab278998bf8c8 (patch) | |
tree | 5f866124de19bd95d6db2cf06ae4dd10ba0156a0 /include | |
parent | fs: Remove aop flags parameter from cont_write_begin() (diff) | |
download | linux-b7446e7cf15f0926866c8e5de90ab278998bf8c8.tar.xz linux-b7446e7cf15f0926866c8e5de90ab278998bf8c8.zip |
fs: Remove aop flags parameter from grab_cache_page_write_begin()
There are no more aop flags left, so remove the parameter.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pagemap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 993994cd943a..65ae8f96554b 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -735,7 +735,7 @@ static inline unsigned find_get_pages_tag(struct address_space *mapping, } struct page *grab_cache_page_write_begin(struct address_space *mapping, - pgoff_t index, unsigned flags); + pgoff_t index); /* * Returns locked page at given index in given cache, creating it if needed. |