diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2023-05-26 23:43:23 +0300 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2023-07-25 01:04:30 +0300 |
commit | ffc143db63eeea7c8a27deb3c56d090a220a1ace (patch) | |
tree | 8d3fe4a4523bc5e02bbd34c63ef5098b1de0e3ea /mm/folio-compat.c | |
parent | 7a8eb01b078f6280089347feee02aebda0024880 (diff) | |
download | linux-ffc143db63eeea7c8a27deb3c56d090a220a1ace.tar.xz |
filemap: Add fgf_t typedef
Similarly to gfp_t, define fgf_t as its own type to prevent various
misuses and confusion. Leave the flags as FGP_* for now to reduce the
size of this patch; they will be converted to FGF_* later. Move the
documentation to the definition of the type insted of burying it in the
__filemap_get_folio() documentation.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'mm/folio-compat.c')
-rw-r--r-- | mm/folio-compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/folio-compat.c b/mm/folio-compat.c index c6f056c20503..10c3247542cb 100644 --- a/mm/folio-compat.c +++ b/mm/folio-compat.c @@ -92,7 +92,7 @@ EXPORT_SYMBOL(add_to_page_cache_lru); noinline struct page *pagecache_get_page(struct address_space *mapping, pgoff_t index, - int fgp_flags, gfp_t gfp) + fgf_t fgp_flags, gfp_t gfp) { struct folio *folio; |