The quilt patch titled Subject: mm/pagemap: make trylock_page return bool has been removed from the -mm tree. Its filename was mm-pagemap-make-trylock_page-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/pagemap: make trylock_page return bool Date: Sun, 28 Apr 2024 09:47:11 +0800 Make trylock_page return bool to align the return values of folio_trylock function and it also corresponds to its comment. Link: https://lkml.kernel.org/r/20240428014711.11169-1-gehao@xxxxxxxxxx Signed-off-by: Hao Ge <gehao@xxxxxxxxxx> Cc: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/pagemap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/pagemap.h~mm-pagemap-make-trylock_page-return-bool +++ a/include/linux/pagemap.h @@ -1012,7 +1012,7 @@ static inline bool folio_trylock(struct /* * Return true if the page was successfully locked */ -static inline int trylock_page(struct page *page) +static inline bool trylock_page(struct page *page) { return folio_trylock(page_folio(page)); } _ Patches currently in -mm which might be from gehao@xxxxxxxxxx are