diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-01-08 06:15:04 +0100 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-03-21 17:56:35 +0100 |
commit | 822951d84684d7a0c4f45e7231c960e7fe786d8f (patch) | |
tree | c589a9290844c64594e9a5ca4f5198ebbe96505a /mm/gup.c | |
parent | mm/gup: Add gup_put_folio() (diff) | |
download | linux-822951d84684d7a0c4f45e7231c960e7fe786d8f.tar.xz linux-822951d84684d7a0c4f45e7231c960e7fe786d8f.zip |
mm/hugetlb: Use try_grab_folio() instead of try_grab_compound_head()
follow_hugetlb_page() only cares about success or failure, so it doesn't
need to know the type of the returned pointer, only whether it's NULL
or not.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: John Hubbard <jhubbard@nvidia.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: William Kucharski <william.kucharski@oracle.com>
Diffstat (limited to 'mm/gup.c')
-rw-r--r-- | mm/gup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ struct folio *try_grab_folio(struct page *page, int refs, unsigned int flags) return NULL; } -struct page *try_grab_compound_head(struct page *page, +static inline struct page *try_grab_compound_head(struct page *page, int refs, unsigned int flags) { return &try_grab_folio(page, refs, flags)->page; |