The quilt patch titled Subject: mm/page-flags: make PageUptodate return bool has been removed from the -mm tree. Its filename was mm-page-flags-make-pageuptodate-return-bool.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Hao Ge <gehao@xxxxxxxxxx> Subject: mm/page-flags: make PageUptodate return bool Date: Mon, 22 Apr 2024 11:27:25 +0800 Make PageUptodate return bool to align the return values of folio_test_uptodate function Link: https://lkml.kernel.org/r/20240422032725.41452-1-gehao@xxxxxxxxxx Signed-off-by: Hao Ge <gehao@xxxxxxxxxx> Cc: David Hildenbrand <david@xxxxxxxxxx> Cc: Josef Bacik <josef@xxxxxxxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Cc: Ruihan Li <lrh2000@xxxxxxxxxx> Cc: Vishal Moola (Oracle) <vishal.moola@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/page-flags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/page-flags.h~mm-page-flags-make-pageuptodate-return-bool +++ a/include/linux/page-flags.h @@ -789,7 +789,7 @@ static inline bool folio_test_uptodate(c return ret; } -static inline int PageUptodate(const struct page *page) +static inline bool PageUptodate(const struct page *page) { return folio_test_uptodate(page_folio(page)); } _ Patches currently in -mm which might be from gehao@xxxxxxxxxx are